NSDM_E_MMBE_MARC_V

DDL: NSDM_DDL_MMBE_MARC_V SQL: NSDM_V_MMBE_MARC Type: view

MMBE_MARC_V Compatibility View

NSDM_E_MMBE_MARC_V is a CDS View that provides data about "MMBE_MARC_V Compatibility View" in SAP S/4HANA. It reads from 3 data sources (t001w, nsdm_e_marc, t001k) and exposes 21 fields with key fields mandt, matnr, werks.

Data Sources (3)

SourceAliasJoin Type
t001w a from
nsdm_e_marc b inner
t001k c inner

Annotations (11)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName NSDM_V_MMBE_MARC view
EndUserText.label MMBE_MARC_V Compatibility View view
ObjectModel.usageType.sizeCategory L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ClientHandling.algorithm #AUTOMATED view
AccessControl.authorizationCheck #NOT_ALLOWED view
AccessControl.personalData.blocking #NOT_REQUIRED view
AbapCatalog.viewEnhancementCategory #PROJECTION_LIST view

Fields (21)

KeyFieldSource TableSource FieldDescription
KEY mandt nsdm_e_marc mandt Editing Client
KEY matnr nsdm_e_marc matnr Vehicle Model
KEY werks nsdm_e_marc werks Receiving Plant
lvorm nsdm_e_marc lvorm Stock del. flag
bwtty nsdm_e_marc bwtty Valuation Cat.
xchar nsdm_e_marc xchar HU assignment
dispo nsdm_e_marc dispo MRP Controller
trame nsdm_e_marc trame Stk in Transit
name1 t001w name1 PA text
name2 t001w name2 Name2/First nme
stras t001w stras Street/House
pfach t001w pfach PO Box
pstlz t001w pstlz Postal Code
ort01 t001w ort01 Province
bwkey t001w bwkey Valuation Area
chazv t001w chazv Batch stat.mgmt
bwmod t001k bwmod Val.Grpg Code
bukrs t001k bukrs Value
glgmg nsdm_e_marc glgmg Tied Empties
umlmc nsdm_e_marc umlmc Stock in tfr
sgt_covs nsdm_e_marc sgt_covs Segment. Strategy

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 NSDM_E_MMBE_MARC_V.
-- 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: NSDM_V_MMBE_MARC

CREATE VIEW NSDM_E_MMBE_MARC_V AS
SELECT
  b.mandt AS mandt,
  b.matnr AS matnr,
  b.werks AS werks,
  b.lvorm AS lvorm,
  b.bwtty AS bwtty,
  b.xchar AS xchar,
  b.dispo AS dispo,
  b.trame AS trame,
  a.name1 AS name1,
  a.name2 AS name2,
  a.stras AS stras,
  a.pfach AS pfach,
  a.pstlz AS pstlz,
  a.ort01 AS ort01,
  a.bwkey AS bwkey,
  a.chazv AS chazv,
  c.bwmod AS bwmod,
  c.bukrs AS bukrs,
  b.glgmg AS glgmg,
  b.umlmc AS umlmc,
  b.sgt_covs AS sgt_covs
FROM t001w AS a
INNER JOIN nsdm_e_marc AS b ON /* join condition not captured in parsed metadata */
INNER JOIN t001k AS c ON /* join condition not captured in parsed metadata */
;