SAP QIBP_INSPLOT_GETLIST Function Module for NOTRANSL: GetList für Prüflose
QIBP_INSPLOT_GETLIST is a standard qibp insplot getlist 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: GetList für Prüflose 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 qibp insplot getlist FM, simply by entering the name QIBP_INSPLOT_GETLIST into the relevant SAP transaction such as SE37 or SE38.
Function Group: QIBP
Program Name: SAPLQIBP
Main Program: SAPLQIBP
Appliation area: Q
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function QIBP_INSPLOT_GETLIST 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 'QIBP_INSPLOT_GETLIST'"NOTRANSL: GetList für Prüflose.
EXPORTING
I_QALS_SEL = "Generated Table for View
* I_MAX_ROWS = 100 "ABAP System Field: Edited Database Table Rows
* I_SELID = ' ' "Selection ID
* I_STAT_ERO = 'X' "Inspection Lots with Status 'Created'
* I_STAT_FREI = 'X' "Inspection Lots with Status 'Released'
* I_STAT_VE = 'X' "Inspection Lots with Status 'Usage Decision Made'
TABLES
T_QALS_TAB = "View of inspection lot with usage decision
IMPORTING Parameters details for QIBP_INSPLOT_GETLIST
I_QALS_SEL - Generated Table for View
Data type: V_QIBP_QALS_SELOptional: No
Call by Reference: No ( called with pass by value option)
I_MAX_ROWS - ABAP System Field: Edited Database Table Rows
Data type: SY-DBCNTDefault: 100
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_SELID - Selection ID
Data type: TJ48-SELIDDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_STAT_ERO - Inspection Lots with Status 'Created'
Data type: RQELA-STAT_ERODefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_STAT_FREI - Inspection Lots with Status 'Released'
Data type: RQELA-STAT_FREIDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_STAT_VE - Inspection Lots with Status 'Usage Decision Made'
Data type: RQELA-STAT_VEDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for QIBP_INSPLOT_GETLIST
T_QALS_TAB - View of inspection lot with usage decision
Data type: QALS_QAVEOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for QIBP_INSPLOT_GETLIST 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_i_qals_sel | TYPE V_QIBP_QALS_SEL, " | |||
| lt_t_qals_tab | TYPE STANDARD TABLE OF QALS_QAVE, " | |||
| lv_i_max_rows | TYPE SY-DBCNT, " 100 | |||
| lv_i_selid | TYPE TJ48-SELID, " SPACE | |||
| lv_i_stat_ero | TYPE RQELA-STAT_ERO, " 'X' | |||
| lv_i_stat_frei | TYPE RQELA-STAT_FREI, " 'X' | |||
| lv_i_stat_ve | TYPE RQELA-STAT_VE. " 'X' |
|   CALL FUNCTION 'QIBP_INSPLOT_GETLIST' "NOTRANSL: GetList für Prüflose |
| EXPORTING | ||
| I_QALS_SEL | = lv_i_qals_sel | |
| I_MAX_ROWS | = lv_i_max_rows | |
| I_SELID | = lv_i_selid | |
| I_STAT_ERO | = lv_i_stat_ero | |
| I_STAT_FREI | = lv_i_stat_frei | |
| I_STAT_VE | = lv_i_stat_ve | |
| TABLES | ||
| T_QALS_TAB | = lt_t_qals_tab | |
| . " QIBP_INSPLOT_GETLIST | ||
ABAP code using 7.40 inline data declarations to call FM QIBP_INSPLOT_GETLIST
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 DBCNT FROM SY INTO @DATA(ld_i_max_rows). | ||||
| DATA(ld_i_max_rows) | = 100. | |||
| "SELECT single SELID FROM TJ48 INTO @DATA(ld_i_selid). | ||||
| DATA(ld_i_selid) | = ' '. | |||
| "SELECT single STAT_ERO FROM RQELA INTO @DATA(ld_i_stat_ero). | ||||
| DATA(ld_i_stat_ero) | = 'X'. | |||
| "SELECT single STAT_FREI FROM RQELA INTO @DATA(ld_i_stat_frei). | ||||
| DATA(ld_i_stat_frei) | = 'X'. | |||
| "SELECT single STAT_VE FROM RQELA INTO @DATA(ld_i_stat_ve). | ||||
| DATA(ld_i_stat_ve) | = 'X'. | |||
Search for further information about these or an SAP related objects