I_CostCtrActyTypeLatestVH

DDL: I_COSTCTRACTYTYPELATESTVH SQL: IFICCATLVH Type: view COMPOSITE

Value Help for Latest Cost Center Actvity Type

I_CostCtrActyTypeLatestVH is a Composite CDS View that provides data about "Value Help for Latest Cost Center Actvity Type" in SAP S/4HANA. It reads from 1 data source (P_CostCtrActivityTypeLatest) and exposes 8 fields with key fields ControllingArea, CostCtrActivityType. It has 3 associations to related views. It is exposed through 3 OData services (UI_HCMAPPROVETIMESHEET, UI_HCMMYTIMESHEET, UI_HCMMYTIMESHEET). It is used in 2 Fiori applications: Approve Timesheets (S/4HANA / Version 4), My Timesheet (S/4HANA / Version 4).

Data Sources (1)

SourceAliasJoin Type
P_CostCtrActivityTypeLatest P_CostCtrActivityTypeLatest from

Associations (3)

CardinalityTargetAliasCondition
[1..1] I_CostCenterActivityType _CostCenterActivityType $projection.ControllingArea = _CostCenterActivityType.ControllingArea and $projection.CostCtrActivityType = _CostCenterActivityType.CostCtrActivityType and $projection.ValidityEndDate = _CostCenterActivityType.ValidityEndDate
[1..1] I_ControllingArea _ControllingArea $projection.ControllingArea = _ControllingArea.ControllingArea
[0..*] I_CostCenterActivityTypeText _Text $projection.ControllingArea = _Text.ControllingArea and $projection.CostCtrActivityType = _Text.CostCtrActivityType and $projection.ValidityEndDate = _Text.ValidityEndDate

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IFICCATLVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
EndUserText.label Value Help for Latest Cost Center Actvity Type view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey CostCtrActivityType view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view

OData Services (3)

ServiceBindingVersionContractRelease
UI_HCMAPPROVETIMESHEET UI_HCMAPPROVETIMESHEET V2 C1 NOT_RELEASED
UI_HCMMYTIMESHEET API_HCMMYTIMESHEET V2 C2 NOT_RELEASED
UI_HCMMYTIMESHEET UI_HCMMYTIMESHEET V2 C1 NOT_RELEASED

Fiori Apps (2)

App IDApp NameTypeDescription
F2585A Approve Timesheets (S/4HANA / Version 4) Analytical With this app, you as a manager can quickly view all pending approvals of your direct reports and approve timesheets using desktop or mobile devices.
F3074A My Timesheet (S/4HANA / Version 4) Transactional You, as an employee, can use this app to manage your time entries quickly and efficiently using a desktop or a mobile device.

Approve Timesheets (S/4HANA / Version 4)

Business Role: Manager - HR Info

With this app, you as a manager can quickly view all pending approvals of your direct reports and approve timesheets using desktop, tablet or mobile devices. This app provides the following key features: Review timesheets for all your employees and view time entry compliance at a glance. View all time entries pending approval or that have already been approved. Filter time entries based on a date range, on specific attributes, or per employee. View designation and contact information of each employee. Approve or reject records by week.

My Timesheet (S/4HANA / Version 4)

Business Role: Employee - HR Info

You, as an employee, can use this app to manage your time entries quickly and efficiently using a desktop or a mobile device. You can use this app to do the following: enter time records for the chosen personnel assignment using form entry or assignments. create or import assignments and manage them. create and manage assignment groups. use horizontal or grid view for time entries. view the calendar for a chosen month on a desktop device, and for a given week on a mobile device. copy and paste time records. access the to-do list. switch between the allowed data entry profiles for a given time entry.

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY ControllingArea ControllingArea Controlling Area
KEY CostCtrActivityType CostCtrActivityType Activity Type
ValidityEndDate ValidityEndDate ValidTo
ValidityStartDate _CostCenterActivityType ValidityStartDate Validity Start Date
CostCtrActivityTypeCategory _CostCenterActivityType CostCtrActivityTypeCategory
CostCtrActivityTypeQtyUnit _CostCenterActivityType CostCtrActivityTypeQtyUnit
_Text _Text
_ControllingArea _ControllingArea

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_CostCtrActyTypeLatestVH.
-- 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: IFICCATLVH

CREATE VIEW I_CostCtrActyTypeLatestVH AS
SELECT
  ControllingArea,
  CostCtrActivityType,
  ValidityEndDate,
  _CostCenterActivityType.ValidityStartDate AS ValidityStartDate,
  _CostCenterActivityType.CostCtrActivityTypeCategory AS CostCtrActivityTypeCategory,
  _CostCenterActivityType.CostCtrActivityTypeQtyUnit AS CostCtrActivityTypeQtyUnit
FROM P_CostCtrActivityTypeLatest
LEFT OUTER JOIN I_CostCenterActivityType AS _CostCenterActivityType ON ControllingArea = _CostCenterActivityType.ControllingArea AND CostCtrActivityType = _CostCenterActivityType.CostCtrActivityType AND ValidityEndDate = _CostCenterActivityType.ValidityEndDate  -- association [1..1]
LEFT OUTER JOIN I_ControllingArea AS _ControllingArea ON ControllingArea = _ControllingArea.ControllingArea  -- association [1..1]
LEFT OUTER JOIN I_CostCenterActivityTypeText AS _Text ON ControllingArea = _Text.ControllingArea AND CostCtrActivityType = _Text.CostCtrActivityType AND ValidityEndDate = _Text.ValidityEndDate  -- association [0..*]
;