SAP MAINTAIN_ASSORTMENT_DB Function Module for Update Module for Assortments and Corresponding Assignments









MAINTAIN_ASSORTMENT_DB is a standard maintain assortment db SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Update Module for Assortments and Corresponding Assignments 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 maintain assortment db FM, simply by entering the name MAINTAIN_ASSORTMENT_DB into the relevant SAP transaction such as SE37 or SE38.

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



Function MAINTAIN_ASSORTMENT_DB 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 'MAINTAIN_ASSORTMENT_DB'"Update Module for Assortments and Corresponding Assignments
TABLES
* T_WRS1 = "Assortment
* T_WRST = "Interface Structure of Table WRST
* T_WRS6 = "Interface Structure of Table WRS6
* T_WRSZ = "Interface Structure of Table WRSZ
* T_RETURN = "Return Table

EXCEPTIONS
ERROR_OCCURED = 1
.



TABLES Parameters details for MAINTAIN_ASSORTMENT_DB

T_WRS1 - Assortment

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

T_WRST - Interface Structure of Table WRST

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

T_WRS6 - Interface Structure of Table WRS6

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

T_WRSZ - Interface Structure of Table WRSZ

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

T_RETURN - Return Table

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

EXCEPTIONS details

ERROR_OCCURED - An Error Occured

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

Copy and paste ABAP code example for MAINTAIN_ASSORTMENT_DB 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_wrs1  TYPE STANDARD TABLE OF WRF_WRS1_S, "   
lv_error_occured  TYPE WRF_WRS1_S, "   
lt_t_wrst  TYPE STANDARD TABLE OF WRF_WRST_S, "   
lt_t_wrs6  TYPE STANDARD TABLE OF WRF_WRS6_S, "   
lt_t_wrsz  TYPE STANDARD TABLE OF WRF_WRSZ_S, "   
lt_t_return  TYPE STANDARD TABLE OF BAPIRET2. "   

  CALL FUNCTION 'MAINTAIN_ASSORTMENT_DB'  "Update Module for Assortments and Corresponding Assignments
    TABLES
         T_WRS1 = lt_t_wrs1
         T_WRST = lt_t_wrst
         T_WRS6 = lt_t_wrs6
         T_WRSZ = lt_t_wrsz
         T_RETURN = lt_t_return
    EXCEPTIONS
        ERROR_OCCURED = 1
. " MAINTAIN_ASSORTMENT_DB




ABAP code using 7.40 inline data declarations to call FM MAINTAIN_ASSORTMENT_DB

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!