I_FHC_HOL

DDL: I_FHC_HOL SQL: VFHCHOL Type: view Package: S_FHC_MAINTENANCE

Holidays

I_FHC_HOL is a CDS View that provides data about "Holidays" in SAP S/4HANA. It reads from 1 data source (fhc_c_hol) and exposes 6 fields with key field holiday_id. Part of development package S_FHC_MAINTENANCE.

Data Sources (1)

SourceAliasJoin Type
fhc_c_hol fhc_c_hol from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName VFHCHOL view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Holidays view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY holiday_id fhc_c_hol holiday_id Holiday ID
type fhc_c_hol type Worklist Type
confession fhc_c_hol confession Religion
class fhc_c_hol class User Group
changer fhc_c_hol changer Last Changed By
changed fhc_c_hol changed Time Stamp

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_HOL.
-- 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: VFHCHOL

CREATE VIEW I_FHC_HOL AS
SELECT
  fhc_c_hol.holiday_id AS holiday_id,
  fhc_c_hol.type AS type,
  fhc_c_hol.confession AS confession,
  fhc_c_hol.class AS class,
  fhc_c_hol.changer AS changer,
  fhc_c_hol.changed AS changed
FROM fhc_c_hol
;