I_TaskType
Task Type
I_TaskType is a CDS View that provides data about "Task Type" in SAP S/4HANA. It reads from 2 data sources (dd07l, dd07t) and exposes 2 fields with key field domvalue_l.
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Task Type | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Task Type'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #S,
dataClass: #MIXED
}
@ObjectModel.resultSet.sizeCategory: #XS
define view entity I_TaskType
as select from dd07l as Domain
left outer join dd07t as DomainText on Domain.domname = DomainText.domname
and Domain.as4local = DomainText.as4local
and Domain.valpos = DomainText.valpos
and Domain.as4vers = DomainText.as4vers
{
key Domain.domvalue_l,
@Semantics.text: true
DomainText.ddtext as TransportRequestTypeText
}
where
Domain.domname = 'TRFUNCTION'
and Domain.as4local = 'A'
and Domain.as4vers = '0000'
and(
Domain.domvalue_l = 'X'
or Domain.domvalue_l = 'Q'
)
and DomainText.ddlanguage = $session.system_language
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA