I_PPM_ChecklistItemResultText
Checklist Item Result
I_PPM_ChecklistItemResultText is a Basic CDS View that provides data about "Checklist Item Result" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, ChecklistItemResult. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_PPM_ChecklistItemResult | _ChecklistItemResult | $projection.ChecklistItemResult = _ChecklistItemResult.ChecklistItemResult |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Checklist Item Result | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.sqlViewName | IPPMCHKLSTIREST | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | XL | view | |
| ObjectModel.usageType.dataClass | MASTER | view | |
| ObjectModel.representativeKey | ChecklistItemResult | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | |||
| KEY | ChecklistItemResult | |||
| ChecklistItemResultText | ddtext | |||
| _ChecklistItemResult | _ChecklistItemResult | |||
| _Language | _Language |
@EndUserText.label: 'Checklist Item Result'
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IPPMCHKLSTIREST'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.usageType.sizeCategory: 'XL'
@ObjectModel.usageType.dataClass: 'MASTER'
@ObjectModel.representativeKey: 'ChecklistItemResult'
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
define view I_PPM_ChecklistItemResultText
as select from dd07t
association [0..1] to I_PPM_ChecklistItemResult as _ChecklistItemResult on $projection.ChecklistItemResult = _ChecklistItemResult.ChecklistItemResult
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@Semantics.language
key cast( ddlanguage as spras ) as Language,
@ObjectModel.foreignKey.association: '_ChecklistItemResult'
key cast ( substring( domvalue_l, 1, 1 ) as dpr_tv_cklitem_result ) as ChecklistItemResult,
@Semantics.text
ddtext as ChecklistItemResultText,
_ChecklistItemResult,
_Language
}
where
domname = 'DPR_CKLITEM_RESULT'
and as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_PPM_CHECKLISTITEMRESULT"
],
"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