R_ACMSalesOrderScheduleLineTP

DDL: R_ACMSALESORDERSCHEDULELINETP Type: view_entity TRANSACTIONAL

ACM RTP Sales Order Schedule Line

R_ACMSalesOrderScheduleLineTP is a Transactional CDS View that provides data about "ACM RTP Sales Order Schedule Line" in SAP S/4HANA. It reads from 1 data source (I_ACMSalesOrderScheduleLine) and exposes 10 fields with key fields SalesOrder, SalesOrderItem, ScheduleLine. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_ACMSalesOrderScheduleLine I_ACMSalesOrderScheduleLine from

Associations (1)

CardinalityTargetAliasCondition
[1..1] R_ACMSalesOrderTP _ACMSalesOrder $projection.SalesOrder = _ACMSalesOrder.SalesOrder

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
EndUserText.label ACM RTP Sales Order Schedule Line view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY SalesOrder SalesOrder SD Document
KEY SalesOrderItem SalesOrderItem Sales Order Item
KEY ScheduleLine ScheduleLine Schedule Line
ScheduleLineCategory ScheduleLineCategory Sched.Line Cat.
RequestedDeliveryTime RequestedDeliveryTime Time
LoadingDate LoadingDate Loading Date
DeliveryDate DeliveryDate Delivery Date
ScheduledBatchStartDateTime ScheduledBatchStartDateTime
_ACMSalesOrderItem _ACMSalesOrderItem
_ACMSalesOrder _ACMSalesOrder

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_ACMSalesOrderScheduleLineTP.
-- 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 R_ACMSalesOrderScheduleLineTP AS
SELECT
  SalesOrder,
  SalesOrderItem,
  ScheduleLine,
  ScheduleLineCategory,
  RequestedDeliveryTime,
  LoadingDate,
  DeliveryDate,
  ScheduledBatchStartDateTime
FROM I_ACMSalesOrderScheduleLine
LEFT OUTER JOIN R_ACMSalesOrderTP AS _ACMSalesOrder ON SalesOrder = _ACMSalesOrder.SalesOrder  -- association [1..1]
;