SAP FIVN_BUPA_MEMORY_GET Function Module for









FIVN_BUPA_MEMORY_GET is a standard fivn bupa memory get SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 fivn bupa memory get FM, simply by entering the name FIVN_BUPA_MEMORY_GET into the relevant SAP transaction such as SE37 or SE38.

Function Group: FLBP_DEPRECATED2005_BDTC
Program Name: SAPLFLBP_DEPRECATED2005_BDTC
Main Program: SAPLFLBPC_LOVN
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function FIVN_BUPA_MEMORY_GET 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 'FIVN_BUPA_MEMORY_GET'"
EXPORTING
I_LIFNR = "
* I_BUKRS = "
* I_XWA = ' ' "

IMPORTING
E_LFA1 = "
E_LFB1 = "
E_LFB1_MEM = "

TABLES
* T_LFB1 = "
* T_LFAS = "
* T_LFAS_OLD = "
* T_LFAT = "
* T_LFAT_OLD = "
* T_LFB1_MEM = "

EXCEPTIONS
WRONG_PARAMETERS = 1 NO_DATA_FOUND = 2
.



IMPORTING Parameters details for FIVN_BUPA_MEMORY_GET

I_LIFNR -

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

I_BUKRS -

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

I_XWA -

Data type: BOOLE-BOOLE
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for FIVN_BUPA_MEMORY_GET

E_LFA1 -

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

E_LFB1 -

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

E_LFB1_MEM -

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

TABLES Parameters details for FIVN_BUPA_MEMORY_GET

T_LFB1 -

Data type: LFB1
Optional: Yes
Call by Reference: Yes

T_LFAS -

Data type: LFAS
Optional: Yes
Call by Reference: Yes

T_LFAS_OLD -

Data type: LFAS
Optional: Yes
Call by Reference: Yes

T_LFAT -

Data type: LFAT
Optional: Yes
Call by Reference: Yes

T_LFAT_OLD -

Data type: LFAT
Optional: Yes
Call by Reference: Yes

T_LFB1_MEM -

Data type: FLVN_LFB1_MEM
Optional: Yes
Call by Reference: Yes

EXCEPTIONS details

WRONG_PARAMETERS -

Data type:
Optional: No
Call by Reference: Yes

NO_DATA_FOUND -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for FIVN_BUPA_MEMORY_GET 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_lfa1  TYPE LFA1, "   
lt_t_lfb1  TYPE STANDARD TABLE OF LFB1, "   
lv_i_lifnr  TYPE LIFNR, "   
lv_wrong_parameters  TYPE LIFNR, "   
lv_e_lfb1  TYPE LFB1, "   
lt_t_lfas  TYPE STANDARD TABLE OF LFAS, "   
lv_i_bukrs  TYPE BUKRS, "   
lv_no_data_found  TYPE BUKRS, "   
lv_i_xwa  TYPE BOOLE-BOOLE, "   SPACE
lv_e_lfb1_mem  TYPE FLVN_LFB1_MEM, "   
lt_t_lfas_old  TYPE STANDARD TABLE OF LFAS, "   
lt_t_lfat  TYPE STANDARD TABLE OF LFAT, "   
lt_t_lfat_old  TYPE STANDARD TABLE OF LFAT, "   
lt_t_lfb1_mem  TYPE STANDARD TABLE OF FLVN_LFB1_MEM. "   

  CALL FUNCTION 'FIVN_BUPA_MEMORY_GET'  "
    EXPORTING
         I_LIFNR = lv_i_lifnr
         I_BUKRS = lv_i_bukrs
         I_XWA = lv_i_xwa
    IMPORTING
         E_LFA1 = lv_e_lfa1
         E_LFB1 = lv_e_lfb1
         E_LFB1_MEM = lv_e_lfb1_mem
    TABLES
         T_LFB1 = lt_t_lfb1
         T_LFAS = lt_t_lfas
         T_LFAS_OLD = lt_t_lfas_old
         T_LFAT = lt_t_lfat
         T_LFAT_OLD = lt_t_lfat_old
         T_LFB1_MEM = lt_t_lfb1_mem
    EXCEPTIONS
        WRONG_PARAMETERS = 1
        NO_DATA_FOUND = 2
. " FIVN_BUPA_MEMORY_GET




ABAP code using 7.40 inline data declarations to call FM FIVN_BUPA_MEMORY_GET

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 BOOLE FROM BOOLE INTO @DATA(ld_i_xwa).
DATA(ld_i_xwa) = ' '.
 
 
 
 
 
 


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!