NSDM_E_V_MKPF

DDL: NSDM_DDL_V_V_MKPF SQL: NSDM_V_V_MKPF Type: view

V_MKPF Compatibility View

NSDM_E_V_MKPF is a CDS View that provides data about "V_MKPF Compatibility View" in SAP S/4HANA. It reads from 1 data source (matdoc) and exposes 8 fields with key fields mandt, mblnr, mjahr, zeile.

Data Sources (1)

SourceAliasJoin Type
matdoc ab from

Annotations (10)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName NSDM_V_V_MKPF view
EndUserText.label V_MKPF 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
AbapCatalog.viewEnhancementCategory #PROJECTION_LIST view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY mandt matdoc mandt Editing Client
KEY mblnr matdoc mblnr Material Doc.
KEY mjahr matdoc mjahr Mat. Doc. Year
KEY zeile matdoc zeile Mat. Doc.Item
werks matdoc werks Receiving Plant
vgart matdoc vgart Transactn Type
budat matdoc budat Posting Date
bktxt matdoc bktxt Header Text

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

CREATE VIEW NSDM_E_V_MKPF AS
SELECT
  ab.mandt AS mandt,
  ab.mblnr AS mblnr,
  ab.mjahr AS mjahr,
  ab.zeile AS zeile,
  ab.werks AS werks,
  ab.vgart AS vgart,
  ab.budat AS budat,
  ab.bktxt AS bktxt
FROM matdoc AS ab
;