SAP FPP_EXT_RUN_PARAMETERS_SET_I Function Module for NOTRANSL: Selektion der Laufdaten für externe Scheduler
FPP_EXT_RUN_PARAMETERS_SET_I is a standard fpp ext run parameters set i SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Selektion der Laufdaten für externe Scheduler 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 fpp ext run parameters set i FM, simply by entering the name FPP_EXT_RUN_PARAMETERS_SET_I into the relevant SAP transaction such as SE37 or SE38.
Function Group: FPP_EXTERNAL_START_I
Program Name: SAPLFPP_EXTERNAL_START_I
Main Program: SAPLFPP_EXTERNAL_START_I
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FPP_EXT_RUN_PARAMETERS_SET_I 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 'FPP_EXT_RUN_PARAMETERS_SET_I'"NOTRANSL: Selektion der Laufdaten für externe Scheduler.
EXPORTING
* IV_PID = "Identification of Parallel Run
* IV_NUMBER_OF_JOBS = "Number of Jobs Running Parallel
* IV_DISTRIBUTION = "Jobs per Server Group and Server
* IV_PARALLEL_OBJECT = "Object for Parallel Processing in FPP
* IV_INSTANCE = "Interval Distribution of an Object for Parallel Processing
* IV_EXTERNAL_RUN_ID = "External Identification of a Mass Run
* IS_CACS_DATA = "Structure for Including Settlement in FPP
EXCEPTIONS
WRITE_ERROR = 1
IMPORTING Parameters details for FPP_EXT_RUN_PARAMETERS_SET_I
IV_PID - Identification of Parallel Run
Data type: FPP_PIDOptional: Yes
Call by Reference: Yes
IV_NUMBER_OF_JOBS - Number of Jobs Running Parallel
Data type: FPP_JOBSOptional: Yes
Call by Reference: Yes
IV_DISTRIBUTION - Jobs per Server Group and Server
Data type: BANK_TAB_GRP_SRVOptional: Yes
Call by Reference: Yes
IV_PARALLEL_OBJECT - Object for Parallel Processing in FPP
Data type: FPP_PAROBJOptional: Yes
Call by Reference: Yes
IV_INSTANCE - Interval Distribution of an Object for Parallel Processing
Data type: FPP_INSTANCEOptional: Yes
Call by Reference: Yes
IV_EXTERNAL_RUN_ID - External Identification of a Mass Run
Data type: BANK_DTE_PP_RUNID_EXTOptional: Yes
Call by Reference: Yes
IS_CACS_DATA - Structure for Including Settlement in FPP
Data type: CACS_S_FPP_SETTLEMENTOptional: Yes
Call by Reference: Yes
EXCEPTIONS details
WRITE_ERROR - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for FPP_EXT_RUN_PARAMETERS_SET_I 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_iv_pid | TYPE FPP_PID, " | |||
| lv_write_error | TYPE FPP_PID, " | |||
| lv_iv_number_of_jobs | TYPE FPP_JOBS, " | |||
| lv_iv_distribution | TYPE BANK_TAB_GRP_SRV, " | |||
| lv_iv_parallel_object | TYPE FPP_PAROBJ, " | |||
| lv_iv_instance | TYPE FPP_INSTANCE, " | |||
| lv_iv_external_run_id | TYPE BANK_DTE_PP_RUNID_EXT, " | |||
| lv_is_cacs_data | TYPE CACS_S_FPP_SETTLEMENT. " |
|   CALL FUNCTION 'FPP_EXT_RUN_PARAMETERS_SET_I' "NOTRANSL: Selektion der Laufdaten für externe Scheduler |
| EXPORTING | ||
| IV_PID | = lv_iv_pid | |
| IV_NUMBER_OF_JOBS | = lv_iv_number_of_jobs | |
| IV_DISTRIBUTION | = lv_iv_distribution | |
| IV_PARALLEL_OBJECT | = lv_iv_parallel_object | |
| IV_INSTANCE | = lv_iv_instance | |
| IV_EXTERNAL_RUN_ID | = lv_iv_external_run_id | |
| IS_CACS_DATA | = lv_is_cacs_data | |
| EXCEPTIONS | ||
| WRITE_ERROR = 1 | ||
| . " FPP_EXT_RUN_PARAMETERS_SET_I | ||
ABAP code using 7.40 inline data declarations to call FM FPP_EXT_RUN_PARAMETERS_SET_I
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.Search for further information about these or an SAP related objects