C_PurchaseReqnSourceType

DDL: C_PURCHASEREQNSOURCETYPE SQL: CPURREQNSRCETYPE Type: view CONSUMPTION

Purchase Requisition Source Type

C_PurchaseReqnSourceType is a Consumption CDS View that provides data about "Purchase Requisition Source Type" in SAP S/4HANA. It reads from 1 data source (I_PurReqnSourceType) and exposes 2 fields with key field DomainValue.

Data Sources (1)

SourceAliasJoin Type
I_PurReqnSourceType I_PurReqnSourceType from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CPURREQNSRCETYPE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Purchase Requisition Source Type view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey DomainValue view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #META view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY DomainValue PurchasingSourceType
DomainText

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_PurchaseReqnSourceType.
-- 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: CPURREQNSRCETYPE

CREATE VIEW C_PurchaseReqnSourceType AS
SELECT
  PurchasingSourceType AS DomainValue,
  _Text[1: Language = $session.system_language].PurchasingSourceTypeDesc AS DomainText
FROM I_PurReqnSourceType
;