I_FHC_HCAL_M

DDL: I_FHC_HCAL_M Type: view_entity Package: S_FHC_MAINTENANCE

Root BO for Holiday Calendar

I_FHC_HCAL_M is a CDS View that provides data about "Root BO for Holiday Calendar" in SAP S/4HANA. It reads from 1 data source (I_FHC_HCAL) and exposes 6 fields. It has 2 associations to related views. Part of development package S_FHC_MAINTENANCE.

Data Sources (1)

SourceAliasJoin Type
I_FHC_HCAL I_FHC_HCAL from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_FHC_HCAL_ASSGN_M _assgn
[0..*] I_FHC_HCAL_T_M _text

Annotations (2)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Root BO for Holiday Calendar view

Fields (6)

KeyFieldSource TableSource FieldDescription
valid_from valid_from Validity Start Time
valid_to valid_to Validity End Time
changer changer Last Changed By
changed changed Time Stamp
_assgn _assgn
_text _text

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_FHC_HCAL_M.
-- 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.

CREATE VIEW I_FHC_HCAL_M AS
SELECT
  valid_from,
  valid_to,
  changer,
  changed
FROM I_FHC_HCAL
LEFT OUTER JOIN I_FHC_HCAL_ASSGN_M AS _assgn ON /* condition not available in parsed metadata */  -- association [0..*]
LEFT OUTER JOIN I_FHC_HCAL_T_M AS _text ON /* condition not available in parsed metadata */  -- association [0..*]
;