I_FldLogsDateFuncVH

DDL: I_FLDLOGSDATEFUNCVH Type: view_entity COMPOSITE

Field Logistics Date Function

I_FldLogsDateFuncVH is a Composite CDS View that provides data about "Field Logistics Date Function" in SAP S/4HANA. It reads from 1 data source (I_CalendarDate) and exposes 2 fields with key field CalendarDate.

Data Sources (1)

SourceAliasJoin Type
I_CalendarDate I_CalendarDate from

Parameters (1)

NameTypeDefault
P_DateFunction datefunctionid

Annotations (7)

NameValueLevelField
EndUserText.label Field Logistics Date Function view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #COMPOSITE view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY CalendarDate CalendarDate Calendar Date
FirstDayOfWeekDate

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_FldLogsDateFuncVH.
-- 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.
-- Parameters: P_DateFunction : datefunctionid

CREATE VIEW I_FldLogsDateFuncVH AS
SELECT
  CalendarDate,
  DATS_ADD_DAYS(FirstDayOfWeekDate,-1,'UNCHANGED') AS FirstDayOfWeekDate
FROM I_CalendarDate
;