SAP QELA_PROCESS_RESULTS_SHOW Function Module for NOTRANSL: Listanzeige von Prozeßrückmeldungen zum Prüflos aus PP-PI-Schnit
QELA_PROCESS_RESULTS_SHOW is a standard qela process results show 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: Listanzeige von Prozeßrückmeldungen zum Prüflos aus PP-PI-Schnit 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 qela process results show FM, simply by entering the name QELA_PROCESS_RESULTS_SHOW into the relevant SAP transaction such as SE37 or SE38.
Function Group: QELA
Program Name: SAPLQELA
Main Program: SAPLQELA
Appliation area: Q
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function QELA_PROCESS_RESULTS_SHOW 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 'QELA_PROCESS_RESULTS_SHOW'"NOTRANSL: Listanzeige von Prozeßrückmeldungen zum Prüflos aus PP-PI-Schnit.
EXPORTING
I_PRUEFLOS = "Inspection lot number
* I_VORNR = '9999' "Operation interval up to
* I_WINX1_27 = 08 "
* I_WINX2_27 = 75 "
* I_WINY1_27 = 05 "
* I_WINY2_27 = 12 "
* I_STELLEN = "Number of characters
* I_MERKNR = "
* I_DATA_ONLY_SHOW = ' ' "
IMPORTING
E_COCQ = "
EXCEPTIONS
NO_ENTRIES_FOUND = 1 NO_ENTRY_SELECTED = 2
IMPORTING Parameters details for QELA_PROCESS_RESULTS_SHOW
I_PRUEFLOS - Inspection lot number
Data type: QALS-PRUEFLOSOptional: No
Call by Reference: No ( called with pass by value option)
I_VORNR - Operation interval up to
Data type: QAQEE-VORNRDefault: '9999'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_WINX1_27 -
Data type: T185V-DYBS1X1Default: 08
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_WINX2_27 -
Data type: T185V-DYBS1X2Default: 75
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_WINY1_27 -
Data type: T185V-DYBS1Y1Default: 05
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_WINY2_27 -
Data type: T185V-DYBS1Y2Default: 12
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_STELLEN - Number of characters
Data type: QAMV-STELLENOptional: Yes
Call by Reference: No ( called with pass by value option)
I_MERKNR -
Data type: QAMV-MERKNROptional: Yes
Call by Reference: No ( called with pass by value option)
I_DATA_ONLY_SHOW -
Data type: QM00-QKZDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for QELA_PROCESS_RESULTS_SHOW
E_COCQ -
Data type: RCOCQOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_ENTRIES_FOUND - No entries found
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_ENTRY_SELECTED - No entry selected
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for QELA_PROCESS_RESULTS_SHOW 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_e_cocq | TYPE RCOCQ, " | |||
| lv_i_prueflos | TYPE QALS-PRUEFLOS, " | |||
| lv_no_entries_found | TYPE QALS, " | |||
| lv_i_vornr | TYPE QAQEE-VORNR, " '9999' | |||
| lv_no_entry_selected | TYPE QAQEE, " | |||
| lv_i_winx1_27 | TYPE T185V-DYBS1X1, " 08 | |||
| lv_i_winx2_27 | TYPE T185V-DYBS1X2, " 75 | |||
| lv_i_winy1_27 | TYPE T185V-DYBS1Y1, " 05 | |||
| lv_i_winy2_27 | TYPE T185V-DYBS1Y2, " 12 | |||
| lv_i_stellen | TYPE QAMV-STELLEN, " | |||
| lv_i_merknr | TYPE QAMV-MERKNR, " | |||
| lv_i_data_only_show | TYPE QM00-QKZ. " SPACE |
|   CALL FUNCTION 'QELA_PROCESS_RESULTS_SHOW' "NOTRANSL: Listanzeige von Prozeßrückmeldungen zum Prüflos aus PP-PI-Schnit |
| EXPORTING | ||
| I_PRUEFLOS | = lv_i_prueflos | |
| I_VORNR | = lv_i_vornr | |
| I_WINX1_27 | = lv_i_winx1_27 | |
| I_WINX2_27 | = lv_i_winx2_27 | |
| I_WINY1_27 | = lv_i_winy1_27 | |
| I_WINY2_27 | = lv_i_winy2_27 | |
| I_STELLEN | = lv_i_stellen | |
| I_MERKNR | = lv_i_merknr | |
| I_DATA_ONLY_SHOW | = lv_i_data_only_show | |
| IMPORTING | ||
| E_COCQ | = lv_e_cocq | |
| EXCEPTIONS | ||
| NO_ENTRIES_FOUND = 1 | ||
| NO_ENTRY_SELECTED = 2 | ||
| . " QELA_PROCESS_RESULTS_SHOW | ||
ABAP code using 7.40 inline data declarations to call FM QELA_PROCESS_RESULTS_SHOW
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 PRUEFLOS FROM QALS INTO @DATA(ld_i_prueflos). | ||||
| "SELECT single VORNR FROM QAQEE INTO @DATA(ld_i_vornr). | ||||
| DATA(ld_i_vornr) | = '9999'. | |||
| "SELECT single DYBS1X1 FROM T185V INTO @DATA(ld_i_winx1_27). | ||||
| DATA(ld_i_winx1_27) | = 08. | |||
| "SELECT single DYBS1X2 FROM T185V INTO @DATA(ld_i_winx2_27). | ||||
| DATA(ld_i_winx2_27) | = 75. | |||
| "SELECT single DYBS1Y1 FROM T185V INTO @DATA(ld_i_winy1_27). | ||||
| DATA(ld_i_winy1_27) | = 05. | |||
| "SELECT single DYBS1Y2 FROM T185V INTO @DATA(ld_i_winy2_27). | ||||
| DATA(ld_i_winy2_27) | = 12. | |||
| "SELECT single STELLEN FROM QAMV INTO @DATA(ld_i_stellen). | ||||
| "SELECT single MERKNR FROM QAMV INTO @DATA(ld_i_merknr). | ||||
| "SELECT single QKZ FROM QM00 INTO @DATA(ld_i_data_only_show). | ||||
| DATA(ld_i_data_only_show) | = ' '. | |||
Search for further information about these or an SAP related objects