A_SchAgrmtSchLine_2

DDL: A_SCHAGRMTSCHLINE_2 Type: view_entity CONSUMPTION

Scheduling Agreement Schedule Line

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

Data Sources (1)

SourceAliasJoin Type
R_SchedgLineTP R_SchedgLineTP projection

Annotations (11)

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

Fields (19)

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
OrderQuantityUnitISOCode OrderQuantityUnitISOCode
ScheduleLineOrderQuantity ScheduleLineOrderQuantity Scheduled Qty
PurchaseRequisition PurchaseRequisition Requisition
PurchaseRequisitionItem PurchaseRequisitionItem Requisn. item
RoughGoodsReceiptQty RoughGoodsReceiptQty Delivered
ScheduleLineIsFixed ScheduleLineIsFixed Fixing Ind.
PurchasingSchdLnNrOfReminders PurchasingSchdLnNrOfReminders
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 A_SchAgrmtSchLine_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 A_SchAgrmtSchLine_2 AS
SELECT
  SchedulingAgreement,
  SchedulingAgreementItem,
  ScheduleLine,
  DelivDateCategory,
  ScheduleLineDeliveryDate,
  SchedLineStscDeliveryDate,
  ScheduleLineDeliveryTime,
  OrderQuantityUnit,
  OrderQuantityUnitISOCode,
  ScheduleLineOrderQuantity,
  PurchaseRequisition,
  PurchaseRequisitionItem,
  RoughGoodsReceiptQty,
  ScheduleLineIsFixed,
  PurchasingSchdLnNrOfReminders,
  PrevDelivQtyOfScheduleLine,
  SourceOfCreation,
  ScheduleLineOpenQuantity,
  LastChangeDateTime
FROM R_SchedgLineTP
;