SAP PPC1RT_CONF_DISPLAY Function Module for NOTRANSL: Zeigt Rückmeldungen mit dem ALV an
PPC1RT_CONF_DISPLAY is a standard ppc1rt conf display 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: Zeigt Rückmeldungen mit dem ALV an 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 ppc1rt conf display FM, simply by entering the name PPC1RT_CONF_DISPLAY into the relevant SAP transaction such as SE37 or SE38.
Function Group: PPC1RT
Program Name: SAPLPPC1RT
Main Program: SAPLPPC1RT
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function PPC1RT_CONF_DISPLAY 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 'PPC1RT_CONF_DISPLAY'"NOTRANSL: Zeigt Rückmeldungen mit dem ALV an.
EXPORTING
* IF_HIERARCH = ' ' "Hierarchical List
* IF_MODE = 'H' "Defines which lists are displayed in ALV
* IF_LEVEL = 1 "List Level
* IF_ERROR_LEVEL = 'S' "Messages, Message Type
* IF_EXPAND = 'X' "
* IF_VARIANT_EXT = "
* IF_ARCHIVE = ' ' "
TABLES
* IT_HEADS = "Displays Confirmation Headers
* IT_COMPS = "Hierarchy Level 2: Confirmation Components
* IT_ACTS = "Display of Production Activities
EXCEPTIONS
INSUFFICIENT_INPUT = 1
IMPORTING Parameters details for PPC1RT_CONF_DISPLAY
IF_HIERARCH - Hierarchical List
Data type: CDefault: SPACE
Optional: No
Call by Reference: Yes
IF_MODE - Defines which lists are displayed in ALV
Data type: PPC_SHOW_MODEDefault: 'H'
Optional: No
Call by Reference: Yes
IF_LEVEL - List Level
Data type: IDefault: 1
Optional: Yes
Call by Reference: Yes
IF_ERROR_LEVEL - Messages, Message Type
Data type: SY-MSGTYDefault: 'S'
Optional: Yes
Call by Reference: Yes
IF_EXPAND -
Data type: CDefault: 'X'
Optional: Yes
Call by Reference: Yes
IF_VARIANT_EXT -
Data type: SLIS_VARIOptional: Yes
Call by Reference: Yes
IF_ARCHIVE -
Data type: CDefault: SPACE
Optional: Yes
Call by Reference: Yes
TABLES Parameters details for PPC1RT_CONF_DISPLAY
IT_HEADS - Displays Confirmation Headers
Data type: PPC_SHOW_EXTOptional: Yes
Call by Reference: Yes
IT_COMPS - Hierarchy Level 2: Confirmation Components
Data type: PPC_SHOW_EXT_GIOptional: Yes
Call by Reference: Yes
IT_ACTS - Display of Production Activities
Data type: PPC_SHOW_EXT_ACTOptional: Yes
Call by Reference: Yes
EXCEPTIONS details
INSUFFICIENT_INPUT -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for PPC1RT_CONF_DISPLAY 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: | ||||
| lt_it_heads | TYPE STANDARD TABLE OF PPC_SHOW_EXT, " | |||
| lv_if_hierarch | TYPE C, " SPACE | |||
| lv_insufficient_input | TYPE C, " | |||
| lv_if_mode | TYPE PPC_SHOW_MODE, " 'H' | |||
| lt_it_comps | TYPE STANDARD TABLE OF PPC_SHOW_EXT_GI, " | |||
| lt_it_acts | TYPE STANDARD TABLE OF PPC_SHOW_EXT_ACT, " | |||
| lv_if_level | TYPE I, " 1 | |||
| lv_if_error_level | TYPE SY-MSGTY, " 'S' | |||
| lv_if_expand | TYPE C, " 'X' | |||
| lv_if_variant_ext | TYPE SLIS_VARI, " | |||
| lv_if_archive | TYPE C. " SPACE |
|   CALL FUNCTION 'PPC1RT_CONF_DISPLAY' "NOTRANSL: Zeigt Rückmeldungen mit dem ALV an |
| EXPORTING | ||
| IF_HIERARCH | = lv_if_hierarch | |
| IF_MODE | = lv_if_mode | |
| IF_LEVEL | = lv_if_level | |
| IF_ERROR_LEVEL | = lv_if_error_level | |
| IF_EXPAND | = lv_if_expand | |
| IF_VARIANT_EXT | = lv_if_variant_ext | |
| IF_ARCHIVE | = lv_if_archive | |
| TABLES | ||
| IT_HEADS | = lt_it_heads | |
| IT_COMPS | = lt_it_comps | |
| IT_ACTS | = lt_it_acts | |
| EXCEPTIONS | ||
| INSUFFICIENT_INPUT = 1 | ||
| . " PPC1RT_CONF_DISPLAY | ||
ABAP code using 7.40 inline data declarations to call FM PPC1RT_CONF_DISPLAY
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_if_hierarch) | = ' '. | |||
| DATA(ld_if_mode) | = 'H'. | |||
| DATA(ld_if_level) | = 1. | |||
| "SELECT single MSGTY FROM SY INTO @DATA(ld_if_error_level). | ||||
| DATA(ld_if_error_level) | = 'S'. | |||
| DATA(ld_if_expand) | = 'X'. | |||
| DATA(ld_if_archive) | = ' '. | |||
Search for further information about these or an SAP related objects