SAP PPEEXPL_EXPLOSION_RPM1 Function Module for NOTRANSL: Auflösung für die Rapid Planning Matrix im APO 1.Teil









PPEEXPL_EXPLOSION_RPM1 is a standard ppeexpl explosion rpm1 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: Auflösung für die Rapid Planning Matrix im APO 1.Teil 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 ppeexpl explosion rpm1 FM, simply by entering the name PPEEXPL_EXPLOSION_RPM1 into the relevant SAP transaction such as SE37 or SE38.

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



Function PPEEXPL_EXPLOSION_RPM1 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 'PPEEXPL_EXPLOSION_RPM1'"NOTRANSL: Auflösung für die Rapid Planning Matrix im APO  1.Teil
EXPORTING
IV_PPEGUID = "Internal Identification for PVS Objects
* IT_PPECOP = "Co-Products
* IT_CMP = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* IT_ACT = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* IV_MSG_CONTEXT = "Application Context of Message
* IV_IGNORE_ERROR = PPET_FALSE "Checkbox
* IV_MSG_HANDLING = 'A' "
* IV_READ_MASTER_DATA = PPET_TRUE "Checkbox
* IT_PPEGUID_OBJ = "Connection of Production Version and Application Objects
* IT_PPEHDR = "iPPE Access Object
* IT_PPELNK = "Connection Between PPEHDR and PPEOBJ
* IT_PPEOBJ = "Objects for the iPPE Access Object

IMPORTING
ES_ACT_MEM = "
ET_CMP_MEM = "
ET_RESULT = "
EV_PPEGUID_WITH_ERROR = "Checkbox

CHANGING
* CT_EXPL_ERROR = "Error Messages
.



IMPORTING Parameters details for PPEEXPL_EXPLOSION_RPM1

IV_PPEGUID - Internal Identification for PVS Objects

Data type: PPET4_PPEHDR-PPEGUID
Optional: No
Call by Reference: Yes

IT_PPECOP - Co-Products

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

IT_CMP - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

IT_ACT - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

IV_MSG_CONTEXT - Application Context of Message

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

IV_IGNORE_ERROR - Checkbox

Data type: PPE_XFELD
Default: PPET_FALSE
Optional: Yes
Call by Reference: Yes

IV_MSG_HANDLING -

Data type: PPET_MSG_OPT
Default: 'A'
Optional: Yes
Call by Reference: Yes

IV_READ_MASTER_DATA - Checkbox

Data type: PPE_XFELD
Default: PPET_TRUE
Optional: Yes
Call by Reference: Yes

IT_PPEGUID_OBJ - Connection of Production Version and Application Objects

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

IT_PPEHDR - iPPE Access Object

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

IT_PPELNK - Connection Between PPEHDR and PPEOBJ

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

IT_PPEOBJ - Objects for the iPPE Access Object

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

EXPORTING Parameters details for PPEEXPL_EXPLOSION_RPM1

ES_ACT_MEM -

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

ET_CMP_MEM -

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

ET_RESULT -

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

EV_PPEGUID_WITH_ERROR - Checkbox

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

CHANGING Parameters details for PPEEXPL_EXPLOSION_RPM1

CT_EXPL_ERROR - Error Messages

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

Copy and paste ABAP code example for PPEEXPL_EXPLOSION_RPM1 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_es_act_mem  TYPE PPET8_ACT_MEM, "   
lv_iv_ppeguid  TYPE PPET4_PPEHDR-PPEGUID, "   
lv_ct_expl_error  TYPE PPET8_OBJ_MESSAGE_TAB, "   
lv_it_ppecop  TYPE PPET4_PPECOP_TAB, "   
lv_it_cmp  TYPE PPET8_CMP_TAB, "   
lv_it_act  TYPE PPET8_ACT_TAB, "   
lv_et_cmp_mem  TYPE PPET8_MEM_TAB, "   
lv_iv_msg_context  TYPE PPE_MSG_CONTEXT, "   
lv_et_result  TYPE PPET8_RESULT_TAB, "   
lv_iv_ignore_error  TYPE PPE_XFELD, "   PPET_FALSE
lv_iv_msg_handling  TYPE PPET_MSG_OPT, "   'A'
lv_ev_ppeguid_with_error  TYPE PPE_XFELD, "   
lv_iv_read_master_data  TYPE PPE_XFELD, "   PPET_TRUE
lv_it_ppeguid_obj  TYPE PPET8_PPEGUID_OBJ_TAB, "   
lv_it_ppehdr  TYPE PPET4_PPEHDR_LI_TAB, "   
lv_it_ppelnk  TYPE PPET4_PPELNK_LI_TAB, "   
lv_it_ppeobj  TYPE PPET4_PPEOBJ_LI_TAB. "   

  CALL FUNCTION 'PPEEXPL_EXPLOSION_RPM1'  "NOTRANSL: Auflösung für die Rapid Planning Matrix im APO 1.Teil
    EXPORTING
         IV_PPEGUID = lv_iv_ppeguid
         IT_PPECOP = lv_it_ppecop
         IT_CMP = lv_it_cmp
         IT_ACT = lv_it_act
         IV_MSG_CONTEXT = lv_iv_msg_context
         IV_IGNORE_ERROR = lv_iv_ignore_error
         IV_MSG_HANDLING = lv_iv_msg_handling
         IV_READ_MASTER_DATA = lv_iv_read_master_data
         IT_PPEGUID_OBJ = lv_it_ppeguid_obj
         IT_PPEHDR = lv_it_ppehdr
         IT_PPELNK = lv_it_ppelnk
         IT_PPEOBJ = lv_it_ppeobj
    IMPORTING
         ES_ACT_MEM = lv_es_act_mem
         ET_CMP_MEM = lv_et_cmp_mem
         ET_RESULT = lv_et_result
         EV_PPEGUID_WITH_ERROR = lv_ev_ppeguid_with_error
    CHANGING
         CT_EXPL_ERROR = lv_ct_expl_error
. " PPEEXPL_EXPLOSION_RPM1




ABAP code using 7.40 inline data declarations to call FM PPEEXPL_EXPLOSION_RPM1

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.

 
"SELECT single PPEGUID FROM PPET4_PPEHDR INTO @DATA(ld_iv_ppeguid).
 
 
 
 
 
 
 
 
DATA(ld_iv_ignore_error) = PPET_FALSE.
 
DATA(ld_iv_msg_handling) = 'A'.
 
 
DATA(ld_iv_read_master_data) = PPET_TRUE.
 
 
 
 
 


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!