R_CntrlReqForQtanScheduleLine

DDL: R_CNTRLREQFORQTANSCHEDULELINE SQL: RCNTRLRFQSCHL Type: view BASIC

Restricted View for Central RFQ Item Schedule Line

R_CntrlReqForQtanScheduleLine is a Basic CDS View that provides data about "Restricted View for Central RFQ Item Schedule Line" in SAP S/4HANA. It reads from 2 data sources (I_PurgDocScheduleLineBasic, R_CentralRequestForQuotation) and exposes 15 fields with key fields CentralRequestForQuotation, CentralRequestForQuotationItem, ScheduleLine. It has 2 associations to related views.

Data Sources (2)

SourceAliasJoin Type
I_PurgDocScheduleLineBasic I_PurgDocScheduleLineBasic from
R_CentralRequestForQuotation R_CentralRequestForQuotation inner

Associations (2)

CardinalityTargetAliasCondition
[1..1] R_CentralRequestForQuotation _CentralRequestForQuotation $projection.CentralRequestForQuotation = _CentralRequestForQuotation.CentralRequestForQuotation
[1..1] R_CentralReqForQuotationItem _CentralReqForQuotationItem $projection.CentralRequestForQuotation = _CentralReqForQuotationItem.CentralRequestForQuotation and $projection.CentralRequestForQuotationItem = _CentralReqForQuotationItem.CentralRequestForQuotationItem

Annotations (13)

NameValueLevelField
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Restricted View for Central RFQ Item Schedule Line view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
AccessControl.authorizationCheck #CHECK view
AbapCatalog.sqlViewName RCNTRLRFQSCHL view
ObjectModel.representativeKey ScheduleLine view
ObjectModel.semanticKey CentralRequestForQuotation view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY CentralRequestForQuotation Purchasing Document
KEY CentralRequestForQuotationItem Purchasing Doc. Item
KEY ScheduleLine ScheduleLine Schedule Line
DelivDateCategory DelivDateCategory Delivery Date
ScheduleLineDeliveryDate Delivery Date
SchedLineStscDeliveryDate SchedLineStscDeliveryDate Stat. Del. Date
ScheduleLineDeliveryTime ScheduleLineDeliveryTime Time
ScheduleLineOrderQuantity ScheduleLineOrderQuantity Scheduled Qty
RoughGoodsReceiptQty RoughGoodsReceiptQty Delivered
PerformancePeriodStartDate Start of Performance Period
PerformancePeriodEndDate End of Performance Period
OrderQuantityUnit I_PurgDocScheduleLineBasic OrderQuantityUnit Sales Unit
_CentralRequestForQuotation _CentralRequestForQuotation
_CentralReqForQuotationItem _CentralReqForQuotationItem
_DeliveryDateCategory _DeliveryDateCategory

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view R_CntrlReqForQtanScheduleLine.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: RCNTRLRFQSCHL

CREATE VIEW R_CntrlReqForQtanScheduleLine AS
SELECT
  cast (PurchasingDocument as vdm_requestforquotation preserving type ) AS CentralRequestForQuotation,
  cast (PurchasingDocumentItem as vdm_requestforquotationitem preserving type ) AS CentralRequestForQuotationItem,
  ScheduleLine,
  DelivDateCategory,
  cast (ScheduleLineDeliveryDate as mm_a_delivery_date preserving type) AS ScheduleLineDeliveryDate,
  SchedLineStscDeliveryDate,
  ScheduleLineDeliveryTime,
  ScheduleLineOrderQuantity,
  RoughGoodsReceiptQty,
  cast (PerformancePeriodStartDate as vdm_performanceperiodstartdate preserving type) AS PerformancePeriodStartDate,
  cast (PerformancePeriodEndDate as vdm_performanceperiodenddate preserving type) AS PerformancePeriodEndDate,
  I_PurgDocScheduleLineBasic.OrderQuantityUnit AS OrderQuantityUnit
FROM I_PurgDocScheduleLineBasic
INNER JOIN R_CentralRequestForQuotation ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN R_CentralRequestForQuotation AS _CentralRequestForQuotation ON CentralRequestForQuotation = _CentralRequestForQuotation.CentralRequestForQuotation  -- association [1..1]
LEFT OUTER JOIN R_CentralReqForQuotationItem AS _CentralReqForQuotationItem ON CentralRequestForQuotation = _CentralReqForQuotationItem.CentralRequestForQuotation AND CentralRequestForQuotationItem = _CentralReqForQuotationItem.CentralRequestForQuotationItem  -- association [1..1]
;