Found 1044 Articles for SAP

Using HP UFT GetCellData function on SAP Web Dynpro crash Internet Explorer

Anil SAP Gupta
Updated on 25-Jun-2020 20:48:55

399 Views

Note that column number is used to locate table cell data and column name is unique identifier.object.GetCellData( row, column)- takes argument as long integers row and cell numbers to locate cell data.Try using GetCellData like this:Browser("Browser").Page("Page").Frame ("searchDialog").SAPTable("ResultsTable").GetCellData(1, 1) Browser("Browser").Page("Page").Frame ("searchDialog").SAPTable("ResultsTable").GetCellData(1, 2)

Sending an itab to SAP Spool using ABAP method

Anil SAP Gupta
Updated on 12-Jun-2020 08:41:10

649 Views

Check this class: CL_RSPO_SPOOL_HANDLE as it provides an OO interface to spool.Class CL_RSPO_SPOOL_HANDLE  Short Description Spool: Spool Request Opened for WritingYou can refer this link to know more about this class:CL_RSPO_SPOOL_HANDLE 

Error Failed to load resource in SAPUI5 application

Anil SAP Gupta
Updated on 04-Mar-2024 11:53:14

958 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

Using SAP Server for education and training purpose

Anil SAP Gupta
Updated on 12-Jun-2020 08:42:58

116 Views

I think this can be achieved. When you create a copy of your production system, you can select which data you want to copy- you can select no for users and application data.You can use SAP TEST DATA Migration Server TDMS, to transfer limited data to test instance however it involves extra cost and not recommended until it is really required. Refer this link to know more on TDMS:SAP TDMSYou can keep both the instance- Prod and Test synchronized by using Transport Management System TMS where you can schedule transport to load data to training instance. With use of Change ... Read More

Creating communication between Java application and SAP

Anil SAP Gupta
Updated on 30-Jul-2019 22:30:20

124 Views

Note that com.sap.conn.jco.JCo can be used as an alternative of com.sap.mw.jco and exists in sapjco.jar. Classes in sapjco.jar files is also different. You can check this link for more details:com.sap.conn.jco.JCo 

Using xsodata service with SAP HANA XS Engine without authentication

Anil SAP Gupta
Updated on 30-Jul-2019 22:30:20

169 Views

Note that to use xsaccess file it without credentials, you have to create xssqlcc file. xsaccess file is used to define who all are authorized to access the content exposed by a SAP HANA XS application package and what content should be displayed as per access.Check out this tread for more details:xsodata service without authentication

Installing SAP JCo on Glassfish server 4.0

Anil SAP Gupta
Updated on 12-Feb-2020 12:45:45

158 Views

In SAP, there is a file intro.html that contains detailed instructions on installation of JCo3 on different Operating Systems.Following are the instructions:To install JCo for Windows unzip the appropriate distribution package into an arbitrary directory {sapjco3-install-path}.Note: Do not copy the sapjco3.dll neither into the {windows-dir}\system32 nor into the {windows-dir}\SysWOW64 directory. This will break the operability of other JCo versions that are already installed on the same system. Furthermore you would risk that the current installation also would not work anymore, if the sapjco3.dll gets replaced in the respective Windows system directory in the future.Then add {sapjco3-install-path} to the PATH environment ... Read More

Building an XCode application using Maven plugin (SAP)

Anil SAP Gupta
Updated on 30-Jul-2019 22:30:20

123 Views

Note that Xcode-maven-plugin is not compatible with maven 3.1. You have to downgrade to lower version Maven 3.0.x.Try below link for more details:xcode-maven-plugin

Adding millisecond to date in SAP HANA

Anil SAP Gupta
Updated on 25-Jun-2020 20:53:10

409 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 FunctionsRead More

Error while Synchronizing data in iOS from SMP 2.3 (SAP)

Anil SAP Gupta
Updated on 30-Jul-2019 22:30:20

91 Views

This normally happens when you have incorrect configuration in synchronization profile. You have to check if stream parameters are set correctly, etc.

Advertisements