P_PONxtOpenScheduleLine
PO Item Next Open Schedule Line
P_PONxtOpenScheduleLine is a Consumption CDS View that provides data about "PO Item Next Open Schedule Line" in SAP S/4HANA. It reads from 2 data sources (I_PurchaseOrderScheduleLine, I_PurgAnalyticsConfiguration) and exposes 3 fields with key fields PurchaseOrder, PurchaseOrderItem. Part of development package ODATA_MM_PUR_POITEMS_MONI.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_PurchaseOrderScheduleLine | I_PurchaseOrderScheduleLine | inner |
| I_PurgAnalyticsConfiguration | MigrationStatus | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PPONXTOPNSCHDLLN | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| VDM.private | true | view | |
| VDM.viewType | #CONSUMPTION | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| AbapCatalog.preserveKey | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | PO Item Next Open Schedule Line | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PurchaseOrder | PurchaseOrder | ||
| KEY | PurchaseOrderItem | PurchaseOrderItem | ||
| ScheduleLineDeliveryDate |
@AbapCatalog.sqlViewName: 'PPONXTOPNSCHDLLN'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@VDM.private: true
@VDM.viewType: #CONSUMPTION
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@AbapCatalog.preserveKey:true
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'PO Item Next Open Schedule Line'
define view P_PONxtOpenScheduleLine as select from
I_PurgAnalyticsConfiguration as MigrationStatus
inner join I_PurchaseOrderScheduleLine on MigrationStatus.IsIntrastatReportingRelevant = ' '
or MigrationStatus.IsIntrastatReportingRelevant = '-'
{
key PurchaseOrder,
key PurchaseOrderItem,
min(ScheduleLineDeliveryDate) as ScheduleLineDeliveryDate
}
where
OpenPurchaseOrderQuantity > 0
group by
PurchaseOrder,
PurchaseOrderItem
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