BAPI_MBEW SAP (Valuation Data) Structure details

Dictionary Type: Structure
Description: Valuation Data




ABAP Code to SELECT data from BAPI_MBEW
Related tables to BAPI_MBEW
Access table BAPI_MBEW




Structure field list including key, data, relationships and ABAP select examples

BAPI_MBEW is a standard SAP Structure so does not store data like a database table does. It can be used to define the fields of other actual tables or to process "Valuation Data" Information within sap ABAP programs.

This is done by declaring abap internal tables, work areas or database tables based on this Structure. These can then be used to store and process the required data appropriately.

i.e. DATA: wa_BAPI_MBEW TYPE BAPI_MBEW.

The BAPI_MBEW table consists of various fields, each holding specific information or linking keys about Valuation Data data available in SAP. These include VAL_TYPE (Valuation Type), DEL_FLAG (Deletion flag for all material data of a valuation type), PRICE_CTRL (Price control indicator), MOVING_PR (Moving average price/periodic unit price).. See below for full list along with technical details, documentation, text table, check tables, foreign key relationships, conversion routines, relevant tcodes and example ABAP select code etc. .

Delivery Class:
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type or numeric)


SAP BAPI_MBEW structure fields - Full list of fields found in SAP data dictionary

Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
VAL_AREAValuation Area BWKEYCHAR4Assigned to domainBWKEYBWK
VAL_TYPEValuation Type BWTAR_DCHAR10Assigned to domainBWTARBWT
DEL_FLAGDeletion flag for all material data of a valuation type LVOBACHAR1XFELD
PRICE_CTRLPrice control indicator VPRSVCHAR1VPRSV
MOVING_PRMoving average price/periodic unit price VERPR_BAPIDEC23(4) BAPICURR
STD_PRICEStandard price STPRS_BAPIDEC23(4) BAPICURR
PRICE_UNITPrice Unit PEINHDEC5PACK3
VAL_CLASSValuation Class BKLASCHAR4Assigned to domainBKLAS
PR_CTRL_PPPrice Control Indicator in Previous Period VMVPRCHAR1VPRSV
MOV_PR_PPMoving average price/periodic unit price in previous period VMVER_BAPIDEC23(4) BAPICURR
STD_PR_PPStandard price in the previous period VMSTP_BAPIDEC23(4) BAPICURR
PR_UNIT_PPPrice unit of previous period VMPEIDEC5PACK3
VCLASS_PPValuation Class in Previous Period VMBKLCHAR4Assigned to domainBKLAS
PR_CTRL_PYPrice Control Indicator in Previous Year VJVPRCHAR1VPRSV
MOV_PR_PYMoving average price/periodic unit price in previous year VJVER_BAPIDEC23(4) BAPICURR
STD_PR_PYStandard price in previous year VJSTP_BAPIDEC23(4) BAPICURR
VCLASS_PYValuation Class in Previous Year VJBKLCHAR4Assigned to domainBKLAS
PR_UNIT_PYPrice unit of previous year VJPEIDEC5PACK3
VAL_CATValuation Category BWTTY_DCHAR1Assigned to domainBWTTY
FUTURE_PRFuture price PRSZK_BAPIDEC23(4) BAPICURR
VALID_FROMDate as of which the price is valid DZKDATDATS8DATUM
TAXPRICE_1Valuation price based on tax law: level 1 BWPRS_BAPIDEC23(4) BAPICURR
COMMPRICE1Valuation price based on commercial law: level 1 BWPRH_BAPIDEC23(4) BAPICURR
TAXPRICE_3Valuation price based on tax law: level 3 VJBWS_BAPIDEC23(4) BAPICURR
COMMPRICE3Valuation price based on commercial law: level 3 VJBWH_BAPIDEC23(4) BAPICURR
PLND_PRICEFuture Planned Price DZPLPR_BAPIDEC23(4) BAPICURR
PLNDPRICE1Future Planned Price 1 DZPLP1_BAPIDEC23(4) BAPICURR
PLNDPRICE2Future Planned Price 2 DZPLP2_BAPIDEC23(4) BAPICURR
PLNDPRICE3Future Planned Price 3 DZPLP3_BAPIDEC23(4) BAPICURR
PLNDPRDATE1Date from Which Future Planned Price 1 Is Valid DZPLD1DATS8DATUM
PLNDPRDATE2Date from Which Future Planned Price 2 Is Valid DZPLD2DATS8DATUM
PLNDPRDATE3Date from Which Future Planned Price 3 Is Valid DZPLD3DATS8DATUM
LIFO_FIFOLIFO/FIFO-Relevant XLIFOCHAR1LIFO_FIFO
POOLNUMBERPool number for LIFO valuation MYPOOLCHAR4Assigned to domainLIFO_POOLPOL
TAXPRICE_2Valuation price based on tax law: level 2 BWPS1_BAPIDEC23(4) BAPICURR
COMMPRICE2Valuation price based on commercial law: level 2 BWPH1_BAPIDEC23(4) BAPICURR
DEVAL_INDLowest value: devaluation indicator ABWKZNUMC2NUMC2
ORIG_GROUPOrigin Group as Subdivision of Cost Element HRKFTCHAR4Assigned to domainHRKFT
OVERHEAD_GRPCosting Overhead Group CK_KOSGRCHAR10Assigned to domainCK_KOSGR
QTY_STRUCTMaterial Is Costed with Quantity Structure CK_EKALRELCHAR1XFELD
ML_ACTIVEMaterial ledger activated at material level CK_ML_MAACCHAR1XFELD
ML_SETTLEMaterial Price Determination: Control CK_ML_ABSTCHAR1CK_ML_ABST
ORIG_MATMaterial-related origin HKMATCHAR1HKMAT
VM_SO_STKValuation Class for Sales Order Stock EKLASCHAR4Assigned to domainBKLAS
VM_P_STOCKValuation Class for Project Stock QKLASCHAR4Assigned to domainBKLAS
MATL_USAGEUsage of the material J_1BMATUSECHAR1J_1BMATUSE
MAT_ORIGINOrigin of the material J_1BMATORGCHAR1J_1BMATORG
IN_HOUSEProduced in-house J_1BOWNPROCHAR1XFELD
TAX_CML_UNPrice unit for valuation prices based on tax/commercial law BWPEIDEC5PACK3

Key field Non-key field



How do I retrieve data from SAP structure BAPI_MBEW using ABAP code?

As BAPI_MBEW is a database structure and not a table it does not store any data in the SAP data dictionary. The ABAP SELECT statement is therefore not appropriate and can not be performed on BAPI_MBEW as there is no data to select.

How to access SAP table BAPI_MBEW

Within an ECC or HANA version of SAP you can also view further information about BAPI_MBEW and the data within it using relevant transactions such as

SE11 (ABAP Dictionary Maintenance)
SM30 (Maintain Table Data)
SE80 (Object Navigator)
SE16 (Data Browser).


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!