I_SchedProdnGetLogsOrdEndDate

DDL: I_SCHEDPRODNGETLOGSORDENDDATE SQL: ISCHEDLOGSORD Type: view COMPOSITE

Logistics order End date

I_SchedProdnGetLogsOrdEndDate is a Composite CDS View that provides data about "Logistics order End date" in SAP S/4HANA. It reads from 2 data sources (I_LogisticsOrder, I_SchedCapacityRqmtItemCap) and exposes 2 fields.

Data Sources (2)

SourceAliasJoin Type
I_LogisticsOrder aufk from
I_SchedCapacityRqmtItemCap kbed inner

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ISCHEDLOGSORD view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Logistics order End date view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (2)

KeyFieldSource TableSource FieldDescription
PlannedEndDate I_LogisticsOrder PlannedEndDate Ltst Planned Finish
PlannedStartDate I_LogisticsOrder PlannedStartDate Latest Planned Start

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_SchedProdnGetLogsOrdEndDate.
-- 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: ISCHEDLOGSORD

CREATE VIEW I_SchedProdnGetLogsOrdEndDate AS
SELECT
  aufk.PlannedEndDate AS PlannedEndDate,
  aufk.PlannedStartDate AS PlannedStartDate
FROM I_LogisticsOrder AS aufk
INNER JOIN I_SchedCapacityRqmtItemCap AS kbed ON /* join condition not captured in parsed metadata */
;