I_FHC_HCAL

DDL: I_FHC_HCAL SQL: VFHCHCALCDS Type: view

Interface view

I_FHC_HCAL is a CDS View that provides data about "Interface view" in SAP S/4HANA. It reads from 1 data source (fhc_c_hcal) and exposes 4 fields.

Data Sources (1)

SourceAliasJoin Type
fhc_c_hcal c_hcal from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName VFHCHCALCDS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Interface view view

Fields (4)

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

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.
-- 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: VFHCHCALCDS

CREATE VIEW I_FHC_HCAL AS
SELECT
  valid_from,
  valid_to,
  changer,
  changed
FROM fhc_c_hcal AS c_hcal
;