SAP GLE_MCA_PP_START Function Module for Start parallel process









GLE_MCA_PP_START is a standard gle mca pp start SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Start parallel process 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 gle mca pp start FM, simply by entering the name GLE_MCA_PP_START into the relevant SAP transaction such as SE37 or SE38.

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



Function GLE_MCA_PP_START 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 'GLE_MCA_PP_START'"Start parallel process
EXPORTING
* I_RUNID = "MCA Run ID
I_PRCCAT = "GL Enhancement MCA Process Category
* IS_FREE_SEL = "Free selections ( = RSDS_TYPE)
* I_XSIMULRUN = "Indicator: simulation run
* I_X_SYNC = "Checkbox
* I_X_USE_DIALOG_WP = "Checkbox
I_TAB_RSPARAMS = "rsparams Table
* I_FLG_RESTART = ABAP_FALSE "
I_LOGHANDLE = "Application Log: Log Handle

IMPORTING
E_RUNID = "MCA Run ID
E_TAB_JOBS = "Key of Background Jobs
E_RUNSTATUS = "Status of a Mass Run
E_ERRORS = "
.



IMPORTING Parameters details for GLE_MCA_PP_START

I_RUNID - MCA Run ID

Data type: GLE_RUNADM_DTE_RUNID
Optional: Yes
Call by Reference: Yes

I_PRCCAT - GL Enhancement MCA Process Category

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

IS_FREE_SEL - Free selections ( = RSDS_TYPE)

Data type: GLE_MCA_STR_FREE_SELECTIONS
Optional: Yes
Call by Reference: Yes

I_XSIMULRUN - Indicator: simulation run

Data type: BANK_DTE_PP_XSIMULRUN
Optional: Yes
Call by Reference: Yes

I_X_SYNC - Checkbox

Data type: XFELD
Optional: Yes
Call by Reference: Yes

I_X_USE_DIALOG_WP - Checkbox

Data type: XFELD
Optional: Yes
Call by Reference: Yes

I_TAB_RSPARAMS - rsparams Table

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

I_FLG_RESTART -

Data type: ABAP_BOOL
Default: ABAP_FALSE
Optional: Yes
Call by Reference: Yes

I_LOGHANDLE - Application Log: Log Handle

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

EXPORTING Parameters details for GLE_MCA_PP_START

E_RUNID - MCA Run ID

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

E_TAB_JOBS - Key of Background Jobs

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

E_RUNSTATUS - Status of a Mass Run

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

E_ERRORS -

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

Copy and paste ABAP code example for GLE_MCA_PP_START 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_e_runid  TYPE GLE_RUNADM_DTE_RUNID, "   
lv_i_runid  TYPE GLE_RUNADM_DTE_RUNID, "   
lv_i_prccat  TYPE GLE_MCA_DTE_TPRC_CAT, "   
lv_e_tab_jobs  TYPE BANK_TAB_JC_JOBKEY, "   
lv_e_runstatus  TYPE BANK_DTE_PP_RUNSTATUS, "   
lv_is_free_sel  TYPE GLE_MCA_STR_FREE_SELECTIONS, "   
lv_e_errors  TYPE ABAP_BOOL, "   
lv_i_xsimulrun  TYPE BANK_DTE_PP_XSIMULRUN, "   
lv_i_x_sync  TYPE XFELD, "   
lv_i_x_use_dialog_wp  TYPE XFELD, "   
lv_i_tab_rsparams  TYPE RSPARAMS_TT, "   
lv_i_flg_restart  TYPE ABAP_BOOL, "   ABAP_FALSE
lv_i_loghandle  TYPE BALLOGHNDL. "   

  CALL FUNCTION 'GLE_MCA_PP_START'  "Start parallel process
    EXPORTING
         I_RUNID = lv_i_runid
         I_PRCCAT = lv_i_prccat
         IS_FREE_SEL = lv_is_free_sel
         I_XSIMULRUN = lv_i_xsimulrun
         I_X_SYNC = lv_i_x_sync
         I_X_USE_DIALOG_WP = lv_i_x_use_dialog_wp
         I_TAB_RSPARAMS = lv_i_tab_rsparams
         I_FLG_RESTART = lv_i_flg_restart
         I_LOGHANDLE = lv_i_loghandle
    IMPORTING
         E_RUNID = lv_e_runid
         E_TAB_JOBS = lv_e_tab_jobs
         E_RUNSTATUS = lv_e_runstatus
         E_ERRORS = lv_e_errors
. " GLE_MCA_PP_START




ABAP code using 7.40 inline data declarations to call FM GLE_MCA_PP_START

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_flg_restart) = ABAP_FALSE.
 
 


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!