NSDM_E_V_BF_MSPR

DDL: NSDM_DDL_V_BF_MSPR SQL: NSDM_V_V_BF_MSPR Type: view

V_BF_MSPR Compatibility View

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

Data Sources (2)

SourceAliasJoin Type
nsdm_e_mspr a from
mcha b inner

Annotations (12)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName NSDM_V_V_BF_MSPR view
EndUserText.label V_BF_MSPR 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 (19)

KeyFieldSource TableSource FieldDescription
KEY mandt nsdm_e_mspr mandt Editing Client
KEY matnr nsdm_e_mspr matnr Vehicle Model
KEY werks nsdm_e_mspr werks Receiving Plant
KEY lgort nsdm_e_mspr lgort Sublocation
KEY charg nsdm_e_mspr charg Chargeable Proc.
KEY sobkz nsdm_e_mspr sobkz Special Stock
KEY pspnr nsdm_e_mspr pspnr WBS Element
labst nsdm_e_mspr prlab Unrestricted
insme nsdm_e_mspr prins Quality Insp.
einme nsdm_e_mspr prein Restricted-Use
speme nsdm_e_mspr prspe Permanently
vmlab nsdm_e_mspr prvla Unrestr.-use
vmins nsdm_e_mspr prvin In qual. insp.
vmein nsdm_e_mspr prvei Restr.-use PP
vmspe nsdm_e_mspr prvsp Blocked
sperr nsdm_e_mspr prspr Phys. Inv. Blk
bwtar mcha bwtar Valuation Type
lfgja nsdm_e_mspr lfgja Year Cur.Period
lfmon nsdm_e_mspr lfmon Current Period

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_MSPR.
-- 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_MSPR

CREATE VIEW NSDM_E_V_BF_MSPR 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.pspnr AS pspnr,
  a.prlab AS labst,
  a.prins AS insme,
  a.prein AS einme,
  a.prspe AS speme,
  a.prvla AS vmlab,
  a.prvin AS vmins,
  a.prvei AS vmein,
  a.prvsp AS vmspe,
  a.prspr AS sperr,
  b.bwtar AS bwtar,
  a.lfgja AS lfgja,
  a.lfmon AS lfmon
FROM nsdm_e_mspr AS a
INNER JOIN mcha AS b ON /* join condition not captured in parsed metadata */
;