P_PurchaseOrdSchdLineForCIC
P_PurchaseOrdSchdLineForCIC is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (I_PurgDocScheduleLineBasic) and exposes 6 fields with key fields PurchaseOrder, PurchaseOrderItem, ScheduleLine.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_PurgDocScheduleLineBasic | I_PurgDocScheduleLineBasic | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| VDM.private | true | view | |
| VDM.viewType | #BASIC | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PurchaseOrder | PurchasingDocument | ||
| KEY | PurchaseOrderItem | PurchasingDocumentItem | ||
| KEY | ScheduleLine | ScheduleLine | ||
| delivery_at | ScheduleLineDeliveryDate | |||
| Quantity_Unit | OrderQuantityUnit | |||
| quantity | ScheduleLineOrderQuantity |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #L,
dataClass: #MIXED
}
@VDM.private: true
@VDM.viewType: #BASIC
define view entity P_PurchaseOrdSchdLineForCIC
as select from I_PurgDocScheduleLineBasic
{
key PurchasingDocument as PurchaseOrder,
key PurchasingDocumentItem as PurchaseOrderItem,
key ScheduleLine,
ScheduleLineDeliveryDate as delivery_at ,
ScheduleLineDeliveryTime as delivery_time,
OrderQuantityUnit as Quantity_Unit,
@Semantics.quantity.unitOfMeasure: 'Quantity_Unit'
ScheduleLineOrderQuantity as quantity,
@Semantics.quantity.unitOfMeasure: 'Quantity_Unit'
RoughGoodsReceiptQty as received_quantity,
@Semantics.quantity.unitOfMeasure: 'Quantity_Unit'
StockTransferDeliveredQuantity as delivered_quantity
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_PURGDOCSCHEDULELINEBASIC"
],
"ASSOCIATED":
[],
"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