Found 1044 Articles for SAP

RV_INVOICE_DOCUMENT_READ not returning any data in form in SAP FM

Sreemaha
Updated on 30-Jul-2019 22:30:20

294 Views

I think what you may be missing over here is Alpha conversion set.When you are calling a function module in SE37, it performs alpha conversions as a part of parameter processions. You might do go for internal formatting of the parameters before passing it to ABAP for further use.

Sort data in SQL using Dynamic SQL in SAP HANA

Giri Raju
Updated on 05-Dec-2019 09:51:18

849 Views

In order to execute dynamic SQL in your stored procedure, you need to use the ‘EXECUTE IMMEDIATE’ statement. You can use SQL as shown below to execute it:EXECUTE IMMEDIATE 'SELECT FROM ' || : || ' DESC';Another thing to notice over here is that if you are planning to use the table type in the final select statement with dynamic SQL, it will not work. Dynamic SQL does not support table type in select. What you can try as a work around is that you can dump the data in a temporary table before using it in the ... Read More

Using SAP Web Service from SAP by PHP with parameters

Anvi Jain
Updated on 30-Jul-2019 22:30:20

308 Views

Possible reason would be that SAP is case sensitive. Please try using HeadData instead of HEADDATA. Take a look at WSDL - all members inside “StandardMaterialSaveData” are option and SOAP is case sensitive so try using HeadData instead of HEADDATA

Ending a connection with SAP Instance and stop scripting

Hayat Azam
Updated on 13-Feb-2020 10:24:41

1K+ Views

This can be resolved by ensuring that you destroy all reference to public objects at the end of your script.In Excel VBA, you can use the following to do this −Set session = NothingIn C#, you should be using below −obj = Null;

PHP Soap Client is not supporting WSDL extension while connecting to SAP system

Hayat Azam
Updated on 24-Dec-2019 07:03:28

326 Views

The possible solution could be to update policy tag like thisUpdate the policy tag like this:And try the serviceAnother possible option is to change /ws_policy/ to /standard/ and you will be able to use PHP Soap Client to consume Web Service.Go to Web Service Administration in your SAP ECC system using SOAMANAGER -> SOA-ManagementIn URL of the browser, you can see the “ws_policy” tag -> replace this with “standard” and you will have WSDL without policy tag.

Connecting system with SAP system using a Web Service

Shahyan Ali
Updated on 13-Feb-2020 10:23:30

562 Views

The best solution of this is to regenerate web service code the client system. Navigate to Add Service Reference in Visual Studio and regenerate WSDL code.

In SAP Crystal Reports XI, return records that match multiple conditions

Raja Ali
Updated on 13-Feb-2020 10:22:43

128 Views

It is advisable to use functions to pass such filter conditions in CR. Also try changing the order of your condition like −({PR.cov} = "A" and {PR.cov}="B") or {PR.cov} = "A" Try using function like this: {@A}:if {PR.cov} = "A" then 1 else 0To create custom functions in Crystal Report, navigate to Report Menu → Formula Expert → Right Click on Custom Functions → NewIt is advisable to use custom functions when you have multiple parameters to pass in the condition. You can also use the following when you have two string parameters −( 'A' IN {?cov} OR {PR.cov} IN ... Read More

SAP connector failed, use of port number 3350

Syed Nauman
Updated on 30-Jul-2019 22:30:20

197 Views

This port is used to provide a range of connections to SAP gateway for RFC connection. If you are getting this error, try to resolve your server name with “nslookup” or try connecting to IP address instead of server name.

Error while passing an image value to an OData request in SAP

Altamas Khan
Updated on 05-Dec-2019 07:54:55

269 Views

If you ImgData includes an image in Data URI format base64 then add the below line to Imgvalue to convert it to ImgData:var imgData = JSON.stringify(ImgValue);I suggest you to use AJAX to post image through OData as shown in below code:OData.request ({      requestUri:"http://test.test1.net:8081/sap/opu/odata/sap/ SALES_VRS/DailySalesSet",      method: "GET",      headers:      {       -Requested-With": "XMLHttpRequest",       "Content-Type": "application/atom+xml",       "DataServiceVersion": "2.0",                 "X-CSRF-Token":"Fetch"                                    }     ... Read More

In my SAP Fiori custom app, Back button is not working in Launchpad

Mohd Arshad
Updated on 05-Dec-2019 07:58:15

349 Views

Try to use “shellHash” property instead of “semanticObject” like below:-------------------------------------------------------- sap.ushell.Container.getService("CrossApplicationNavigation").toExternal({     target: {         shellHash: "#"     } }); --------------------------------------------------------

Advertisements