I_PPS_PurgDocCntctAll

DDL: I_PPS_PURGDOCCNTCTALL Type: view_entity BASIC

Doc Type generated from asterisk values

I_PPS_PurgDocCntctAll is a Basic CDS View that provides data about "Doc Type generated from asterisk values" in SAP S/4HANA. It reads from 2 data sources (I_PurchasingDocumentType, I_PPS_PurgDocCntctPrefLow) and exposes 5 fields with key fields PurchasingDocumentCategory, PurchasingDocumentType, PPSContactCategory.

Data Sources (2)

SourceAliasJoin Type
I_PurchasingDocumentType PurchasingDocumentType inner
I_PPS_PurgDocCntctPrefLow PurgDocCntctPrefLow from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Doc Type generated from asterisk values view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #BASIC view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY PurchasingDocumentCategory I_PPS_PurgDocCntctPrefLow PurchasingDocumentCategory Doc. Category
KEY PurchasingDocumentType I_PurchasingDocumentType PurchasingDocumentType RFQ Type
KEY PPSContactCategory I_PPS_PurgDocCntctPrefLow PPSContactCategory Contact Person Type
PPSContactCategoryIsMandatory I_PPS_PurgDocCntctPrefLow PPSContactCategoryIsMandatory Mandatory Indicator
PPSPurgDocCntctCatPref I_PPS_PurgDocCntctPrefLow PPSPurgDocCntctCatPref

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_PPS_PurgDocCntctAll.
-- 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_PPS_PurgDocCntctAll AS
SELECT
  PurgDocCntctPrefLow.PurchasingDocumentCategory AS PurchasingDocumentCategory,
  PurchasingDocumentType.PurchasingDocumentType AS PurchasingDocumentType,
  PurgDocCntctPrefLow.PPSContactCategory AS PPSContactCategory,
  PurgDocCntctPrefLow.PPSContactCategoryIsMandatory AS PPSContactCategoryIsMandatory,
  PurgDocCntctPrefLow.PPSPurgDocCntctCatPref AS PPSPurgDocCntctCatPref
FROM I_PPS_PurgDocCntctPrefLow AS PurgDocCntctPrefLow
INNER JOIN I_PurchasingDocumentType AS PurchasingDocumentType ON /* join condition not captured in parsed metadata */
;