NSDM_E_CNMSEG

DDL: NSDM_DDL_CNMSEG SQL: NSDM_V_CNMSEG Type: view

CNMSEG Compatibility View

NSDM_E_CNMSEG is a CDS View that provides data about "CNMSEG Compatibility View" in SAP S/4HANA. It reads from 1 data source (matdoc) and exposes 14 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_CNMSEG view
EndUserText.label CNMSEG 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
AbapCatalog.viewEnhancementCategory #PROJECTION_LIST view

Fields (14)

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
rsnum matdoc rsnum Reservation
rspos matdoc rspos Item no.
budat matdoc budat Posting Date
kzear matdoc kzear Final Issue
menge matdoc menge WarrCountValue
meins matdoc meins Valuation Unit
shkzg matdoc shkzg Returns
ebeln matdoc ebeln Source PurchDoc
ebelp matdoc ebelp Item pur. doc.
bwart matdoc bwart Valuation Type

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

CREATE VIEW NSDM_E_CNMSEG AS
SELECT
  ab.mandt AS mandt,
  ab.mblnr AS mblnr,
  ab.mjahr AS mjahr,
  ab.zeile AS zeile,
  ab.rsnum AS rsnum,
  ab.rspos AS rspos,
  ab.budat AS budat,
  ab.kzear AS kzear,
  ab.menge AS menge,
  ab.meins AS meins,
  ab.shkzg AS shkzg,
  ab.ebeln AS ebeln,
  ab.ebelp AS ebelp,
  ab.bwart AS bwart
FROM matdoc AS ab
;