I_TimeSheetOvertimeCatText

DDL: I_TIMESHEETOVERTIMECATTEXT SQL: ITSOVTMT Type: view BASIC

Overtime Category for Timesheet - Text

I_TimeSheetOvertimeCatText (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Human Resources

I_TimeSheetOvertimeCatText is a Basic CDS View that provides data about "Overtime Category for Timesheet - Text" in SAP S/4HANA. It reads from 1 data source (tcats_ssc_ovtmt) and exposes 3 fields with key fields Language, TimeSheetOvertimeCategory.

SAP Help Documentation

CategoryCDS Views for Human Resources
Description
This CDS view provides the list of overtime categories and their description in different languages. Note This CDS view is only applicable for usage in cloud systems. In on-premise systems, this CDS views may not work as expected. Also, an ABAP Test Cockpit warning message will be displayed when any of these CDS views are used in an on-premise system.

Purpose
This CDS view provides the prerequisites for answering the following business questions: What is the description for an overtime category?

Structure
Object types This view is built on the following business object types: TimesheetOvertimeCategory Measures and attributes Some important measures and attributes are: Language Overtime Category Overtime Description

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessHuman Resources
Application ComponentCA-TS-S4
CapabilitiesLanguage-Dependent Text, Data Source in SQL Select, Data Source for Defining CDS Entities, Association Target for Defining CDS Entities, Data Source for Data Extraction, Data Source for Search
PackageHuman Resources for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
tcats_ssc_ovtmt tcats_ssc_ovtmt from

Annotations (19)

NameValueLevelField
AbapCatalog.sqlViewName ITSOVTMT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 002 view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.representativeKey TimeSheetOvertimeCategory view
VDM.viewType #BASIC view
Search.searchable true view
EndUserText.label Overtime Category for Timesheet - Text view
Metadata.ignorePropagatedAnnotations true view
Analytics.dataExtraction.enabled true view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Language langu Primary lang.
KEY TimeSheetOvertimeCategory overtimecat Overtime Category
TimeSheetOvertimeCategoryText text Overtime Category Description

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_TimeSheetOvertimeCatText.
-- 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: ITSOVTMT

CREATE VIEW I_TimeSheetOvertimeCatText AS
SELECT
  langu AS Language,
  overtimecat AS TimeSheetOvertimeCategory,
  text AS TimeSheetOvertimeCategoryText
FROM tcats_ssc_ovtmt
;