I_ProbSolvingProcStpDesc
Problem-Solving Process Step Description
I_ProbSolvingProcStpDesc is a Basic CDS View that provides data about "Problem-Solving Process Step Description" in SAP S/4HANA. It reads from 1 data source (tqcprbslvprcstpt) and exposes 6 fields with key fields ProbSolvingProcType, ProbSolvingProcStp, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tqcprbslvprcstpt | tqcprbslvprcstpt | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
| [1..1] | I_ProbSolvingProcStpConfign | _ProbSolvingProcStpConfign | $projection.ProbSolvingProcType = _ProbSolvingProcStpConfign.ProbSolvingProcType and $projection.ProbSolvingProcStp = _ProbSolvingProcStpConfign.ProbSolvingProcStp |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPRSOLPROCSTPDSC | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Problem-Solving Process Step Description | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.representativeKey | ProbSolvingProcStp | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ProbSolvingProcType | processtype | ||
| KEY | ProbSolvingProcStp | probsolvingprocessstep | ||
| KEY | Language | language | ||
| ProbSolvingProcStpDesc | description | |||
| _Language | _Language | |||
| _ProbSolvingProcStpConfign | _ProbSolvingProcStpConfign |
@AbapCatalog.sqlViewName: 'IPRSOLPROCSTPDSC'
@AbapCatalog.preserveKey: true
@AbapCatalog.compiler.compareFilter:true
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Problem-Solving Process Step Description'
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: {
dataCategory: #TEXT,
usageType: {
dataClass: #CUSTOMIZING,
sizeCategory: #S,
serviceQuality: #A },
resultSet.sizeCategory: #XS,
representativeKey: 'ProbSolvingProcStp',
semanticKey: [ 'ProbSolvingProcStp' ]
}
define view I_ProbSolvingProcStpDesc as select from tqcprbslvprcstpt
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
association [1..1] to I_ProbSolvingProcStpConfign as _ProbSolvingProcStpConfign on $projection.ProbSolvingProcType = _ProbSolvingProcStpConfign.ProbSolvingProcType and
$projection.ProbSolvingProcStp = _ProbSolvingProcStpConfign.ProbSolvingProcStp
{
key processtype as ProbSolvingProcType,
@ObjectModel.foreignKey.association: '_ProbSolvingProcStpConfign'
key probsolvingprocessstep as ProbSolvingProcStp,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key language as Language,
@Semantics.text: true
description as ProbSolvingProcStpDesc,
_Language,
_ProbSolvingProcStpConfign
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TQCPRBSLVPRCSTPT"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_PROBSOLVINGPROCSTPCONFIGN"
],
"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