Synchronous RFC The first version of RFC is synchronous RFC (sRFC). This type of RFC executes the function call based on synchronous communication, meaning that the
Category: Uncategorized
RFC Communication Types
There are four different scenarios: AS ABAP – AS ABAP AS ABAP – External system AS ABAP – SAP Java AS ABAP – External Java
Parallel Processing In OOabap
Step1. Create a report with class and methods. REPORT zparallel_processing_oo. DATA : chk1, chk2, ret11 TYPE TABLE OF bapisdstat, ret22 TYPE TABLE OF bapisdstat, ret TYPE bapisdstat. CLASS lcl_demo DEFINITION. PUBLIC SECTION. CLASS-METHODS : call IMPORTING sdoc1 TYPE bapivbeln–vbeln sdoc2 TYPE bapivbeln–vbeln , handle1 IMPORTING p_task TYPE clike, ” must have a importing para-
Parallel Processing In Procedural ABAP
Parallel Processing : when a huge number of records needs to be processed and it takes a lot of time to produce the output, this
XSLT Pgm of Transforming a XML tree into int table using Tx- XSLT_TOOL / STRANS ( XML -> ABAP )
Step1. Create an XSLT Transformation in Tx: XSLT_TOOL / STRANS. Step2. A comparison between (INTERNAL TABLE TO XML TREE) AND (XML TREE TO ABAP INTERNAL TABLE).
XSLT Pgm of Transforming an int table into XML tree using Tx- XSLT_TOOL / STRANS (ABAP-> XML)
Step1. we have to select all record from this table and transform it into xml tree format. Step2. Create the below structure in Tx- SE11. Step3. We can