R_CntrlSuplrQtanScheduleLine
Restricted View for Cntrl Suplr Qtan Item Schedule Line
R_CntrlSuplrQtanScheduleLine is a Basic CDS View that provides data about "Restricted View for Cntrl Suplr Qtan Item Schedule Line" in SAP S/4HANA. It reads from 1 data source (I_PurgDocScheduleLineBasic) and exposes 16 fields with key fields CentralSupplierQuotation, CentralSupplierQuotationItem, ScheduleLine. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_PurgDocScheduleLineBasic | I_PurgDocScheduleLineBasic | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | R_CentralSupplierQuotation | _CentralSupplierQuotation | $projection.CentralSupplierQuotation = _CentralSupplierQuotation.CentralSupplierQuotation |
| [1..1] | R_CntrlSupplierQuotationItem | _CntrlSupplierQuotationItem | $projection.CentralSupplierQuotation = _CntrlSupplierQuotationItem.CentralSupplierQuotation and $projection.CentralSupplierQuotationItem = _CntrlSupplierQuotationItem.CentralSupplierQuotationItem |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | RCNTRLQTNSCHDLN | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Restricted View for Cntrl Suplr Qtan Item Schedule Line | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #L | view |
Fields (16)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CentralSupplierQuotation | PurchasingDocument | ||
| KEY | CentralSupplierQuotationItem | PurchasingDocumentItem | ||
| KEY | ScheduleLine | ScheduleLine | ||
| DelivDateCategory | DelivDateCategory | |||
| ScheduleLineDeliveryDate | ||||
| SchedLineStscDeliveryDate | SchedLineStscDeliveryDate | |||
| ScheduleLineDeliveryTime | ScheduleLineDeliveryTime | |||
| ScheduleLineOrderQuantity | ScheduleLineOrderQuantity | |||
| RoughGoodsReceiptQty | RoughGoodsReceiptQty | |||
| OrderQuantityUnit | OrderQuantityUnit | |||
| AwardedQuantity | ||||
| PerformancePeriodStartDate | ||||
| PerformancePeriodEndDate | ||||
| _CentralSupplierQuotation | _CentralSupplierQuotation | |||
| _CntrlSupplierQuotationItem | _CntrlSupplierQuotationItem | |||
| _DeliveryDateCategory | _DeliveryDateCategory |
@AbapCatalog.sqlViewName: 'RCNTRLQTNSCHDLN'
@VDM.viewType: #BASIC
@EndUserText.label: 'Restricted View for Cntrl Suplr Qtan Item Schedule Line'
@AbapCatalog.preserveKey:true
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.lifecycle.contract.type:#SAP_INTERNAL_API
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #L
define view R_CntrlSuplrQtanScheduleLine
as select from I_PurgDocScheduleLineBasic
association [1..1] to R_CentralSupplierQuotation as _CentralSupplierQuotation on $projection.CentralSupplierQuotation = _CentralSupplierQuotation.CentralSupplierQuotation
association [1..1] to R_CntrlSupplierQuotationItem as _CntrlSupplierQuotationItem on $projection.CentralSupplierQuotation = _CntrlSupplierQuotationItem.CentralSupplierQuotation
and $projection.CentralSupplierQuotationItem = _CntrlSupplierQuotationItem.CentralSupplierQuotationItem
{
key PurchasingDocument as CentralSupplierQuotation,
key PurchasingDocumentItem as CentralSupplierQuotationItem,
key ScheduleLine,
DelivDateCategory,
cast( ScheduleLineDeliveryDate as mm_a_delivery_date preserving type) as ScheduleLineDeliveryDate,
SchedLineStscDeliveryDate,
ScheduleLineDeliveryTime,
ScheduleLineOrderQuantity,
RoughGoodsReceiptQty,
OrderQuantityUnit,
cast (ScheduleLineCommittedQuantity as vdm_awarded_quantity preserving type) as AwardedQuantity,
cast (PerformancePeriodStartDate as vdm_performanceperiodstartdate preserving type) as PerformancePeriodStartDate,
cast (PerformancePeriodEndDate as vdm_performanceperiodenddate preserving type) as PerformancePeriodEndDate,
//Associations
_CentralSupplierQuotation,
_CntrlSupplierQuotationItem,
_DeliveryDateCategory
}
where
ScheduleLine = '0001'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_PURGDOCSCHEDULELINEBASIC"
],
"ASSOCIATED":
[
"I_DELIVERYDATECATEGORY",
"R_CENTRALSUPPLIERQUOTATION",
"R_CNTRLSUPPLIERQUOTATIONITEM"
],
"BASE":
[
"I_PURGDOCSCHEDULELINEBASIC"
],
"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