OIB_MBEW_QUANTITY

DDL: OIB_MBEW_QUANTITY SQL: OIBMBEW Type: view

Book inventory with valuation type and base Uom

OIB_MBEW_QUANTITY is a CDS View that provides data about "Book inventory with valuation type and base Uom" in SAP S/4HANA. It reads from 1 data source (Mbv_Mbew) and exposes 5 fields with key fields matnr, bwkey, bwtar.

Data Sources (1)

SourceAliasJoin Type
Mbv_Mbew a from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName OIBMBEW view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_ALLOWED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Book inventory with valuation type and base Uom view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY matnr Mbv_Mbew matnr Vehicle Model
KEY bwkey Mbv_Mbew bwkey Valuation Area
KEY bwtar Mbv_Mbew bwtar Valuation Type
lbkum Mbv_Mbew lbkum Valuated stock
meins b meins Valuation Unit

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view OIB_MBEW_QUANTITY.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: OIBMBEW

CREATE VIEW OIB_MBEW_QUANTITY AS
SELECT
  a.matnr AS matnr,
  a.bwkey AS bwkey,
  a.bwtar AS bwtar,
  a.lbkum AS lbkum,
  b.meins AS meins
FROM Mbv_Mbew AS a
;