P_CntrlPurContrClassification

DDL: P_CNTRLPURCONTRCLASSIFICATION SQL: PCCTRCLASSFCTN Type: view BASIC

P_CntrlPurContrClassification is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (I_PurchasingDocumentType, t162) and exposes 2 fields with key field PurchasingDocumentType.

Data Sources (2)

SourceAliasJoin Type
I_PurchasingDocumentType _PurchasingDocumentType from
t162 t162 left_outer

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName PCCTRCLASSFCTN view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.private true view
VDM.viewType #BASIC view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY PurchasingDocumentType PurchasingDocumentType RFQ Type
PurgDocFieldSelControlKey PurgDocFieldSelControlKey Field Sel. Key

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 P_CntrlPurContrClassification.
-- 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: PCCTRCLASSFCTN

CREATE VIEW P_CntrlPurContrClassification AS
SELECT
  PurchasingDocumentType,
  PurgDocFieldSelControlKey
FROM I_PurchasingDocumentType AS _PurchasingDocumentType
LEFT OUTER JOIN t162 ON /* join condition not captured in parsed metadata */
;