C_SlsOrdWthoutChrgSchedLine

DDL: C_SLSORDWTHOUTCHRGSCHEDLINE SQL: CSOWOCSLINES Type: view CONSUMPTION Package: ODATA_SD_SALESORDER_UI

Schedule Lines of Sales Order Item Factsheet

C_SlsOrdWthoutChrgSchedLine is a Consumption CDS View that provides data about "Schedule Lines of Sales Order Item Factsheet" in SAP S/4HANA. It reads from 1 data source (I_SlsOrdWthoutChrgSchedLine) and exposes 12 fields with key fields SalesOrderWithoutCharge, SalesOrderWithoutChargeItem, ScheduleLine. Part of development package ODATA_SD_SALESORDER_UI.

Data Sources (1)

SourceAliasJoin Type
I_SlsOrdWthoutChrgSchedLine ScheduleLine from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName CSOWOCSLINES view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
AbapCatalog.compiler.compareFilter true view
Search.searchable true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XL view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY SalesOrderWithoutCharge I_SlsOrdWthoutChrgSchedLine SalesOrderWithoutCharge
KEY SalesOrderWithoutChargeItem I_SlsOrdWthoutChrgSchedLine SalesOrderWithoutChargeItem
KEY ScheduleLine ScheduleLine Schedule Line
OrderQuantityUnit I_SlsOrdWthoutChrgSchedLine OrderQuantityUnit Sales Unit
ConfdOrderQtyByMatlAvailCheck I_SlsOrdWthoutChrgSchedLine ConfdOrderQtyByMatlAvailCheck
DeliveredQtyInOrderQtyUnit I_SlsOrdWthoutChrgSchedLine DeliveredQtyInOrderQtyUnit
OpenConfdDelivQtyInOrdQtyUnit I_SlsOrdWthoutChrgSchedLine OpenConfdDelivQtyInOrdQtyUnit
int1asDeliveryBlockCriticality
DelivBlockReasonForSchedLine I_SlsOrdWthoutChrgSchedLine DelivBlockReasonForSchedLine Delivery Block
_OrderQuantityUnit _OrderQuantityUnit
_DelivBlockReasonForSchedLine _DelivBlockReasonForSchedLine
_SalesOrderWithoutCharge _SalesOrderWithoutCharge

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 C_SlsOrdWthoutChrgSchedLine.
-- 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: CSOWOCSLINES

CREATE VIEW C_SlsOrdWthoutChrgSchedLine AS
SELECT
  ScheduleLine.SalesOrderWithoutCharge AS SalesOrderWithoutCharge,
  ScheduleLine.SalesOrderWithoutChargeItem AS SalesOrderWithoutChargeItem,
  ScheduleLine,
  ScheduleLine.OrderQuantityUnit AS OrderQuantityUnit,
  ScheduleLine.ConfdOrderQtyByMatlAvailCheck AS ConfdOrderQtyByMatlAvailCheck,
  ScheduleLine.DeliveredQtyInOrderQtyUnit AS DeliveredQtyInOrderQtyUnit,
  ScheduleLine.OpenConfdDelivQtyInOrdQtyUnit AS OpenConfdDelivQtyInOrdQtyUnit,
  cast( case when ScheduleLine.DelivBlockReasonForSchedLine != '' then 1 else 0 end as abap.int1 ) as DeliveryBlockCriticality AS int1asDeliveryBlockCriticality,
  ScheduleLine.DelivBlockReasonForSchedLine AS DelivBlockReasonForSchedLine
FROM I_SlsOrdWthoutChrgSchedLine AS ScheduleLine
;