I_SchedgLineTP_2

DDL: I_SCHEDGLINETP_2 Type: view_entity TRANSACTIONAL

Scheduling Agreement Schedule Line

I_SchedgLineTP_2 is a Transactional CDS View that provides data about "Scheduling Agreement Schedule Line" in SAP S/4HANA. It reads from 1 data source (R_SchedgLineTP) and exposes 17 fields with key fields SchedulingAgreement, SchedulingAgreementItem, ScheduleLine.

Data Sources (1)

SourceAliasJoin Type
R_SchedgLineTP R_SchedgLineTP projection

Annotations (10)

NameValueLevelField
EndUserText.label Scheduling Agreement Schedule Line view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #TRANSACTIONAL view
ObjectModel.modelingPattern #TRANSACTIONAL_INTERFACE view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
Metadata.ignorePropagatedAnnotations true view

Fields (17)

KeyFieldSource TableSource FieldDescription
KEY SchedulingAgreement SchedulingAgreement Scheduling Agreement
KEY SchedulingAgreementItem SchedulingAgreementItem Schedule Item Number
KEY ScheduleLine ScheduleLine Schedule Line
DelivDateCategory DelivDateCategory Delivery Date
ScheduleLineDeliveryDate ScheduleLineDeliveryDate Delivery Date
SchedLineStscDeliveryDate SchedLineStscDeliveryDate Stat. Del. Date
ScheduleLineDeliveryTime ScheduleLineDeliveryTime Time
OrderQuantityUnit OrderQuantityUnit Sales Unit
ScheduleLineOrderQuantity ScheduleLineOrderQuantity Scheduled Qty
PurchaseRequisition PurchaseRequisition Requisition
PurchaseRequisitionItem PurchaseRequisitionItem Requisn. item
RoughGoodsReceiptQty RoughGoodsReceiptQty Delivered
ScheduleLineIsFixed ScheduleLineIsFixed Fixing Ind.
PrevDelivQtyOfScheduleLine PrevDelivQtyOfScheduleLine
SourceOfCreation SourceOfCreation
ScheduleLineOpenQuantity ScheduleLineOpenQuantity SchLineOpenQuan
LastChangeDateTime LastChangeDateTime Timestamp

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 I_SchedgLineTP_2.
-- 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.

CREATE VIEW I_SchedgLineTP_2 AS
SELECT
  SchedulingAgreement,
  SchedulingAgreementItem,
  ScheduleLine,
  DelivDateCategory,
  ScheduleLineDeliveryDate,
  SchedLineStscDeliveryDate,
  ScheduleLineDeliveryTime,
  OrderQuantityUnit,
  ScheduleLineOrderQuantity,
  PurchaseRequisition,
  PurchaseRequisitionItem,
  RoughGoodsReceiptQty,
  ScheduleLineIsFixed,
  PrevDelivQtyOfScheduleLine,
  SourceOfCreation,
  ScheduleLineOpenQuantity,
  LastChangeDateTime
FROM R_SchedgLineTP
;