I_SlsDocItemConfDeliveryDate

DDL: I_SLSDOCITEMCONFDELIVERYDATE SQL: IITMCONFDELIVDTE Type: view COMPOSITE

Sales Document Item Conf. delivery date

I_SlsDocItemConfDeliveryDate is a Composite CDS View that provides data about "Sales Document Item Conf. delivery date" in SAP S/4HANA. It reads from 1 data source (I_SalesDocumentScheduleLine) and exposes 4 fields with key fields SalesDocument, SalesDocumentItem.

Data Sources (1)

SourceAliasJoin Type
I_SalesDocumentScheduleLine I_SalesDocumentScheduleLine from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName IITMCONFDELIVDTE view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #COMPOSITE view
EndUserText.label Sales Document Item Conf. delivery date view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY SalesDocument SalesDocument SD Document
KEY SalesDocumentItem SalesDocumentItem Sales Document Item
ConfirmedDeliveryDate
_SalesDocument _SalesDocument

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 I_SlsDocItemConfDeliveryDate.
-- 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: IITMCONFDELIVDTE

CREATE VIEW I_SlsDocItemConfDeliveryDate AS
SELECT
  SalesDocument,
  SalesDocumentItem,
  cast ( max(ConfirmedDeliveryDate) as confirmed_delivery_date preserving type ) AS ConfirmedDeliveryDate
FROM I_SalesDocumentScheduleLine
;