FPC_EBEW_ETC_VIEW

DDL: FPCV_EBEW_ETC SQL: FPCV_EBEW_ETC Type: view

Projection on MM data for PCP

FPC_EBEW_ETC_VIEW is a CDS View that provides data about "Projection on MM data for PCP" in SAP S/4HANA. It reads from 2 data sources (mara, nsdm_e_marc).

Data Sources (2)

SourceAliasJoin Type
mara a inner
nsdm_e_marc c inner

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName FPCV_EBEW_ETC view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Projection on MM data for PCP view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
ClientHandling.type #CLIENT_DEPENDENT view

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 FPC_EBEW_ETC_VIEW.
-- 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: FPCV_EBEW_ETC

CREATE VIEW FPC_EBEW_ETC_VIEW AS
SELECT *  -- field list not available in parsed metadata
INNER JOIN nsdm_e_marc AS c ON /* join condition not captured in parsed metadata */
INNER JOIN mara AS a ON /* join condition not captured in parsed metadata */
;