NSDM_E_V_BF_MKOL

DDL: NSDM_DDL_V_BF_MKOL SQL: NSDM_V_V_BF_MKOL Type: view

V_BF_MKOL Compatibility View

NSDM_E_V_BF_MKOL is a CDS View that provides data about "V_BF_MKOL Compatibility View" in SAP S/4HANA. It reads from 2 data sources (nsdm_e_mkol, mcha) and exposes 21 fields with key fields mandt, matnr, werks, lgort, charg.

Data Sources (2)

SourceAliasJoin Type
nsdm_e_mkol a from
mcha b inner

Annotations (12)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName NSDM_V_V_BF_MKOL view
EndUserText.label V_BF_MKOL Compatibility View view
DataAging.noAgingRestriction false 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 (21)

KeyFieldSource TableSource FieldDescription
KEY mandt nsdm_e_mkol mandt Editing Client
KEY matnr nsdm_e_mkol matnr Vehicle Model
KEY werks nsdm_e_mkol werks Receiving Plant
KEY lgort nsdm_e_mkol lgort Sublocation
KEY charg nsdm_e_mkol charg Chargeable Proc.
KEY sobkz nsdm_e_mkol sobkz Special Stock
KEY lifnr nsdm_e_mkol lifnr Vendor no.
labst nsdm_e_mkol slabs Unrestr. Consgt
insme nsdm_e_mkol sinsm Cnsgt in QInsp.
einme nsdm_e_mkol seinm Restr. Consgt
speme nsdm_e_mkol sspem Blocked Consgt
vmlab nsdm_e_mkol svmla Unrestr. cnsgt
vmins nsdm_e_mkol svmin Cnsgt in QInsp
vmein nsdm_e_mkol svmei Restr. cnsgt
vmspe nsdm_e_mkol svmsp Blocked cnsgt
sperr nsdm_e_mkol spers Phys. Inv. Blk
lvorm nsdm_e_mkol lvorm Stock del. flag
bwtar mcha bwtar Valuation Type
lfgja nsdm_e_mkol lfgja Year Cur.Period
lfmon nsdm_e_mkol lfmon Current Period
sgt_scat nsdm_e_mkol sgt_scat Stock Segment

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_BF_MKOL.
-- 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_V_BF_MKOL

CREATE VIEW NSDM_E_V_BF_MKOL AS
SELECT
  a.mandt AS mandt,
  a.matnr AS matnr,
  a.werks AS werks,
  a.lgort AS lgort,
  a.charg AS charg,
  a.sobkz AS sobkz,
  a.lifnr AS lifnr,
  a.slabs AS labst,
  a.sinsm AS insme,
  a.seinm AS einme,
  a.sspem AS speme,
  a.svmla AS vmlab,
  a.svmin AS vmins,
  a.svmei AS vmein,
  a.svmsp AS vmspe,
  a.spers AS sperr,
  a.lvorm AS lvorm,
  b.bwtar AS bwtar,
  a.lfgja AS lfgja,
  a.lfmon AS lfmon,
  a.sgt_scat AS sgt_scat
FROM nsdm_e_mkol AS a
INNER JOIN mcha AS b ON /* join condition not captured in parsed metadata */
;