P_SalesOrderItemDeliveryBlkd

DDL: P_SALESORDERITEMDELIVERYBLKD SQL: PSLSORDITEMSO02 Type: view COMPOSITE

P_SalesOrderItemDeliveryBlkd is a Composite CDS View in SAP S/4HANA. It reads from 2 data sources (P_SalesOrderItemDeliveryBlkd1, I_SalesDocumentScheduleLine) and exposes 4 fields with key fields SalesOrder, SalesOrderItem.

Data Sources (2)

SourceAliasJoin Type
P_SalesOrderItemDeliveryBlkd1 OneSLPerSOI inner
I_SalesDocumentScheduleLine SL from

Annotations (8)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #S view
VDM.private true view
VDM.viewType #COMPOSITE view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName PSLSORDITEMSO02 view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY SalesOrder I_SalesDocumentScheduleLine SalesDocument SD Document
KEY SalesOrderItem I_SalesDocumentScheduleLine SalesDocumentItem Sales Document Item
DeliveryBlockReason I_SalesDocumentScheduleLine DelivBlockReasonForSchedLine Delivery Block
_DeliveryBlockReason I_SalesDocumentScheduleLine _DelivBlockReasonForSchedLine

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 P_SalesOrderItemDeliveryBlkd.
-- 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: PSLSORDITEMSO02

CREATE VIEW P_SalesOrderItemDeliveryBlkd AS
SELECT
  SL.SalesDocument AS SalesOrder,
  SL.SalesDocumentItem AS SalesOrderItem,
  SL.DelivBlockReasonForSchedLine AS DeliveryBlockReason,
  SL._DelivBlockReasonForSchedLine AS _DeliveryBlockReason
FROM I_SalesDocumentScheduleLine AS SL
INNER JOIN P_SalesOrderItemDeliveryBlkd1 AS OneSLPerSOI ON /* join condition not captured in parsed metadata */
;