C_CntrlPurContrTypeValueHelp

DDL: C_CNTRLPURCONTRTYPEVALUEHELP SQL: CCNTRLPCTYPEVH Type: view CONSUMPTION

View for Contract Type F4 Help in Central Purchase Contract

C_CntrlPurContrTypeValueHelp is a Consumption CDS View that provides data about "View for Contract Type F4 Help in Central Purchase Contract" in SAP S/4HANA. It reads from 1 data source (I_PurchasingDocumentType) and exposes 2 fields with key field PurchasingDocumentType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_PurchasingDocumentType I_PurchasingDocumentType from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_PurchasingDocumentTypeText _Text _Text.PurchasingDocumentCategory = 'C' and _Text.PurchasingDocumentType = $projection.PurchasingDocumentType and Language = $session.system_language

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CCNTRLPCTYPEVH view
AccessControl.authorizationCheck #CHECK view
AbapCatalog.compiler.compareFilter true view
EndUserText.label View for Contract Type F4 Help in Central Purchase Contract view
Search.searchable true view
VDM.viewType #CONSUMPTION view
ObjectModel.semanticKey PurchasingDocumentType view
ObjectModel.representativeKey PurchasingDocumentType view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY PurchasingDocumentType PurchasingDocumentType RFQ Type
PurchasingDocumentTypeName _Text PurchasingDocumentTypeName Description

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 C_CntrlPurContrTypeValueHelp.
-- 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: CCNTRLPCTYPEVH

CREATE VIEW C_CntrlPurContrTypeValueHelp AS
SELECT
  PurchasingDocumentType,
  _Text.PurchasingDocumentTypeName AS PurchasingDocumentTypeName
FROM I_PurchasingDocumentType
LEFT OUTER JOIN I_PurchasingDocumentTypeText AS _Text ON _Text.PurchasingDocumentCategory = 'C' AND _Text.PurchasingDocumentType = PurchasingDocumentType AND Language = $session.system_language  -- association [0..1]
;