SAP REIS_PARALLEL_PROC Function Module for









REIS_PARALLEL_PROC is a standard reis parallel proc SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.


See here to view full function module documentation and code listing for reis parallel proc FM, simply by entering the name REIS_PARALLEL_PROC into the relevant SAP transaction such as SE37 or SE38.

Function Group: REIS_PARALLEL_PROC
Program Name: SAPLREIS_PARALLEL_PROC
Main Program: SAPLREIS_PARALLEL_PROC
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function REIS_PARALLEL_PROC pattern details

In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.
CALL FUNCTION 'REIS_PARALLEL_PROC'"
EXPORTING
ID_REPORT_ID = "
ID_PROFILE_ID = "
* ID_DATA_CONTAINER = "
* ID_VALID_FROM = RECA0_DATE-MIN "
* ID_VALID_TO = RECA0_DATE-MAX "
* ID_COMPLETE_DATA = ' ' "
* IT_OBJNR = "
* IT_PARTNER = "
* IT_KEY = "

IMPORTING
ET_RESULT_XML = "
ET_MSG = "

EXCEPTIONS
TECHNICAL_ERROR = 1
.



IMPORTING Parameters details for REIS_PARALLEL_PROC

ID_REPORT_ID -

Data type: REISREPID
Optional: No
Call by Reference: No ( called with pass by value option)

ID_PROFILE_ID -

Data type: REISPFID
Optional: No
Call by Reference: No ( called with pass by value option)

ID_DATA_CONTAINER -

Data type: STRING
Optional: Yes
Call by Reference: No ( called with pass by value option)

ID_VALID_FROM -

Data type: RECADATEFROM
Default: RECA0_DATE-MIN
Optional: Yes
Call by Reference: No ( called with pass by value option)

ID_VALID_TO -

Data type: RECADATETO
Default: RECA0_DATE-MAX
Optional: Yes
Call by Reference: No ( called with pass by value option)

ID_COMPLETE_DATA -

Data type: CHAR1
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

IT_OBJNR -

Data type: RE_T_OBJNR
Optional: Yes
Call by Reference: No ( called with pass by value option)

IT_PARTNER -

Data type: RE_T_PARTNER_KEY
Optional: Yes
Call by Reference: No ( called with pass by value option)

IT_KEY -

Data type: RE_T_REIS_CA_PP_KEY
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for REIS_PARALLEL_PROC

ET_RESULT_XML -

Data type: STRING_TABLE
Optional: No
Call by Reference: No ( called with pass by value option)

ET_MSG -

Data type: RE_T_MSG
Optional: No
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

TECHNICAL_ERROR -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for REIS_PARALLEL_PROC Function Module

The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.

DATA:
lv_id_report_id  TYPE REISREPID, "   
lv_et_result_xml  TYPE STRING_TABLE, "   
lv_technical_error  TYPE STRING_TABLE, "   
lv_et_msg  TYPE RE_T_MSG, "   
lv_id_profile_id  TYPE REISPFID, "   
lv_id_data_container  TYPE STRING, "   
lv_id_valid_from  TYPE RECADATEFROM, "   RECA0_DATE-MIN
lv_id_valid_to  TYPE RECADATETO, "   RECA0_DATE-MAX
lv_id_complete_data  TYPE CHAR1, "   SPACE
lv_it_objnr  TYPE RE_T_OBJNR, "   
lv_it_partner  TYPE RE_T_PARTNER_KEY, "   
lv_it_key  TYPE RE_T_REIS_CA_PP_KEY. "   

  CALL FUNCTION 'REIS_PARALLEL_PROC'  "
    EXPORTING
         ID_REPORT_ID = lv_id_report_id
         ID_PROFILE_ID = lv_id_profile_id
         ID_DATA_CONTAINER = lv_id_data_container
         ID_VALID_FROM = lv_id_valid_from
         ID_VALID_TO = lv_id_valid_to
         ID_COMPLETE_DATA = lv_id_complete_data
         IT_OBJNR = lv_it_objnr
         IT_PARTNER = lv_it_partner
         IT_KEY = lv_it_key
    IMPORTING
         ET_RESULT_XML = lv_et_result_xml
         ET_MSG = lv_et_msg
    EXCEPTIONS
        TECHNICAL_ERROR = 1
. " REIS_PARALLEL_PROC




ABAP code using 7.40 inline data declarations to call FM REIS_PARALLEL_PROC

The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.

 
 
 
 
 
 
DATA(ld_id_valid_from) = RECA0_DATE-MIN.
 
DATA(ld_id_valid_to) = RECA0_DATE-MAX.
 
DATA(ld_id_complete_data) = ' '.
 
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!