Fcdm_Keyfigures_Read_Custrq

DDL: FCDM_KEYFIGURES_READ_CUSTRQ SQL: V_FCDM_RD_CR Type: view

Read Customer Requirements for Forecast Demand Keyfigures

Fcdm_Keyfigures_Read_Custrq is a CDS View that provides data about "Read Customer Requirements for Forecast Demand Keyfigures" in SAP S/4HANA. It reads from 3 data sources (vbak, vbap, vbep) and exposes 9 fields with key fields matnr, werks, berid, vbeln, posnr.

Data Sources (3)

SourceAliasJoin Type
vbak vbak from
vbap vbap inner
vbep vbep inner

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName V_FCDM_RD_CR view
EndUserText.label Read Customer Requirements for Forecast Demand Keyfigures view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #AUTOMATED view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY matnr vbap matnr Vehicle Model
KEY werks vbap werks Receiving Plant
KEY berid vbap werks Receiving Plant
KEY vbeln vbep vbeln SD Sched. Agmt
KEY posnr vbep posnr WBS Element
KEY etenr vbep etenr Schedule Line
lgort vbap lgort Sublocation
meins
thequantityisnowinMEINS

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_Keyfigures_Read_Custrq.
-- 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_RD_CR

CREATE VIEW Fcdm_Keyfigures_Read_Custrq AS
SELECT
  vbap.matnr AS matnr,
  vbap.werks AS werks,
  vbap.werks AS berid,
  vbep.vbeln AS vbeln,
  vbep.posnr AS posnr,
  vbep.etenr AS etenr,
  vbap.lgort AS lgort
FROM vbak
INNER JOIN vbap ON /* join condition not captured in parsed metadata */
INNER JOIN vbep ON /* join condition not captured in parsed metadata */
;