I_PPSEntyPrflFldNameExclsnList

DDL: I_PPSENTYPRFLFLDNAMEEXCLSNLIST Type: view_entity BASIC

Exclusion list

I_PPSEntyPrflFldNameExclsnList is a Basic CDS View that provides data about "Exclusion list" in SAP S/4HANA. It reads from 2 data sources (dd03l, dd04t) and exposes 3 fields with key fields PPSEntityProfileItemFieldName, Language.

Data Sources (2)

SourceAliasJoin Type
dd03l dd03l from
dd04t dd04t inner

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Exclusion list view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PPSEntityProfileItemFieldName dd03l fieldname UI Group FieldName
KEY Language dd04t ddlanguage Lang.
PPSEntyProfItemFieldNameDesc dd04t scrtext_m Medium Label

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

CREATE VIEW I_PPSEntyPrflFldNameExclsnList AS
SELECT
  dd03l.fieldname AS PPSEntityProfileItemFieldName,
  dd04t.ddlanguage AS Language,
  dd04t.scrtext_m AS PPSEntyProfItemFieldNameDesc
FROM dd03l
INNER JOIN dd04t ON /* join condition not captured in parsed metadata */
;