SAP QAPO_INSPLOT_CONVERT Function Module for NOTRANSL: Konvertierung Prüflos in CIF_R3LOT
QAPO_INSPLOT_CONVERT is a standard qapo insplot convert 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: Konvertierung Prüflos in CIF_R3LOT 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 qapo insplot convert FM, simply by entering the name QAPO_INSPLOT_CONVERT into the relevant SAP transaction such as SE37 or SE38.
Function Group: QAPO
Program Name: SAPLQAPO
Main Program: SAPLQAPO
Appliation area: Q
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function QAPO_INSPLOT_CONVERT 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 'QAPO_INSPLOT_CONVERT'"NOTRANSL: Konvertierung Prüflos in CIF_R3LOT.
TABLES
IT_QALS = "Inspection Lots
* IT_QALS_OLD = "DE-EN-LANG-SWITCH-NO-TRANSLATION
IT_STATUS = "Status
* IT_STATUS_OLD = "Previous Status
ET_TARGET_SYSTEMS = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* ET_TARGET_SYSTEMS_OLD = "DE-EN-LANG-SWITCH-NO-TRANSLATION
ET_R3INSPLOT = "DE-EN-LANG-SWITCH-NO-TRANSLATION
* ET_R3INSPLOTX = "DE-EN-LANG-SWITCH-NO-TRANSLATION
Customer Function user exits
Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.EXIT_SAPLQAPO_001 Insp. Lot Transfer to APO: Control Quantity Relevance (Initial + CCR Tool)
EXIT_SAPLQAPO_002 Inspection Lot Transfer to APO: Change to CIF R/3 Data
EXIT_SAPLQAPO_003 Inspection Lot Transfer to APO: Change of PASTRZEIT and PAENDZEIT
TABLES Parameters details for QAPO_INSPLOT_CONVERT
IT_QALS - Inspection Lots
Data type: QALSOptional: No
Call by Reference: No ( called with pass by value option)
IT_QALS_OLD - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: QALSOptional: Yes
Call by Reference: No ( called with pass by value option)
IT_STATUS - Status
Data type: CIF_LOTSTOptional: No
Call by Reference: No ( called with pass by value option)
IT_STATUS_OLD - Previous Status
Data type: CIF_LOTSTOptional: Yes
Call by Reference: No ( called with pass by value option)
ET_TARGET_SYSTEMS - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: CIF_DESLOTOptional: No
Call by Reference: No ( called with pass by value option)
ET_TARGET_SYSTEMS_OLD - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: CIF_DESLOTOptional: Yes
Call by Reference: No ( called with pass by value option)
ET_R3INSPLOT - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: CIF_R3LOTOptional: No
Call by Reference: Yes
ET_R3INSPLOTX - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: CIF_R3LOTXOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for QAPO_INSPLOT_CONVERT 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_qals | TYPE STANDARD TABLE OF QALS, " | |||
| lt_it_qals_old | TYPE STANDARD TABLE OF QALS, " | |||
| lt_it_status | TYPE STANDARD TABLE OF CIF_LOTST, " | |||
| lt_it_status_old | TYPE STANDARD TABLE OF CIF_LOTST, " | |||
| lt_et_target_systems | TYPE STANDARD TABLE OF CIF_DESLOT, " | |||
| lt_et_target_systems_old | TYPE STANDARD TABLE OF CIF_DESLOT, " | |||
| lt_et_r3insplot | TYPE STANDARD TABLE OF CIF_R3LOT, " | |||
| lt_et_r3insplotx | TYPE STANDARD TABLE OF CIF_R3LOTX. " |
|   CALL FUNCTION 'QAPO_INSPLOT_CONVERT' "NOTRANSL: Konvertierung Prüflos in CIF_R3LOT |
| TABLES | ||
| IT_QALS | = lt_it_qals | |
| IT_QALS_OLD | = lt_it_qals_old | |
| IT_STATUS | = lt_it_status | |
| IT_STATUS_OLD | = lt_it_status_old | |
| ET_TARGET_SYSTEMS | = lt_et_target_systems | |
| ET_TARGET_SYSTEMS_OLD | = lt_et_target_systems_old | |
| ET_R3INSPLOT | = lt_et_r3insplot | |
| ET_R3INSPLOTX | = lt_et_r3insplotx | |
| . " QAPO_INSPLOT_CONVERT | ||
ABAP code using 7.40 inline data declarations to call FM QAPO_INSPLOT_CONVERT
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.Search for further information about these or an SAP related objects