Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
SAP HANA Articles
Found 573 articles
Error Failed to load resource in SAPUI5 application
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 MoreHandling String localization hardcoding issue in ERP like SAP, Dynamic, etc.
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 MoreAdding millisecond to date in SAP HANA
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 MoreConverting BLOB to Char in SAP HANA using SQL
You can perform varchar casting using following query:SELECT TO_ALPHANUM(col) FROM ......
Read MoreIN statement in SQL doesn’t accept a wild character (SAP)
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 MoreFetching monitoring data in an application using SAP FM\'s
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 MoreDifferent ways of loading data to SAP HANA using Information Composer
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 MoreSystem requirement to install SAP HANA Information Composer
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 MoreAccessing SAP HANA Information Composer
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 MoreRedeploy option in SAP HANA Modeling
Redeploy option is available under SAP HANA Modeler Perspective −
Read More