Found 1039 Articles for SAP

Debugging an Asynchronous RFC in SAP ABAP

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

899 Views

In SAP system, an Asynchronous call (aRFC) of a remote-enabled function module specified in func using the RFC interface. The addition DESTINATION is used to specify a single destination in dest or use IN GROUP to specify a group of application servers. The latter supports parallel processing of multiple function modules.Check the below link which tells about Asynchronous RFC:https://help.sap.com/http.svc/rc/abapdocu_751_index_htm/7.51/en-US/abapcall_function_starting.htm#!ABAP_ADDITION_2@2@

Using sy-datum low and high in ABAP Program

Rahul Sharma
Updated on 14-Feb-2020 10:24:16

3K+ Views

In this code, you have used ‘BT’ i.e. between so select option will hit any date between today and YYYYMMDD ‘99991231’.You should declare high dates at INITIALIZATION so that it is visible on the selection screen and you can change it if required.select-OPTIONS: so_date FOR sy-datum. INITIALIZATION.    so_date-sign = 'I'.    so_date-option = 'BT'.    so_date-low = sy-datum.    so_date-high = '99991231'. APPEND so_date.

SAP UI5 application throws an error while using Tree map

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

205 Views

Note that SAP UI5 1.14 version supports Tree map and older version like 1.12 doesn’t have Tree map. You can try using below link: http://jsbin.com/aku-test-treemap-exists/1/edit?html,outputIt returns the code of tree map constructor, try loading your own copy sap-ui-core-js of UI5.

Error while creating a PO in SAP system from a .NET application

Nikitha N
Updated on 30-Jul-2019 22:30:20

255 Views

Below is the correct sequence to invoke Function Module for automatic OP generation:ME_REFRESH_PO onceME_CREATE_PO_HEADER onceME_CREATE_PO_ITEM n timesME_POST_PO onceIn case you don’t follow this sequence, it may result in data inconsistencies.

Converting OData using SAPUI5 libraries to JSON format

Ali
Ali
Updated on 14-Feb-2020 10:18:07

541 Views

This can be done in multiple ways. One of common approach would be by passing user name/password in URL.$.ajax({    url : "http://user:password@url/SERVICE?$format=json",    type: "GET", //or POST?    dataType: "jsonp",    success: function(){alert("ok")},    error: function(){alert("error")} })

Getting an error message Object already exported, no package change is possible while changing a package for 250 SAP development objects

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

271 Views

This problem commonly occurs when you move development objects from Transportable enabled package to non-Transportable package. You can resolve this issue by following steps − You need to migrate legacy package using report RS_MIGRATE_PACKAGES. Check SAP Note:  https://launchpad.support.sap.com/#/notes/1711900Then legacy package' will be removed, but the package will be still non-transportable. You can recreate package after migration. Next is to delete non Transportable package and create a copy of non TMS package. Next step is to assign all development objects to package created in the previous step using report RSWBO052. You use this program “RSWBO052” (Change Object Directory Entries) to ... Read More

In SAP ABAP, few records are skipped during parallel processing

Sravani S
Updated on 14-Feb-2020 10:11:03

327 Views

Check out on code to handle parallel processing-gv_semaphore = 0. DESCRIBE TABLE lt_itab LINES lv_lines. LOOP AT lt_itab INTO ls_itab. CALL FUNCTION 'ZABC' STARTING NEW TASK taskname DESTINATION IN GROUP srv_grp PERFORMING come_back ON END OF TASK EXPORTING ... EXCEPTIONS ... . "

How to extract data from SAP using .NET provider.

Johar Ali
Updated on 26-Feb-2020 10:18:56

1K+ Views

To extract using SSIS, you need to have access to backend system. You can use .NET connector and write a Windows application that extracts data from SAP system using Function Module.For more details on how to connect SAP using .NET connector, you can refer this blog- https://blogs.sap.com/2013/02/14/connecting-to-sap-with-nco-3/With use of BAPI’s you can allow external applications to access business processes and data in R/3 system. Below code is used to make call to BAPI. First is to create a class that implements IDestinationConfiguration −Imports SAP.Middleware.Connector Public Class ECCDestinationConfig    Implements IDestinationConfiguration    Public Event ConfigurationChanged(ByVal destinationName As String, ByVal args As ... Read More

Displaying Source code of RFC in SAP system

Rahul Sharma
Updated on 11-Dec-2019 07:02:14

875 Views

You can check this information in table REPOSRC and column name is “DATA”.You can also make use of RPY_FUNCTIONMODULE_READ_NEW - this will return the source as well. This Function module uses changing Parameters.

Displaying T-code description and T-code field in Output ALV of report SM20 in SAP system

Govinda Sai
Updated on 30-Jul-2019 22:30:20

375 Views

There is include rsau_class_auditlist_impl and to add an additional column into table mt_outtab you can try via an enhancement of this rsau_class_auditlist_impl.You need to add an additional Column to “ts_out_ext” in CL_SAL_READ_FILES line 145. Using this way you can enhance the definition however you have to check if it is used.

Advertisements