SAP RSSM_PROCESS_CALL_CHAIN Function Module for Variants generate / create out of old AWB









RSSM_PROCESS_CALL_CHAIN is a standard rssm process call chain SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Variants generate / create out of old AWB processing and below is the pattern details for this FM, 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 rssm process call chain FM, simply by entering the name RSSM_PROCESS_CALL_CHAIN into the relevant SAP transaction such as SE37 or SE38.

Function Group: RSSM_PROCESS
Program Name: SAPLRSSM_PROCESS
Main Program: SAPLRSSM_PROCESS
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function RSSM_PROCESS_CALL_CHAIN 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 'RSSM_PROCESS_CALL_CHAIN'"Variants generate / create out of old AWB
EXPORTING
I_TYPE = "Process Type
* I_T_PSATABLE = "InfoCube
* I_T_ICUBES = "
* I_T_IPAKS = "
* I_PARALLEL = ' ' "Boolean
* I_NO_CONDENSE = ' ' "Boolean
* I_ACTIVATE_SERIAL = ' ' "Boolean
* I_GROUP = "InfoPackageGroup Scheduler
.



IMPORTING Parameters details for RSSM_PROCESS_CALL_CHAIN

I_TYPE - Process Type

Data type: RSPC_TYPE
Optional: No
Call by Reference: Yes

I_T_PSATABLE - InfoCube

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

I_T_ICUBES -

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

I_T_IPAKS -

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

I_PARALLEL - Boolean

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

I_NO_CONDENSE - Boolean

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

I_ACTIVATE_SERIAL - Boolean

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

I_GROUP - InfoPackageGroup Scheduler

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

Copy and paste ABAP code example for RSSM_PROCESS_CALL_CHAIN 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_i_type  TYPE RSPC_TYPE, "   
lv_i_t_psatable  TYPE RSSM_T_PSATABLE, "   
lv_i_t_icubes  TYPE RSSM_T_ICUBE, "   
lv_i_t_ipaks  TYPE RSSM_T_RSLDPIO, "   
lv_i_parallel  TYPE RS_BOOL, "   SPACE
lv_i_no_condense  TYPE RS_BOOL, "   SPACE
lv_i_activate_serial  TYPE RS_BOOL, "   SPACE
lv_i_group  TYPE RSLOGID. "   

  CALL FUNCTION 'RSSM_PROCESS_CALL_CHAIN'  "Variants generate / create out of old AWB
    EXPORTING
         I_TYPE = lv_i_type
         I_T_PSATABLE = lv_i_t_psatable
         I_T_ICUBES = lv_i_t_icubes
         I_T_IPAKS = lv_i_t_ipaks
         I_PARALLEL = lv_i_parallel
         I_NO_CONDENSE = lv_i_no_condense
         I_ACTIVATE_SERIAL = lv_i_activate_serial
         I_GROUP = lv_i_group
. " RSSM_PROCESS_CALL_CHAIN




ABAP code using 7.40 inline data declarations to call FM RSSM_PROCESS_CALL_CHAIN

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_i_parallel) = ' '.
 
DATA(ld_i_no_condense) = ' '.
 
DATA(ld_i_activate_serial) = ' '.
 
 


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!