I_HCMTimeEventType

DDL: I_HCMTIMEEVENTTYPE Type: view_entity BASIC

HCM Time Event Types

I_HCMTimeEventType is a Basic CDS View that provides data about "HCM Time Event Types" in SAP S/4HANA. It reads from 3 data sources (I_CalendarDate, pa0050, t705p) and exposes 5 fields with key fields PersonnelNumber, HCMTimeEventDate, HCMTimeEventType. It has 1 association to related views.

Data Sources (3)

SourceAliasJoin Type
I_CalendarDate I_CalendarDate inner
pa0050 pa0050 inner
t705p t705p from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_HCMTimeEventFavorite _Favorite _Favorite.PersonnelNumber = pa0050.pernr and _Favorite.HCMTimeEventType = t705p.satza

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label HCM Time Event Types view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey HCMTimeEventType view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
Search.searchable true view
VDM.viewType #BASIC view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY PersonnelNumber pa0050 pernr Personnel no.
KEY HCMTimeEventDate I_CalendarDate CalendarDate Calendar Date
KEY HCMTimeEventType t705p satza Time event type
HCMTimeEventTypeText dd07t ddtext Short text
_Favorite _Favorite

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_HCMTimeEventType.
-- 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_HCMTimeEventType AS
SELECT
  pa0050.pernr AS PersonnelNumber,
  I_CalendarDate.CalendarDate AS HCMTimeEventDate,
  t705p.satza AS HCMTimeEventType,
  dd07t.ddtext AS HCMTimeEventTypeText
FROM t705p
INNER JOIN pa0050 ON /* join condition not captured in parsed metadata */
INNER JOIN I_CalendarDate ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_HCMTimeEventFavorite AS _Favorite ON _Favorite.PersonnelNumber = pa0050.pernr AND _Favorite.HCMTimeEventType = t705p.satza  -- association [0..1]
;