I_ProdCmplncTaskTypeText
Text view for Prod Cmplnc Task Type Text
I_ProdCmplncTaskTypeText is a Basic CDS View that provides data about "Text view for Prod Cmplnc Task Type Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields Language, ProdCmplncTaskType. It has 1 association to related views. Part of development package EHFND_BO_PCEP.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPCTTYPETXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Text view for Prod Cmplnc Task Type Text | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | ProdCmplncTaskType | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| Search.searchable | true | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | |||
| KEY | ProdCmplncTaskType | |||
| DomainValue | dd07t | domvalue_l | ||
| ProdCmplncTaskTypeText | ||||
| _Language | _Language | |||
| _ProdCmplncTaskType | _ProdCmplncTaskType |
@AbapCatalog: {
sqlViewName: 'IPCTTYPETXT',
compiler.compareFilter: true,
preserveKey: true
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Text view for Prod Cmplnc Task Type Text'
@Metadata.ignorePropagatedAnnotations: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel: {
representativeKey: 'ProdCmplncTaskType',
dataCategory: #TEXT,
usageType:{ serviceQuality: #C,
sizeCategory: #S,
dataClass: #META
}
}
@Search.searchable: true
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view I_ProdCmplncTaskTypeText
as select from dd07t
association to parent I_ProdCmplncTaskType as _ProdCmplncTaskType on $projection.ProdCmplncTaskType = _ProdCmplncTaskType.ProdCmplncTaskType
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
/**** Keys ****/
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key cast(ddlanguage as spras preserving type ) as Language,
@ObjectModel.foreignKey.association: '_ProdCmplncTaskType'
@ObjectModel.text.element:['ProdCmplncTaskTypeText']
key cast(domvalue_l as ehfnd_pct_task_type) as ProdCmplncTaskType,
/**** Content ****/
@Consumption.hidden: true
dd07t.domvalue_l as DomainValue,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@Semantics.text: true
cast(ddtext as ehfnd_pct_task_type_text preserving type ) as ProdCmplncTaskTypeText,
/**** Associations ****/
_Language,
_ProdCmplncTaskType
}
where
dd07t.domname = 'EHFND_PCT_TASK_TYPE'
and dd07t.as4local = 'A'
and dd07t.as4vers = '0000'
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