SAP REMD_BUSINESS_ENTITY_MAINTAIN Function Module for









REMD_BUSINESS_ENTITY_MAINTAIN is a standard remd business entity maintain 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 remd business entity maintain FM, simply by entering the name REMD_BUSINESS_ENTITY_MAINTAIN into the relevant SAP transaction such as SE37 or SE38.

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



Function REMD_BUSINESS_ENTITY_MAINTAIN 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 'REMD_BUSINESS_ENTITY_MAINTAIN'"
EXPORTING
I_VIOB01 = "
* I_VZSORT = "
* I_SANO1 = "
* I_VIOB01_DB = "
* I_SANO1_DB = "
* I_VZSORT_DB = "
I_AKTYP = "
* I_SAVE = ' ' "
* I_COMMIT_AND_WAIT = ' ' "

IMPORTING
E_ERROR_OCCURED = "
E_VIOB01 = "

TABLES
* IT_VZGPO = "
* IT_VIOB38_DB = "
* IT_VIOB39_DB = "
ET_MSG = "
* IT_VIEIGE = "
* IT_VIOB07 = "
* IT_VIOB38 = "
* IT_VIOB39 = "
* IT_VIOB42 = "
* IT_VZGPO_DB = "
* IT_VIEIGE_DB = "
* IT_VIOB07_DB = "

EXCEPTIONS
WRONG_CALL = 1 INTERNAL_ERROR = 2
.



IMPORTING Parameters details for REMD_BUSINESS_ENTITY_MAINTAIN

I_VIOB01 -

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

I_VZSORT -

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

I_SANO1 -

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

I_VIOB01_DB -

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

I_SANO1_DB -

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

I_VZSORT_DB -

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

I_AKTYP -

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

I_SAVE -

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

I_COMMIT_AND_WAIT -

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

EXPORTING Parameters details for REMD_BUSINESS_ENTITY_MAINTAIN

E_ERROR_OCCURED -

Data type: BOOLE-BOOLE
Optional: No
Call by Reference: Yes

E_VIOB01 -

Data type: VIOB01
Optional: No
Call by Reference: Yes

TABLES Parameters details for REMD_BUSINESS_ENTITY_MAINTAIN

IT_VZGPO -

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

IT_VIOB38_DB -

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

IT_VIOB39_DB -

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

ET_MSG -

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

IT_VIEIGE -

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

IT_VIOB07 -

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

IT_VIOB38 -

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

IT_VIOB39 -

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

IT_VIOB42 -

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

IT_VZGPO_DB -

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

IT_VIEIGE_DB -

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

IT_VIOB07_DB -

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

EXCEPTIONS details

WRONG_CALL -

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

INTERNAL_ERROR -

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

Copy and paste ABAP code example for REMD_BUSINESS_ENTITY_MAINTAIN 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_vzgpo  TYPE STANDARD TABLE OF VZGPO, "   
lv_i_viob01  TYPE VIOB01, "   
lv_wrong_call  TYPE VIOB01, "   
lv_e_error_occured  TYPE BOOLE-BOOLE, "   
lt_it_viob38_db  TYPE STANDARD TABLE OF VIOB38, "   
lt_it_viob39_db  TYPE STANDARD TABLE OF VIOB39, "   
lt_et_msg  TYPE STANDARD TABLE OF SYMSG, "   
lv_e_viob01  TYPE VIOB01, "   
lv_i_vzsort  TYPE VZSORT, "   
lt_it_vieige  TYPE STANDARD TABLE OF VIEIGE, "   
lv_internal_error  TYPE VIEIGE, "   
lv_i_sano1  TYPE SANO1, "   
lt_it_viob07  TYPE STANDARD TABLE OF VIOB07, "   
lt_it_viob38  TYPE STANDARD TABLE OF VIOB38, "   
lv_i_viob01_db  TYPE VIOB01, "   
lt_it_viob39  TYPE STANDARD TABLE OF VIOB39, "   
lv_i_sano1_db  TYPE SANO1, "   
lt_it_viob42  TYPE STANDARD TABLE OF VIOB42, "   
lv_i_vzsort_db  TYPE VZSORT, "   
lv_i_aktyp  TYPE BU_AKTYP, "   
lt_it_vzgpo_db  TYPE STANDARD TABLE OF VZGPO, "   
lv_i_save  TYPE XFELD, "   ' '
lt_it_vieige_db  TYPE STANDARD TABLE OF VIEIGE, "   
lt_it_viob07_db  TYPE STANDARD TABLE OF VIOB07, "   
lv_i_commit_and_wait  TYPE XFELD. "   ' '

  CALL FUNCTION 'REMD_BUSINESS_ENTITY_MAINTAIN'  "
    EXPORTING
         I_VIOB01 = lv_i_viob01
         I_VZSORT = lv_i_vzsort
         I_SANO1 = lv_i_sano1
         I_VIOB01_DB = lv_i_viob01_db
         I_SANO1_DB = lv_i_sano1_db
         I_VZSORT_DB = lv_i_vzsort_db
         I_AKTYP = lv_i_aktyp
         I_SAVE = lv_i_save
         I_COMMIT_AND_WAIT = lv_i_commit_and_wait
    IMPORTING
         E_ERROR_OCCURED = lv_e_error_occured
         E_VIOB01 = lv_e_viob01
    TABLES
         IT_VZGPO = lt_it_vzgpo
         IT_VIOB38_DB = lt_it_viob38_db
         IT_VIOB39_DB = lt_it_viob39_db
         ET_MSG = lt_et_msg
         IT_VIEIGE = lt_it_vieige
         IT_VIOB07 = lt_it_viob07
         IT_VIOB38 = lt_it_viob38
         IT_VIOB39 = lt_it_viob39
         IT_VIOB42 = lt_it_viob42
         IT_VZGPO_DB = lt_it_vzgpo_db
         IT_VIEIGE_DB = lt_it_vieige_db
         IT_VIOB07_DB = lt_it_viob07_db
    EXCEPTIONS
        WRONG_CALL = 1
        INTERNAL_ERROR = 2
. " REMD_BUSINESS_ENTITY_MAINTAIN




ABAP code using 7.40 inline data declarations to call FM REMD_BUSINESS_ENTITY_MAINTAIN

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_e_error_occured).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
DATA(ld_i_save) = ' '.
 
 
 
DATA(ld_i_commit_and_wait) = ' '.
 


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!