SAP RLRPPL_A_GET_OPEN_QUANS_1 Function Module for NOTRANSL: Ermittlung der offenen Bestell- / Anliefermengen zu einem Konto
RLRPPL_A_GET_OPEN_QUANS_1 is a standard rlrppl a get open quans 1 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: Ermittlung der offenen Bestell- / Anliefermengen zu einem Konto 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 rlrppl a get open quans 1 FM, simply by entering the name RLRPPL_A_GET_OPEN_QUANS_1 into the relevant SAP transaction such as SE37 or SE38.
Function Group: RL_REORD_POINT_PLANING_AP
Program Name: SAPLRL_REORD_POINT_PLANING_AP
Main Program: SAPLRL_REORD_POINT_PLANING_AP
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RLRPPL_A_GET_OPEN_QUANS_1 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 'RLRPPL_A_GET_OPEN_QUANS_1'"NOTRANSL: Ermittlung der offenen Bestell- / Anliefermengen zu einem Konto.
EXPORTING
I_ACCTNO = "Returnable packaging account
IMPORTING
E_PURCH_ORDQUAN = "Open Quantity for Account
E_INBOUND_DELIVQUAN = "Open Quantity for Account
E_MEINS = "Base Unit of Measure
EXCEPTIONS
X_INTERFACE_MISMATCH = 1 X_ACCT_NOT_FOUND = 2 X_ERROR_CONV_QUANTITY = 3 X_NO_OPEN_QUANS_POSSIBLE = 4
IMPORTING Parameters details for RLRPPL_A_GET_OPEN_QUANS_1
I_ACCTNO - Returnable packaging account
Data type: RL_ACCTNOOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for RLRPPL_A_GET_OPEN_QUANS_1
E_PURCH_ORDQUAN - Open Quantity for Account
Data type: RL_OPENQUANOptional: No
Call by Reference: No ( called with pass by value option)
E_INBOUND_DELIVQUAN - Open Quantity for Account
Data type: RL_OPENQUANOptional: No
Call by Reference: No ( called with pass by value option)
E_MEINS - Base Unit of Measure
Data type: MEINSOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
X_INTERFACE_MISMATCH - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Optional: No
Call by Reference: Yes
X_ACCT_NOT_FOUND - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Optional: No
Call by Reference: Yes
X_ERROR_CONV_QUANTITY - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Optional: No
Call by Reference: Yes
X_NO_OPEN_QUANS_POSSIBLE - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for RLRPPL_A_GET_OPEN_QUANS_1 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_acctno | TYPE RL_ACCTNO, " | |||
| lv_e_purch_ordquan | TYPE RL_OPENQUAN, " | |||
| lv_x_interface_mismatch | TYPE RL_OPENQUAN, " | |||
| lv_x_acct_not_found | TYPE RL_OPENQUAN, " | |||
| lv_e_inbound_delivquan | TYPE RL_OPENQUAN, " | |||
| lv_e_meins | TYPE MEINS, " | |||
| lv_x_error_conv_quantity | TYPE MEINS, " | |||
| lv_x_no_open_quans_possible | TYPE MEINS. " |
|   CALL FUNCTION 'RLRPPL_A_GET_OPEN_QUANS_1' "NOTRANSL: Ermittlung der offenen Bestell- / Anliefermengen zu einem Konto |
| EXPORTING | ||
| I_ACCTNO | = lv_i_acctno | |
| IMPORTING | ||
| E_PURCH_ORDQUAN | = lv_e_purch_ordquan | |
| E_INBOUND_DELIVQUAN | = lv_e_inbound_delivquan | |
| E_MEINS | = lv_e_meins | |
| EXCEPTIONS | ||
| X_INTERFACE_MISMATCH = 1 | ||
| X_ACCT_NOT_FOUND = 2 | ||
| X_ERROR_CONV_QUANTITY = 3 | ||
| X_NO_OPEN_QUANS_POSSIBLE = 4 | ||
| . " RLRPPL_A_GET_OPEN_QUANS_1 | ||
ABAP code using 7.40 inline data declarations to call FM RLRPPL_A_GET_OPEN_QUANS_1
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