SAP SHOW_SOURCE_PE04 Function Module for
SHOW_SOURCE_PE04 is a standard show source pe04 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 show source pe04 FM, simply by entering the name SHOW_SOURCE_PE04 into the relevant SAP transaction such as SE37 or SE38.
Function Group: RP04
Program Name: SAPLRP04
Main Program: SAPLRP04
Appliation area: P
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SHOW_SOURCE_PE04 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 'SHOW_SOURCE_PE04'".
EXPORTING
FORM_NAME = "
PROCL = "
OBJECT_TYPE = "
CHANGING
MAINPROGRAM = "
TABLES
MOLGAS = "
EXCEPTIONS
COULD_NOT_FIND_FORM = 1 COULD_NOT_READ_INCLUDE = 2 USER_CANCELLED = 3
IMPORTING Parameters details for SHOW_SOURCE_PE04
FORM_NAME -
Data type: FORM_NAMEOptional: No
Call by Reference: No ( called with pass by value option)
PROCL -
Data type: T52A0-PROCLOptional: No
Call by Reference: No ( called with pass by value option)
OBJECT_TYPE -
Data type: T52A0-OTYPEOptional: No
Call by Reference: No ( called with pass by value option)
CHANGING Parameters details for SHOW_SOURCE_PE04
MAINPROGRAM -
Data type: RS38M-PROGRAMMOptional: No
Call by Reference: Yes
TABLES Parameters details for SHOW_SOURCE_PE04
MOLGAS -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
COULD_NOT_FIND_FORM -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
COULD_NOT_READ_INCLUDE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
USER_CANCELLED -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for SHOW_SOURCE_PE04 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_molgas | TYPE STANDARD TABLE OF STRING, " | |||
| lv_form_name | TYPE FORM_NAME, " | |||
| lv_mainprogram | TYPE RS38M-PROGRAMM, " | |||
| lv_could_not_find_form | TYPE RS38M, " | |||
| lv_procl | TYPE T52A0-PROCL, " | |||
| lv_could_not_read_include | TYPE T52A0, " | |||
| lv_object_type | TYPE T52A0-OTYPE, " | |||
| lv_user_cancelled | TYPE T52A0. " |
|   CALL FUNCTION 'SHOW_SOURCE_PE04' " |
| EXPORTING | ||
| FORM_NAME | = lv_form_name | |
| PROCL | = lv_procl | |
| OBJECT_TYPE | = lv_object_type | |
| CHANGING | ||
| MAINPROGRAM | = lv_mainprogram | |
| TABLES | ||
| MOLGAS | = lt_molgas | |
| EXCEPTIONS | ||
| COULD_NOT_FIND_FORM = 1 | ||
| COULD_NOT_READ_INCLUDE = 2 | ||
| USER_CANCELLED = 3 | ||
| . " SHOW_SOURCE_PE04 | ||
ABAP code using 7.40 inline data declarations to call FM SHOW_SOURCE_PE04
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 PROGRAMM FROM RS38M INTO @DATA(ld_mainprogram). | ||||
| "SELECT single PROCL FROM T52A0 INTO @DATA(ld_procl). | ||||
| "SELECT single OTYPE FROM T52A0 INTO @DATA(ld_object_type). | ||||
Search for further information about these or an SAP related objects