SAP Basis Articles

Found 498 articles

Error Failed to load resource in SAPUI5 application

Anil SAP Gupta
Anil SAP Gupta
Updated on 04-Mar-2024 2K+ Views

It is clear from your error message: VisitorData.view.js is not found so you have to check if this view actually exists and there is no permission issues on this view.Try checking this to view list of deployed services − http://hanaservername.com:4000/ui_test/ui5_test/WebContent/resources/You have to add below in your web.xml −    com.sap.ui5.resource.DEV_MODE    true

Read More

Handling String localization hardcoding issue in ERP like SAP, Dynamic, etc.

SAP ABAP Expert
SAP ABAP Expert
Updated on 25-Jun-2020 297 Views

This can be handled by keeping value same and just change meaning as below:'Y'(Yes) or 'N'(No)Should be like this for German-'Y'(Ja) or 'N'(Nein)

Read More

Adding millisecond to date in SAP HANA

Anil SAP Gupta
Anil SAP Gupta
Updated on 25-Jun-2020 844 Views

Try using ADD_SECONDS function as below:SELECT ADD_SECONDS (TO_TIMESTAMP('2017-07-15 02:17:15'), 0.1) FROM TESTThis will add seconds as fraction value as requested. Below is syntax and example:ADD_SECONDS SyntaxADD_SECONDS (t, n)DescriptionComputes the time t plus n seconds.Example:SELECT ADD_SECONDS (TO_TIMESTAMP ('2012-01-01 23:30:45'), 60*30) "add seconds" FROM DUMMY; add seconds2012-01-02 00:00:45.0To know more about ADD_SECONDS function, you can also refer this link:datetime function in SAP HANATo know more about SQL functions in SAP HANA system, you can also refer our HANA tutorial:SAP HANA SQL Functions

Read More

Converting BLOB to Char in SAP HANA using SQL

SAP Expert
SAP Expert
Updated on 25-Jun-2020 931 Views

You can perform varchar casting using following query:SELECT TO_ALPHANUM(col) FROM ......

Read More

IN statement in SQL doesn’t accept a wild character (SAP)

SAP Expert
SAP Expert
Updated on 25-Jun-2020 161 Views

Note that IN statement in SQL doesn’t accept a wild character. You have to use OR/AND to make it work as mentioned below:select * from Test1 t INNER JOIN Test2 s ON t.ID = s.RID where t.sdate >= ?1 AND t.edate

Read More

Fetching monitoring data in an application using SAP FM\'s

SAP Expert
SAP Expert
Updated on 25-Jun-2020 377 Views

You need to login to XM interface and there is different BAPI’s that you can use to read CCMS data.Function Module:BAPI_SYSTEM_ALERT_ACKNOWLEDGE BAPI_SYSTEM_ALERT_GETDETAILS BAPI_SYSTEM_MON_GETLIST BAPI_SYSTEM_MON_GETTEMPLATE BAPI_SYSTEM_MON_GETTREE You can refer this documentation to know more about Function Modules:https://archive.sap.com/kmuuid2/da4

Read More

Different ways of loading data to SAP HANA using Information Composer

John SAP
John SAP
Updated on 25-Jun-2020 224 Views

In SAP HANA system, you can load in following ways using SAP HANA Information Composer −Data from Filesystem − This options is used to upload data using .xls, .csv file directly to HANA database.Data from clipboard − Other way is to copy data to clipboard and copy from there to HANA database.

Read More

System requirement to install SAP HANA Information Composer

John SAP
John SAP
Updated on 25-Jun-2020 271 Views

You should setup a separate server for HANA Information Composer and it should be set next to your HANA system. Following server, a requirement should be met −Server Requirements −At least 2GB of available RAM is requiredJava 6 (64-bit) must be installed on the server

Read More

Accessing SAP HANA Information Composer

John SAP
John SAP
Updated on 25-Jun-2020 189 Views

You can try accessing below link if it is accessible −http://:8080/IC or https://:8443/ICTo access Information Composer, you should have Microsoft Silverlight installed and activated as an add-on to the web browser.

Read More

Redeploy option in SAP HANA Modeling

John SAP
John SAP
Updated on 25-Jun-2020 762 Views

Redeploy option is available under SAP HANA Modeler Perspective −

Read More
Showing 1–10 of 498 articles
« Prev 1 2 3 4 5 50 Next »
Advertisements