SAP QIBP_INSPPOINT_CREATEFROMDATA Function Module for Create Inspection Point
QIBP_INSPPOINT_CREATEFROMDATA is a standard qibp insppoint createfromdata SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Create Inspection Point 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 insppoint createfromdata FM, simply by entering the name QIBP_INSPPOINT_CREATEFROMDATA 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_INSPPOINT_CREATEFROMDATA 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_INSPPOINT_CREATEFROMDATA'"Create Inspection Point.
EXPORTING
DATA = "
* EXTERNAL_COMMIT = 'X' "
* CONFIRMATION_MODE = "Confirmation Mode
IMPORTING
INSPLOT = "Inspection Lot Number
INSPOPER = "Inspection Lot Operation Number
INSPPOINT = "Inspection point number
RETURN2 = "Return Parameter(s)
TABLES
* QMIDI_ERRORS = "
* RETURNTABLE = "Return Parameter(s)
EXCEPTIONS
WRONG_INSPECTION_LOT = 1 WRONG_OPERATION = 2 QM_IDI_ERROR = 3
IMPORTING Parameters details for QIBP_INSPPOINT_CREATEFROMDATA
DATA -
Data type: BAPI2045L4Optional: No
Call by Reference: No ( called with pass by value option)
EXTERNAL_COMMIT -
Data type: QM00-QKZDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
CONFIRMATION_MODE - Confirmation Mode
Data type: QEIFRUECKMODOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for QIBP_INSPPOINT_CREATEFROMDATA
INSPLOT - Inspection Lot Number
Data type: QALS-PRUEFLOSOptional: No
Call by Reference: No ( called with pass by value option)
INSPOPER - Inspection Lot Operation Number
Data type: QAPO-VORNROptional: No
Call by Reference: No ( called with pass by value option)
INSPPOINT - Inspection point number
Data type: QAPP-PROBENROptional: No
Call by Reference: No ( called with pass by value option)
RETURN2 - Return Parameter(s)
Data type: BAPIRET2Optional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for QIBP_INSPPOINT_CREATEFROMDATA
QMIDI_ERRORS -
Data type: QIERROptional: Yes
Call by Reference: Yes
RETURNTABLE - Return Parameter(s)
Data type: BAPIRET2Optional: Yes
Call by Reference: Yes
EXCEPTIONS details
WRONG_INSPECTION_LOT - Error while reading inspection lot
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
WRONG_OPERATION -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
QM_IDI_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for QIBP_INSPPOINT_CREATEFROMDATA 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_data | TYPE BAPI2045L4, " | |||
| lv_insplot | TYPE QALS-PRUEFLOS, " | |||
| lt_qmidi_errors | TYPE STANDARD TABLE OF QIERR, " | |||
| lv_wrong_inspection_lot | TYPE QIERR, " | |||
| lv_inspoper | TYPE QAPO-VORNR, " | |||
| lt_returntable | TYPE STANDARD TABLE OF BAPIRET2, " | |||
| lv_external_commit | TYPE QM00-QKZ, " 'X' | |||
| lv_wrong_operation | TYPE QM00, " | |||
| lv_insppoint | TYPE QAPP-PROBENR, " | |||
| lv_qm_idi_error | TYPE QAPP, " | |||
| lv_confirmation_mode | TYPE QEIFRUECKMOD, " | |||
| lv_return2 | TYPE BAPIRET2. " |
|   CALL FUNCTION 'QIBP_INSPPOINT_CREATEFROMDATA' "Create Inspection Point |
| EXPORTING | ||
| DATA | = lv_data | |
| EXTERNAL_COMMIT | = lv_external_commit | |
| CONFIRMATION_MODE | = lv_confirmation_mode | |
| IMPORTING | ||
| INSPLOT | = lv_insplot | |
| INSPOPER | = lv_inspoper | |
| INSPPOINT | = lv_insppoint | |
| RETURN2 | = lv_return2 | |
| TABLES | ||
| QMIDI_ERRORS | = lt_qmidi_errors | |
| RETURNTABLE | = lt_returntable | |
| EXCEPTIONS | ||
| WRONG_INSPECTION_LOT = 1 | ||
| WRONG_OPERATION = 2 | ||
| QM_IDI_ERROR = 3 | ||
| . " QIBP_INSPPOINT_CREATEFROMDATA | ||
ABAP code using 7.40 inline data declarations to call FM QIBP_INSPPOINT_CREATEFROMDATA
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_insplot). | ||||
| "SELECT single VORNR FROM QAPO INTO @DATA(ld_inspoper). | ||||
| "SELECT single QKZ FROM QM00 INTO @DATA(ld_external_commit). | ||||
| DATA(ld_external_commit) | = 'X'. | |||
| "SELECT single PROBENR FROM QAPP INTO @DATA(ld_insppoint). | ||||
Search for further information about these or an SAP related objects