SAP MM_ARRANG_READ_EBABP Function Module for NOTRANSL: Liest EBABP Eintraege zu Absprache / AbrLauf / Kondition









MM_ARRANG_READ_EBABP is a standard mm arrang read ebabp 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: Liest EBABP Eintraege zu Absprache / AbrLauf / Kondition 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 mm arrang read ebabp FM, simply by entering the name MM_ARRANG_READ_EBABP into the relevant SAP transaction such as SE37 or SE38.

Function Group: WN60
Program Name: SAPLWN60
Main Program: SAPLWN60
Appliation area: M
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function MM_ARRANG_READ_EBABP 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 'MM_ARRANG_READ_EBABP'"NOTRANSL: Liest EBABP Eintraege zu Absprache / AbrLauf / Kondition
EXPORTING
I_KNUMA = "DE-EN-LANG-SWITCH-NO-TRANSLATION
I_ABRLF = "DE-EN-LANG-SWITCH-NO-TRANSLATION
I_KNUMH = "Condition Record Number
I_KOPOS = "Sequential number of the condition
* I_BUFFER_REFRESH = "
* I_BYPASSING_BUFFER = "

IMPORTING
E_EBABP = "DE-EN-LANG-SWITCH-NO-TRANSLATION

EXCEPTIONS
ENTRY_NOT_FOUND = 1 FATAL_ERROR = 2
.



IMPORTING Parameters details for MM_ARRANG_READ_EBABP

I_KNUMA - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: EBABP-KNUMA
Optional: No
Call by Reference: No ( called with pass by value option)

I_ABRLF - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: EBABP-ABRLF
Optional: No
Call by Reference: No ( called with pass by value option)

I_KNUMH - Condition Record Number

Data type: EBABP-KNUMH
Optional: No
Call by Reference: No ( called with pass by value option)

I_KOPOS - Sequential number of the condition

Data type: EBABP-KOPOS
Optional: No
Call by Reference: No ( called with pass by value option)

I_BUFFER_REFRESH -

Data type: C
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_BYPASSING_BUFFER -

Data type: C
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for MM_ARRANG_READ_EBABP

E_EBABP - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type: EBABP
Optional: No
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

ENTRY_NOT_FOUND - Entry not found

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

FATAL_ERROR -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for MM_ARRANG_READ_EBABP 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_ebabp  TYPE EBABP, "   
lv_i_knuma  TYPE EBABP-KNUMA, "   
lv_entry_not_found  TYPE EBABP, "   
lv_i_abrlf  TYPE EBABP-ABRLF, "   
lv_fatal_error  TYPE EBABP, "   
lv_i_knumh  TYPE EBABP-KNUMH, "   
lv_i_kopos  TYPE EBABP-KOPOS, "   
lv_i_buffer_refresh  TYPE C, "   
lv_i_bypassing_buffer  TYPE C. "   

  CALL FUNCTION 'MM_ARRANG_READ_EBABP'  "NOTRANSL: Liest EBABP Eintraege zu Absprache / AbrLauf / Kondition
    EXPORTING
         I_KNUMA = lv_i_knuma
         I_ABRLF = lv_i_abrlf
         I_KNUMH = lv_i_knumh
         I_KOPOS = lv_i_kopos
         I_BUFFER_REFRESH = lv_i_buffer_refresh
         I_BYPASSING_BUFFER = lv_i_bypassing_buffer
    IMPORTING
         E_EBABP = lv_e_ebabp
    EXCEPTIONS
        ENTRY_NOT_FOUND = 1
        FATAL_ERROR = 2
. " MM_ARRANG_READ_EBABP




ABAP code using 7.40 inline data declarations to call FM MM_ARRANG_READ_EBABP

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 KNUMA FROM EBABP INTO @DATA(ld_i_knuma).
 
 
"SELECT single ABRLF FROM EBABP INTO @DATA(ld_i_abrlf).
 
 
"SELECT single KNUMH FROM EBABP INTO @DATA(ld_i_knumh).
 
"SELECT single KOPOS FROM EBABP INTO @DATA(ld_i_kopos).
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!