P_SlsOrdItmNotDelivdDueDte

DDL: P_SLSORDITMNOTDELIVDDUEDTE SQL: PSODUEDATEREUS2 Type: view COMPOSITE

P_SlsOrdItmNotDelivdDueDte is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_SalesDocumentItemBasic) and exposes 21 fields with key fields SalesDocument, SalesDocumentItem.

Data Sources (1)

SourceAliasJoin Type
I_SalesDocumentItemBasic SOI 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 PSODUEDATEREUS2 view

Fields (21)

KeyFieldSource TableSource FieldDescription
KEY SalesDocument I_SalesDocumentItemBasic SalesDocument SD Document
KEY SalesDocumentItem I_SalesDocumentItemBasic SalesDocumentItem Sales Document Item
SalesOrganization
DistributionChannel
OrganizationDivision
SalesDocumentType
RequestedDeliveryDateendendasDueDate
BillingBlockStatus I_SalesDocumentItemBasic BillingBlockStatus
ItemBillingBlockReason
TotalDeliveryStatus
neededforDeliveryBlock
OrderQuantity
ConfdDelivQtyInOrderQtyUnit
DeliveryConfirmationStatus
OverallOrdReltdBillgStatus
neededforBillingBlock
ItemGeneralIncompletionStatus
ItemBillingIncompletionStatus
PricingIncompletionStatus
ItemDeliveryIncompletionStatus
BusinessTransactionType

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_SlsOrdItmNotDelivdDueDte.
-- 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: PSODUEDATEREUS2

CREATE VIEW P_SlsOrdItmNotDelivdDueDte AS
SELECT
  SOI.SalesDocument AS SalesDocument,
  SOI.SalesDocumentItem AS SalesDocumentItem,
  SOI._SalesDocumentBasic.SalesOrganization AS SalesOrganization,
  SOI._SalesDocumentBasic.DistributionChannel AS DistributionChannel,
  SOI._SalesDocumentBasic.OrganizationDivision AS OrganizationDivision,
  SOI._SalesDocumentBasic.SalesDocumentType AS SalesDocumentType,
  SOI.BillingBlockStatus AS BillingBlockStatus,
  BillingBlock SOI.OrderQuantity AS OrderQuantity,
  Incompletion SOI.ItemGeneralIncompletionStatus AS ItemGeneralIncompletionStatus
FROM I_SalesDocumentItemBasic AS SOI
;