C_PurchaseOrderTypeValueHelp
Purchase Order Type
C_PurchaseOrderTypeValueHelp is a Consumption CDS View that provides data about "Purchase Order Type" in SAP S/4HANA. It reads from 1 data source (I_PurchasingDocumentType) and exposes 2 fields with key field PurchaseOrderType. It has 1 association to related views. Part of development package ODATA_MM_PUR_PR_PROCESS.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_PurchasingDocumentType | I_PurchasingDocumentType | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_PurchasingDocumentTypeText | _PurchasingDocumentTypeText | _PurchasingDocumentTypeText.PurchasingDocumentCategory = 'F' and _PurchasingDocumentTypeText.PurchasingDocumentType = $projection.PurchaseOrderType |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CPURORDTYPEVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #CONSUMPTION | view | |
| Search.searchable | true | view | |
| EndUserText.label | Purchase Order Type | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PurchaseOrderType | |||
| _PurchasingDocumentTypeText | _PurchasingDocumentTypeText |
@AbapCatalog.sqlViewName: 'CPURORDTYPEVH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #CONSUMPTION
@Search.searchable: true
@EndUserText.label: 'Purchase Order Type'
@ObjectModel.resultSet.sizeCategory: #XS
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
define view C_PurchaseOrderTypeValueHelp as select from I_PurchasingDocumentType
association [0..*] to I_PurchasingDocumentTypeText as _PurchasingDocumentTypeText on _PurchasingDocumentTypeText.PurchasingDocumentCategory = 'F'
and _PurchasingDocumentTypeText.PurchasingDocumentType = $projection.PurchaseOrderType
{
@Search: { defaultSearchElement: true, ranking: #HIGH }
@ObjectModel.text.association: '_PurchasingDocumentTypeText'
key cast (PurchasingDocumentType as mm_purchaseordertype preserving type ) as PurchaseOrderType,
_PurchasingDocumentTypeText
}
where
PurchasingDocumentCategory = 'F'
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA