I_ProblemAnalysisStatus
Problem Analysis Status
I_ProblemAnalysisStatus is a Basic CDS View (Dimension) that provides data about "Problem Analysis Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field ProblemAnalysisStatus. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_ProblemAnalysisStatusT | _ProblemAnalysisStatusT | $projection.ProblemAnalysisStatus = _ProblemAnalysisStatusT.ProblemAnalysisStatus |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IDEFPANASTAT | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Problem Analysis Status | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.dataClass | #ORGANIZATIONAL | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.representativeKey | ProblemAnalysisStatus | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ProblemAnalysisStatus | |||
| _ProblemAnalysisStatusT | _ProblemAnalysisStatusT |
@AbapCatalog.sqlViewName: 'IDEFPANASTAT'
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Problem Analysis Status'
@Analytics.dataCategory: #DIMENSION
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: {
usageType: {
dataClass: #ORGANIZATIONAL,
sizeCategory: #S,
serviceQuality: #A
},
representativeKey: 'ProblemAnalysisStatus'
}
define view I_ProblemAnalysisStatus as select from dd07l
association [0..*] to I_ProblemAnalysisStatusT as _ProblemAnalysisStatusT on $projection.ProblemAnalysisStatus = _ProblemAnalysisStatusT.ProblemAnalysisStatus
{
//@ObjectModel.text.association: '_ProblemAnalysisStatusT'
key cast ( substring( domvalue_l, 1, 2 ) as qdefpanastat ) as ProblemAnalysisStatus,
/* Association */
_ProblemAnalysisStatusT
} where dd07l.domname = 'QDEFPANASTAT' and dd07l.as4local = 'A'
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