Found 1039 Articles for SAP

Short TEXT for all errors occurred in SAP system

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

139 Views

In SAP system, you have a table name “ SNAPT” which can be used to find the texts. To view table contents you can make use of T-Code SE16There is also a report in SAP system RSLISTDUMPS that displays the text of short dump. You can check and execute report using T-Code: SA38This report lists all runtime errors and their description.

SAP SuccessFactor OData API access

Priya Pallavi
Updated on 30-Jul-2019 22:30:20

1K+ Views

You need to sign up a demo account for SAP Cloud platform. SAP SuccessFactors and SAP HANA Cloud Platform, you can easily get SAP Cloud Applications Partner center program. You have to perform some additional configuration for both.For more details, you can go through below link:https://blogs.sap.com/2013/11/25/get-your-hands-dirty-successfactors-api-access-for-hcp-based-extensions/With use of OData API, it provides with built on protocols like HTTP following the REST methodologies for data transfer. With OData API, you can make use of SuccessFactors in providing Restful integration services for HR data in SAP Cloud.SAP SuccessFactors uses OData API for extraction and still there is some crucial sets of data ... Read More

Storing configuration so that it doesn’t transfer to database in SAP system

Sravani S
Updated on 30-Jul-2019 22:30:20

90 Views

I don’t think it can be automated so that configuration is not copied to the database. Try checking SAP Transport and Change Management detail, it could be possible by making some changes in Transport configuration.

Generating SAP ABAP code/ script from XML coming from an external application

Ankitha Reddy
Updated on 30-Jul-2019 22:30:20

816 Views

Yes, this is feasible. You can create simple transformation for XML in ABAP. You can also use cl_proxy_xml_transform to transform data between XML and ABAP. Let us say that you have created ABAP proxy using T-Code: SPROXY or it is generated via WebService generation utility, you can use utility class “cl_proxy_xml_transform” to convert data of the ABAP to XML format or also from XML → ABAP.

RFC or BAPI for displaying change documents in SAP

Srinivas Gorla
Updated on 30-Jul-2019 22:30:20

533 Views

You need to set up a workflow engine and then customize event generation. Next is to write down a Java service to connect to SAP system using Java Connector and then register a RFC server. For this, you have to follow steps:Navigate to Transaction SM59 -> Expand TCP/IP connections directory and click on Create (F8).In the RFC destination field, enter the name of the RFC destination system. Next is to set the connection type to T (Start an external program through TCP/IP).Next is to provide a Function Module handler that can be called using tRFC from SAP system -> Next ... Read More

Calling SAP Web Service to get data in Flash dashboard

Abhinaya
Updated on 10-Dec-2019 10:23:22

139 Views

You can also try hosting your Flash application on SAP box. Following approaches can be used:Using Transaction: SICF, you can change the default host’s default service to point to BSP application and then add crossdomain.xml file as MIME.You can also configure ICM to manage this and it sits between the outside world making HTTP, HTTPS, SMTP requests and the SAP System.Method 1:First, you need to create a BSP application -> Create -> MIME Object and import crossdomain.xml file and activate the application. Next is to execute transaction SIC with default settings -> Double click the default_host, go to the Default ... Read More

Equivalent for Row_Number() in SAP ABAP

Ali
Ali
Updated on 14-Feb-2020 11:18:18

886 Views

When you want to modify the contents and store them into table and also to add a column for the value, use something likeDATA: my_string TYPE StringLOOP AT itab INTO wa_itab. my_string = sy-tabix. CONCATENATE some_text my_string more_text into wa_itab-my_field. MODIFY itab FROM wa_itab. CLEAR my_string. ENDLOOP.

Extending SAP ABAP 30 characters long limit

Johar Ali
Updated on 30-Jul-2019 22:30:20

1K+ Views

For SAP ABAP tables, you can enter up to maximum 16 characters. There is a limit of up to 30 characters on use of ABAP Variables, Classes and Method.When you run SE11 you can press F1 and it will show you maximum permitted limit on SAP ABAP Table name.It is not possible to extend this limit as for this you need to make changes in Kernel.

Transforming XML file into fixed length flat file in SAP

karthikeya Boyini
Updated on 12-Mar-2020 12:48:46

684 Views

This is an EDIfact invoice. Try using the script, and it can help −                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   ERROR: The maximum length of "TABNAM" is 10 characters.                                                                                                                                                                                                                                                                               ERROR: The maximum length of "MANDT" is 3 characters.                                                                                                                                                                                                                                                                                                                                                                                                              ERROR: The maximum length of "ACTION" is 3 characters.                                                                                                                                                                                                          ERROR: The maximum length of "KZABS" is 1 character.                                                                                                                                     There are various sites which provide a built-in script to convert your EDIfact to XSLT.  Check this site and it may also help −https://www.codeproject.com/Articles/11278/EDIFACT-to-XML-to-Anything-You-Want

Sending a table from UI5 application to ABAP Function Module

Johar Ali
Updated on 15-Jun-2020 06:38:18

882 Views

This can be done using an OData service that accepts POST request from your UI5 application and writes data to a database table. While implementing OData service, you have to call ABAP Backend Class method.You have to remember that all application and classes are instantiated for processing and will end as soon as the request is completed. An OData service can be created using SAP Gateway Service Builder (SEGW).Following steps has to be performed for creating an OData service:Creation of Data ModelGenerate Runtime ObjectsRegistration of ServiceService ImplementationOnce you create a project in Gateway Service Builder, you have to create Entity ... Read More

Advertisements