NSDM_E_V_MMIM_LC_MB5M

DDL: NSDM_DDL_V_MMIM_LC_MB5M SQL: NSDM_V_MMIM_MB5M Type: view

V_MMIM_LC_MB5M Compatibility View

NSDM_E_V_MMIM_LC_MB5M is a CDS View that provides data about "V_MMIM_LC_MB5M Compatibility View" in SAP S/4HANA. It reads from 6 data sources and exposes 16 fields with key fields mandt, matnr, werks, lgort, charg.

Data Sources (6)

SourceAliasJoin Type
nsdm_e_mchb a from
mara b inner
nsdm_e_marc c inner
nsdm_e_mard d inner
mcha e inner
mch1 f inner

Annotations (11)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName NSDM_V_MMIM_MB5M view
EndUserText.label V_MMIM_LC_MB5M Compatibility View view
ObjectModel.usageType.sizeCategory XXL 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 (16)

KeyFieldSource TableSource FieldDescription
KEY mandt nsdm_e_mchb mandt Editing Client
KEY matnr nsdm_e_mchb matnr Vehicle Model
KEY werks nsdm_e_mchb werks Receiving Plant
KEY lgort nsdm_e_mchb lgort Sublocation
KEY charg nsdm_e_mchb charg Chargeable Proc.
xchpf nsdm_e_marc xchpf Batch Mgmt Rqt(Plnt)
vfdat mcha vfdat SLED/BBD
vfdat_1 mch1 vfdat SLED/BBD
mhdlp mara mhdlp Storage %
mhdhb mara mhdhb Tot. shelf life
mhdrz mara mhdrz Rem. Shelf Life
iprkz mara iprkz PI Shelf Life
rdmhd mara rdmhd Rounding rule
meins mara meins Valuation Unit
labst nsdm_e_mchb clabs Unrestricted
cwmclabs nsdm_e_mchb /cwm/clabs

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_V_MMIM_LC_MB5M.
-- 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_MMIM_MB5M

CREATE VIEW NSDM_E_V_MMIM_LC_MB5M AS
SELECT
  a.mandt AS mandt,
  a.matnr AS matnr,
  a.werks AS werks,
  a.lgort AS lgort,
  a.charg AS charg,
  c.xchpf AS xchpf,
  e.vfdat AS vfdat,
  f.vfdat AS vfdat_1,
  b.mhdlp AS mhdlp,
  b.mhdhb AS mhdhb,
  b.mhdrz AS mhdrz,
  b.iprkz AS iprkz,
  b.rdmhd AS rdmhd,
  b.meins AS meins,
  a.clabs AS labst,
  a./cwm/clabs AS cwmclabs
FROM nsdm_e_mchb AS a
INNER JOIN mara AS b ON /* join condition not captured in parsed metadata */
INNER JOIN nsdm_e_marc AS c ON /* join condition not captured in parsed metadata */
INNER JOIN nsdm_e_mard AS d ON /* join condition not captured in parsed metadata */
INNER JOIN mcha AS e ON /* join condition not captured in parsed metadata */
INNER JOIN mch1 AS f ON /* join condition not captured in parsed metadata */
;