SAP PPEUICMP_REP_SIMREP_FOR_DUMMY Function Module for NOTRANSL: iPPE-PVS-Reporting: Simple-Report für ECN
PPEUICMP_REP_SIMREP_FOR_DUMMY is a standard ppeuicmp rep simrep for dummy 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: iPPE-PVS-Reporting: Simple-Report für ECN 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 ppeuicmp rep simrep for dummy FM, simply by entering the name PPEUICMP_REP_SIMREP_FOR_DUMMY into the relevant SAP transaction such as SE37 or SE38.
Function Group: PPEUICMP_REP
Program Name: SAPLPPEUICMP_REP
Main Program: SAPLPPEUICMP_REP
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function PPEUICMP_REP_SIMREP_FOR_DUMMY 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 'PPEUICMP_REP_SIMREP_FOR_DUMMY'"NOTRANSL: iPPE-PVS-Reporting: Simple-Report für ECN.
EXPORTING
* IV_SCREEN_DIAG = PPET_TRUE "Checkbox
* IV_KEY_DIALOG = "Checkbox
* IV_MAX_RES = 100 "Internal Counter for iPPE Objects
* IV_OFFER_WBPRO = PPET_TRUE "Checkbox
* IV_OFFER_WL = PPET_TRUE "Checkbox
* IV_PNAME_STD = "iPPE Node Description
* IV_CCLASS_STD = "Class number
* IV_CKLART_STD = "Class Type
* IV_PVNAME_STD = "Variant
* IV_PNALT_STD = "Alternative of an iPPE Node
EXCEPTIONS
NONE_FOUND = 1
IMPORTING Parameters details for PPEUICMP_REP_SIMREP_FOR_DUMMY
IV_SCREEN_DIAG - Checkbox
Data type: XFELDDefault: PPET_TRUE
Optional: Yes
Call by Reference: Yes
IV_KEY_DIALOG - Checkbox
Data type: XFELDOptional: Yes
Call by Reference: Yes
IV_MAX_RES - Internal Counter for iPPE Objects
Data type: PVS_COUNTDefault: 100
Optional: Yes
Call by Reference: Yes
IV_OFFER_WBPRO - Checkbox
Data type: XFELDDefault: PPET_TRUE
Optional: Yes
Call by Reference: Yes
IV_OFFER_WL - Checkbox
Data type: XFELDDefault: PPET_TRUE
Optional: Yes
Call by Reference: Yes
IV_PNAME_STD - iPPE Node Description
Data type: PVS_PNODEOptional: Yes
Call by Reference: Yes
IV_CCLASS_STD - Class number
Data type: KLASSE_DOptional: Yes
Call by Reference: Yes
IV_CKLART_STD - Class Type
Data type: KLASSENARTOptional: Yes
Call by Reference: Yes
IV_PVNAME_STD - Variant
Data type: PVS_POSVAROptional: Yes
Call by Reference: Yes
IV_PNALT_STD - Alternative of an iPPE Node
Data type: PVS_ALTNUMOptional: Yes
Call by Reference: Yes
EXCEPTIONS details
NONE_FOUND - No results found
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for PPEUICMP_REP_SIMREP_FOR_DUMMY 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_none_found | TYPE STRING, " | |||
| lv_iv_screen_diag | TYPE XFELD, " PPET_TRUE | |||
| lv_iv_key_dialog | TYPE XFELD, " | |||
| lv_iv_max_res | TYPE PVS_COUNT, " 100 | |||
| lv_iv_offer_wbpro | TYPE XFELD, " PPET_TRUE | |||
| lv_iv_offer_wl | TYPE XFELD, " PPET_TRUE | |||
| lv_iv_pname_std | TYPE PVS_PNODE, " | |||
| lv_iv_cclass_std | TYPE KLASSE_D, " | |||
| lv_iv_cklart_std | TYPE KLASSENART, " | |||
| lv_iv_pvname_std | TYPE PVS_POSVAR, " | |||
| lv_iv_pnalt_std | TYPE PVS_ALTNUM. " |
|   CALL FUNCTION 'PPEUICMP_REP_SIMREP_FOR_DUMMY' "NOTRANSL: iPPE-PVS-Reporting: Simple-Report für ECN |
| EXPORTING | ||
| IV_SCREEN_DIAG | = lv_iv_screen_diag | |
| IV_KEY_DIALOG | = lv_iv_key_dialog | |
| IV_MAX_RES | = lv_iv_max_res | |
| IV_OFFER_WBPRO | = lv_iv_offer_wbpro | |
| IV_OFFER_WL | = lv_iv_offer_wl | |
| IV_PNAME_STD | = lv_iv_pname_std | |
| IV_CCLASS_STD | = lv_iv_cclass_std | |
| IV_CKLART_STD | = lv_iv_cklart_std | |
| IV_PVNAME_STD | = lv_iv_pvname_std | |
| IV_PNALT_STD | = lv_iv_pnalt_std | |
| EXCEPTIONS | ||
| NONE_FOUND = 1 | ||
| . " PPEUICMP_REP_SIMREP_FOR_DUMMY | ||
ABAP code using 7.40 inline data declarations to call FM PPEUICMP_REP_SIMREP_FOR_DUMMY
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_iv_screen_diag) | = PPET_TRUE. | |||
| DATA(ld_iv_max_res) | = 100. | |||
| DATA(ld_iv_offer_wbpro) | = PPET_TRUE. | |||
| DATA(ld_iv_offer_wl) | = PPET_TRUE. | |||
Search for further information about these or an SAP related objects