NSDM_E_V_CF_MSLB

DDL: NSDM_DDL_V_CF_MSLB SQL: NSDM_V_V_CF_MSLB Type: view

V_CF_MSLB Compatibility View

NSDM_E_V_CF_MSLB is a CDS View that provides data about "V_CF_MSLB Compatibility View" in SAP S/4HANA. It reads from 3 data sources (nsdm_e_mslb, mcha, mch1) and exposes 23 fields with key fields mandt, matnr, werks, charg, sobkz.

Data Sources (3)

SourceAliasJoin Type
nsdm_e_mslb a from
mcha b inner
mch1 c inner

Annotations (12)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName NSDM_V_V_CF_MSLB view
EndUserText.label V_CF_MSLB 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 (23)

KeyFieldSource TableSource FieldDescription
KEY mandt nsdm_e_mslb mandt Editing Client
KEY matnr nsdm_e_mslb matnr Vehicle Model
KEY werks nsdm_e_mslb werks Receiving Plant
KEY charg nsdm_e_mslb charg Chargeable Proc.
KEY sobkz nsdm_e_mslb sobkz Special Stock
KEY lifnr nsdm_e_mslb lifnr Vendor no.
CLABS nsdm_e_mslb lblab Unrestricted
CINSM nsdm_e_mslb lbins Quality Insp.
CEINM nsdm_e_mslb lbein Restricted-Use
CVMLA nsdm_e_mslb lbvla Unrestr.-use
CVMIN nsdm_e_mslb lbvin In qual. insp.
CVMEI nsdm_e_mslb lbvei Restr.-use PP
SPERC nsdm_e_mslb lbspr Phys. Inv. Blk
LVORM_0 mcha lvorm Stock del. flag
LVORM_1 mch1 lvorm Stock del. flag
bwtar mcha bwtar Valuation Type
ZUSTD_0 mcha zustd Dummy
ZUSTD_1 mch1 zustd Dummy
lfgja nsdm_e_mslb lfgja Year Cur.Period
lfmon nsdm_e_mslb lfmon Current Period
BATCH_TYPE_0 mcha batch_type Batch Type
BATCH_TYPE_1 mch1 batch_type Batch Type
sgt_scat mcha 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_CF_MSLB.
-- 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_CF_MSLB

CREATE VIEW NSDM_E_V_CF_MSLB AS
SELECT
  a.mandt AS mandt,
  a.matnr AS matnr,
  a.werks AS werks,
  a.charg AS charg,
  a.sobkz AS sobkz,
  a.lifnr AS lifnr,
  a.lblab AS CLABS,
  a.lbins AS CINSM,
  a.lbein AS CEINM,
  a.lbvla AS CVMLA,
  a.lbvin AS CVMIN,
  a.lbvei AS CVMEI,
  a.lbspr AS SPERC,
  b.lvorm AS LVORM_0,
  c.lvorm AS LVORM_1,
  b.bwtar AS bwtar,
  b.zustd AS ZUSTD_0,
  c.zustd AS ZUSTD_1,
  a.lfgja AS lfgja,
  a.lfmon AS lfmon,
  b.batch_type AS BATCH_TYPE_0,
  c.batch_type AS BATCH_TYPE_1,
  b.sgt_scat AS sgt_scat
FROM nsdm_e_mslb AS a
INNER JOIN mcha AS b ON /* join condition not captured in parsed metadata */
INNER JOIN mch1 AS c ON /* join condition not captured in parsed metadata */
;