I_SupDmndPurOrderSchedLine
Basic View for PO Schedule Line
I_SupDmndPurOrderSchedLine is a Basic CDS View that provides data about "Basic View for PO Schedule Line" in SAP S/4HANA. It reads from 1 data source (eket) and exposes 7 fields with key fields PurchasingDocument, PurchasingDocumentItem, ScheduleLine.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| eket | sched | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Basic View for PO Schedule Line | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AbapCatalog.sqlViewName | ISUPDMNDPOSL | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view |
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Basic View for PO Schedule Line'
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@AccessControl: {
authorizationCheck: #CHECK,
personalData.blocking: #('TRANSACTIONAL_DATA')
}
@AbapCatalog: {
sqlViewName: 'ISUPDMNDPOSL',
compiler.compareFilter: true
}
@ObjectModel: {
usageType: {
dataClass: #TRANSACTIONAL,
serviceQuality: #X,
sizeCategory: #XXL
}
}
define view I_SupDmndPurOrderSchedLine
as select from eket as sched
{
key sched.ebeln as PurchasingDocument,
key sched.ebelp as PurchasingDocumentItem,
key sched.etenr as ScheduleLine,
sched.menge as ScheduleLineOrderQuantity,
sched.eindt as ScheduleLineDeliveryDate,
sched.wemng as RoughGoodsReceiptQty,
// sched.dabmg as MRPReducedQuantity,
case when sched.wemng > sched.dabmg then
( sched.menge - sched.wemng )
else ( sched.menge - sched.dabmg )
end as OpenSupplyQuantity
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"EKET"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"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