Fcdm_Keyfigures_Read_GI

DDL: FCDM_KEYFIGURES_READ_GI SQL: V_FCDM_GI Type: view

Read Goods Issues

Fcdm_Keyfigures_Read_GI is a CDS View that provides data about "Read Goods Issues" in SAP S/4HANA. It reads from 1 data source (matdoc) and exposes 5 fields with key fields matnr, werks, lgort.

Data Sources (1)

SourceAliasJoin Type
matdoc matdoc from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName V_FCDM_GI view
EndUserText.label Read Goods Issues view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #AUTOMATED view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY matnr matbf Stock Mat.
KEY werks werks Receiving Plant
KEY lgort lgort_sid Stor. Location SID
meins meins Valuation Unit
quantity matdoc consumption_qty Consumption Quantity

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

CREATE VIEW Fcdm_Keyfigures_Read_GI AS
SELECT
  matbf AS matnr,
  werks,
  lgort_sid AS lgort,
  meins,
  matdoc.consumption_qty AS quantity
FROM matdoc
;