SAP AUFBAU_WERTETABELLE Function Module for NOTRANSL: Aufbau der Wertetabelle mit EKORG/VKORG, Werken und Material









AUFBAU_WERTETABELLE is a standard aufbau wertetabelle 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: Aufbau der Wertetabelle mit EKORG/VKORG, Werken und Material 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 aufbau wertetabelle FM, simply by entering the name AUFBAU_WERTETABELLE into the relevant SAP transaction such as SE37 or SE38.

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



Function AUFBAU_WERTETABELLE 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 'AUFBAU_WERTETABELLE'"NOTRANSL: Aufbau der Wertetabelle mit EKORG/VKORG, Werken und Material
EXPORTING
FLG_AOBJ = "Generic Type
* ALAGER = ' ' "
* LVORM = ' ' "

TABLES
WERTETABELLE = "Inventory Controlling: Dataset for key figures
DISPO = "INVCO: Structure for MRP Controller
MAABC = "INVCO: Structure for ABC Indicator Selection
VKORG = "INVCO: Ranges Structure for SalesOrg Selection
EKORG = "INVCO: Range Structure for PUORG Selection
MATERIAL = "INVCO: Range Structure for Material Number Selection
WERK = "INVCO: Ranges Structure for SalesOrg Selection
MTART = "INVCO: Structure for Selection of Material Type
MATKL = "INVCO: Structure for Material Group Selection
EKGRP = "INVCO: Structure for Purchasing Group Selection
DISMM = "INVCO: Structure for MRP Type Selection

EXCEPTIONS
NOT_FOUND = 1
.



IMPORTING Parameters details for AUFBAU_WERTETABELLE

FLG_AOBJ - Generic Type

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

ALAGER -

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

LVORM -

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

TABLES Parameters details for AUFBAU_WERTETABELLE

WERTETABELLE - Inventory Controlling: Dataset for key figures

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

DISPO - INVCO: Structure for MRP Controller

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

MAABC - INVCO: Structure for ABC Indicator Selection

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

VKORG - INVCO: Ranges Structure for SalesOrg Selection

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

EKORG - INVCO: Range Structure for PUORG Selection

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

MATERIAL - INVCO: Range Structure for Material Number Selection

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

WERK - INVCO: Ranges Structure for SalesOrg Selection

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

MTART - INVCO: Structure for Selection of Material Type

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

MATKL - INVCO: Structure for Material Group Selection

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

EKGRP - INVCO: Structure for Purchasing Group Selection

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

DISMM - INVCO: Structure for MRP Type Selection

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

EXCEPTIONS details

NOT_FOUND -

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

Copy and paste ABAP code example for AUFBAU_WERTETABELLE 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_flg_aobj  TYPE C, "   
lv_not_found  TYPE C, "   
lt_wertetabelle  TYPE STANDARD TABLE OF BCO_WERTE, "   
lt_dispo  TYPE STANDARD TABLE OF MCBDISPO, "   
lt_maabc  TYPE STANDARD TABLE OF MCBMAABC, "   
lt_vkorg  TYPE STANDARD TABLE OF MCBRVKO, "   
lv_alager  TYPE MCBRVKO, "   SPACE
lt_ekorg  TYPE STANDARD TABLE OF MCBREKO, "   
lv_lvorm  TYPE MCBREKO, "   SPACE
lt_material  TYPE STANDARD TABLE OF MCBRMAT, "   
lt_werk  TYPE STANDARD TABLE OF MCBRWRK, "   
lt_mtart  TYPE STANDARD TABLE OF MCBMTART, "   
lt_matkl  TYPE STANDARD TABLE OF MCBMATKL, "   
lt_ekgrp  TYPE STANDARD TABLE OF MCBEKGRP, "   
lt_dismm  TYPE STANDARD TABLE OF MCBDISMM. "   

  CALL FUNCTION 'AUFBAU_WERTETABELLE'  "NOTRANSL: Aufbau der Wertetabelle mit EKORG/VKORG, Werken und Material
    EXPORTING
         FLG_AOBJ = lv_flg_aobj
         ALAGER = lv_alager
         LVORM = lv_lvorm
    TABLES
         WERTETABELLE = lt_wertetabelle
         DISPO = lt_dispo
         MAABC = lt_maabc
         VKORG = lt_vkorg
         EKORG = lt_ekorg
         MATERIAL = lt_material
         WERK = lt_werk
         MTART = lt_mtart
         MATKL = lt_matkl
         EKGRP = lt_ekgrp
         DISMM = lt_dismm
    EXCEPTIONS
        NOT_FOUND = 1
. " AUFBAU_WERTETABELLE




ABAP code using 7.40 inline data declarations to call FM AUFBAU_WERTETABELLE

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.

 
 
 
 
 
 
DATA(ld_alager) = ' '.
 
 
DATA(ld_lvorm) = ' '.
 
 
 
 
 
 
 


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!