NSDM_E_MSFD

DDL: NSDM_DDL_MSFD SQL: NSDM_V_MSFD Type: view

MSFD Compatibility View

NSDM_E_MSFD is a CDS View that provides data about "MSFD Compatibility View" in SAP S/4HANA. It reads from 1 data source (msfd_md) and exposes 25 fields with key fields mandt, matnr, werks, charg, sobkz.

Data Sources (1)

SourceAliasJoin Type
msfd_md m from

Annotations (10)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName NSDM_V_MSFD view
AbapCatalog.compiler.compareFilter true view
EndUserText.label MSFD 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 (25)

KeyFieldSource TableSource FieldDescription
KEY mandt msfd_md mandt Editing Client
KEY matnr msfd_md matnr Vehicle Model
KEY werks msfd_md werks Receiving Plant
KEY charg msfd_md charg Chargeable Proc.
KEY sobkz msfd_md sobkz Special Stock
KEY lifnr msfd_md lifnr Vendor no.
KEY vbeln msfd_md vbeln SD Sched. Agmt
KEY posnr msfd_md posnr WBS Element
fdspr msfd_md fdspr Phys. Inv. Blk
fdlab
fdins
fdvla
fdvin
fdill msfd_md fdill Warehouse stock
fdilq msfd_md fdilq QualInspStock
fdvll msfd_md fdvll Warehouse stock
fdvlq msfd_md fdvlq QualInspStock
fdfll msfd_md fdfll Warehouse stock
fdflq msfd_md fdflq QualInspStock
fddll msfd_md fddll Last Count Date
fdein
fdvei
ersda msfd_md ersda Entry Date
fdjin msfd_md fdjin Fiscal year of current physical inventory indicator
fdrue

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

CREATE VIEW NSDM_E_MSFD AS
SELECT
  m.mandt AS mandt,
  m.matnr AS matnr,
  m.werks AS werks,
  m.charg AS charg,
  m.sobkz AS sobkz,
  m.lifnr AS lifnr,
  m.vbeln AS vbeln,
  m.posnr AS posnr,
  m.fdspr AS fdspr,
  case when t.fdlab is null then 0 else t.fdlab end AS fdlab,
  case when t.fdins is null then 0 else t.fdins end AS fdins,
  case when t.fdvla is null then 0 else t.fdvla end AS fdvla,
  case when t.fdvin is null then 0 else t.fdvin end AS fdvin,
  m.fdill AS fdill,
  m.fdilq AS fdilq,
  m.fdvll AS fdvll,
  m.fdvlq AS fdvlq,
  m.fdfll AS fdfll,
  m.fdflq AS fdflq,
  m.fddll AS fddll,
  case when t.fdein is null then 0 else t.fdein end AS fdein,
  case when t.fdvei is null then 0 else t.fdvei end AS fdvei,
  m.ersda AS ersda,
  m.fdjin AS fdjin,
  'X' AS fdrue
FROM msfd_md AS m
;