Fcdm_Read_Attributes

DDL: FCDM_READ_ATTRIBUTES SQL: V_FCDM_ATTR Type: view

Obsolete, because this persistence is no longer used

Fcdm_Read_Attributes is a CDS View that provides data about "Obsolete, because this persistence is no longer used" in SAP S/4HANA. It reads from 3 data sources (fcdm_head, fcdm_item, fcdm_vers) and exposes 27 fields with key fields fcdmversion, matnr, werks, berid, per_sdat.

Data Sources (3)

SourceAliasJoin Type
fcdm_head fcdm_head from
fcdm_item fcdm_item inner
fcdm_vers fcdm_vers inner

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName V_FCDM_ATTR view
EndUserText.label Obsolete, because this persistence is no longer used view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (27)

KeyFieldSource TableSource FieldDescription
KEY fcdmversion fcdm_head fcdmversion Forecast Version
KEY matnr fcdm_head matnr Vehicle Model
KEY werks fcdm_head werks Receiving Plant
KEY berid fcdm_head berid Single-Character Flag
KEY per_sdat fcdm_item per_sdat Perd Start Date
KEY plaab fcdm_head plaab MRP segment
KEY planr fcdm_head planr Plng Segmnt No.
KEY bedae fcdm_head bedae Reqmts type
vervs fcdm_vers vervs Active
vervp fcdm_head vervp CInd.
bdzei fcdm_head bdzei PIR Pointer
cons_mode fcdm_head cons_mode Single-Character Flag
perkz_head fcdm_head perkz Period Type
zuvkz fcdm_head zuvkz Consumption
perkz_item fcdm_item perkz Period Type
per_edat fcdm_item per_edat Period End
loevr fcdm_item loevr Fcst to be Deltd
acc_past fcdm_item acc_past Accptd Past Demand
draft_qty fcdm_item draft_qty Draft Quantity
plan_qty fcdm_item plan_qty Planned Qty
released fcdm_item released TRUE
withdr_qty fcdm_item withdr_qty Withdrawal Qty
open_qty
meins
cons_sdat fcdm_item cons_sdat Cnsmpn Start Date
cons_edat fcdm_item cons_edat Cnsmpn End Date
pdatu fcdm_item pdatu Settlement Date

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 Fcdm_Read_Attributes.
-- 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: V_FCDM_ATTR

CREATE VIEW Fcdm_Read_Attributes AS
SELECT
  fcdm_head.fcdmversion AS fcdmversion,
  fcdm_head.matnr AS matnr,
  fcdm_head.werks AS werks,
  fcdm_head.berid AS berid,
  fcdm_item.per_sdat AS per_sdat,
  fcdm_head.plaab AS plaab,
  fcdm_head.planr AS planr,
  fcdm_head.bedae AS bedae,
  fcdm_vers.vervs AS vervs,
  fcdm_head.vervp AS vervp,
  fcdm_head.bdzei AS bdzei,
  fcdm_head.cons_mode AS cons_mode,
  fcdm_head.perkz AS perkz_head,
  fcdm_head.zuvkz AS zuvkz,
  fcdm_item.perkz AS perkz_item,
  fcdm_item.per_edat AS per_edat,
  fcdm_item.loevr AS loevr,
  fcdm_item.acc_past AS acc_past,
  fcdm_item.draft_qty AS draft_qty,
  fcdm_item.plan_qty AS plan_qty,
  fcdm_item.released AS released,
  fcdm_item.withdr_qty AS withdr_qty,
  fcdm_item.plan_qty - fcdm_item.withdr_qty AS open_qty,
  fcdm_item.cons_sdat AS cons_sdat,
  fcdm_item.cons_edat AS cons_edat,
  fcdm_item.pdatu AS pdatu
FROM fcdm_head
INNER JOIN fcdm_item ON /* join condition not captured in parsed metadata */
INNER JOIN fcdm_vers ON /* join condition not captured in parsed metadata */
;