SAP BUP_MEMORY_GET_ALL Function Module for









BUP_MEMORY_GET_ALL is a standard bup memory get all 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 bup memory get all FM, simply by entering the name BUP_MEMORY_GET_ALL into the relevant SAP transaction such as SE37 or SE38.

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



Function BUP_MEMORY_GET_ALL 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 'BUP_MEMORY_GET_ALL'"
TABLES
* T_BUT000 = "CBP: General data plus status information
* T_BUT000_OLD = "
* T_BUT0BK_OLD = "
* T_BUT100_OLD = "
* T_BUT0CC_OLD = "
* T_BUT0IS_OLD = "
* T_BUT0ID_OLD = "
* T_BUT020_OLD = "
* T_BUT021_FS_OLD = "
* T_BUT000_TEMP = "
* T_BUT0BK = "BP: Bank details
* T_BUT100 = "BP: Roles
* T_BUT0CC = "BP: Payment Cards
* T_BUT0IS = "BP: Industries
* T_BUT0ID = "BP: ID Numbers
* T_BUT020 = "
* T_BUT021_FS = "
.



TABLES Parameters details for BUP_MEMORY_GET_ALL

T_BUT000 - CBP: General data plus status information

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

T_BUT000_OLD -

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

T_BUT0BK_OLD -

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

T_BUT100_OLD -

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

T_BUT0CC_OLD -

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

T_BUT0IS_OLD -

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

T_BUT0ID_OLD -

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

T_BUT020_OLD -

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

T_BUT021_FS_OLD -

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

T_BUT000_TEMP -

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

T_BUT0BK - BP: Bank details

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

T_BUT100 - BP: Roles

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

T_BUT0CC - BP: Payment Cards

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

T_BUT0IS - BP: Industries

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

T_BUT0ID - BP: ID Numbers

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

T_BUT020 -

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

T_BUT021_FS -

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

Copy and paste ABAP code example for BUP_MEMORY_GET_ALL 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_t_but000  TYPE STANDARD TABLE OF BUS000___I, "   
lt_t_but000_old  TYPE STANDARD TABLE OF BUS000___I, "   
lt_t_but0bk_old  TYPE STANDARD TABLE OF BUT0BK, "   
lt_t_but100_old  TYPE STANDARD TABLE OF BUT100, "   
lt_t_but0cc_old  TYPE STANDARD TABLE OF BUT0CC, "   
lt_t_but0is_old  TYPE STANDARD TABLE OF BUT0IS, "   
lt_t_but0id_old  TYPE STANDARD TABLE OF BUT0ID, "   
lt_t_but020_old  TYPE STANDARD TABLE OF BUS020___I, "   
lt_t_but021_fs_old  TYPE STANDARD TABLE OF BUS021_FS_I, "   
lt_t_but000_temp  TYPE STANDARD TABLE OF BUS000___I, "   
lt_t_but0bk  TYPE STANDARD TABLE OF BUT0BK, "   
lt_t_but100  TYPE STANDARD TABLE OF BUT100, "   
lt_t_but0cc  TYPE STANDARD TABLE OF BUT0CC, "   
lt_t_but0is  TYPE STANDARD TABLE OF BUT0IS, "   
lt_t_but0id  TYPE STANDARD TABLE OF BUT0ID, "   
lt_t_but020  TYPE STANDARD TABLE OF BUS020___I, "   
lt_t_but021_fs  TYPE STANDARD TABLE OF BUS021_FS_I. "   

  CALL FUNCTION 'BUP_MEMORY_GET_ALL'  "
    TABLES
         T_BUT000 = lt_t_but000
         T_BUT000_OLD = lt_t_but000_old
         T_BUT0BK_OLD = lt_t_but0bk_old
         T_BUT100_OLD = lt_t_but100_old
         T_BUT0CC_OLD = lt_t_but0cc_old
         T_BUT0IS_OLD = lt_t_but0is_old
         T_BUT0ID_OLD = lt_t_but0id_old
         T_BUT020_OLD = lt_t_but020_old
         T_BUT021_FS_OLD = lt_t_but021_fs_old
         T_BUT000_TEMP = lt_t_but000_temp
         T_BUT0BK = lt_t_but0bk
         T_BUT100 = lt_t_but100
         T_BUT0CC = lt_t_but0cc
         T_BUT0IS = lt_t_but0is
         T_BUT0ID = lt_t_but0id
         T_BUT020 = lt_t_but020
         T_BUT021_FS = lt_t_but021_fs
. " BUP_MEMORY_GET_ALL




ABAP code using 7.40 inline data declarations to call FM BUP_MEMORY_GET_ALL

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



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!