I_Cpdtypeofworktext
Get work type text
I_Cpdtypeofworktext is a Basic CDS View that provides data about "Get work type text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields WorkType, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_Cpdworktype | _WorkType | $projection.WorkType = _WorkType.WorkType |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IWRKTYPTXT | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Get work type text | view | |
| ObjectModel.representativeKey | workType | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.buffering.status | #SWITCHED_OFF | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | WorkType | domvalue_l | ||
| KEY | Language | |||
| WorkTypeName | ddtext | |||
| _WorkType | _WorkType | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IWRKTYPTXT'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #L
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Get work type text'
@ObjectModel.representativeKey: 'workType'
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@AbapCatalog.buffering.status: #SWITCHED_OFF
define view I_Cpdtypeofworktext
as select from dd07t
association [1..1] to I_Cpdworktype as _WorkType on $projection.WorkType = _WorkType.WorkType
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
key domvalue_l as WorkType,
@Semantics.language: true
key cast( ddlanguage as spras) as Language,
@Semantics.text: true
ddtext as WorkTypeName,
_WorkType,
_Language
}
where
domname = '/CPD/PWS_WS_WORK_TYPE'
and domvalue_l <> ''
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_CPDWORKTYPE",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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