C_PurchaseOrderFeature
Feature of Purchase Order
C_PurchaseOrderFeature is a Consumption CDS View that provides data about "Feature of Purchase Order" in SAP S/4HANA. It reads from 1 data source (I_PurchaseOrder) and exposes 5 fields with key fields PurchaseOrder, PurchasingFeature. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_PurchaseOrder | I_PurchaseOrder | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..*] | C_PurchaseOrderFeatureDetail | _PurchaseOrderFeatureDetail | $projection.PurchaseOrder = _PurchaseOrderFeatureDetail.PurchaseOrder |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CPURORDFEATURE | view | |
| VDM.viewType | #CONSUMPTION | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| EndUserText.label | Feature of Purchase Order | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PurchaseOrder | PurchaseOrder | ||
| KEY | PurchasingFeature | |||
| PurchasingFeatureName | ||||
| PurchasingFeatureIsSupported | ||||
| _PurchaseOrderFeatureDetail | _PurchaseOrderFeatureDetail |
@AbapCatalog.sqlViewName: 'CPURORDFEATURE'
@VDM.viewType: #CONSUMPTION
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@EndUserText.label: 'Feature of Purchase Order'
define view C_PurchaseOrderFeature
as select from I_PurchaseOrder
association [1..*] to C_PurchaseOrderFeatureDetail as _PurchaseOrderFeatureDetail on $projection.PurchaseOrder = _PurchaseOrderFeatureDetail.PurchaseOrder
{
key PurchaseOrder as PurchaseOrder,
key cast('' as purchasing_document_feature) as PurchasingFeature,
cast('' as abap.char(80)) as PurchasingFeatureName,
'' as PurchasingFeatureIsSupported,
_PurchaseOrderFeatureDetail
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_PURCHASEORDER"
],
"ASSOCIATED":
[
"C_PURCHASEORDERFEATUREDETAIL"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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