I_StatusProfiletext
Status Profile - Text
I_StatusProfiletext is a Basic CDS View that provides data about "Status Profile - Text" in SAP S/4HANA. It reads from 2 data sources (tj20, tj20t) and exposes 5 fields with key fields StatusProfile, Language. It has 2 associations to related views.
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_StatusProfile | _StatusProfile | $projection.StatusProfile = _StatusProfile.StatusProfile |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | StatusProfile | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| AbapCatalog.sqlViewName | ISTATUSPROFILET | view | |
| EndUserText.label | Status Profile - Text | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| Analytics.dataExtraction.enabled | true | view | |
| VDM.viewType | #BASIC | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| AccessControl.authorizationCheck | #CHECK | view |
@ClientHandling.algorithm: #SESSION_VARIABLE //Inserted by VDM CDS Suite Plugin
@ObjectModel.representativeKey: 'StatusProfile'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #L
@AbapCatalog.sqlViewName: 'ISTATUSPROFILET'
@EndUserText.label: 'Status Profile - Text'
@ObjectModel.dataCategory: #TEXT
@Analytics.dataExtraction.enabled: true
@VDM.viewType: #BASIC
@Metadata.ignorePropagatedAnnotations: true
@AccessControl: {
authorizationCheck: #CHECK
}
@ObjectModel.supportedCapabilities: [ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #LANGUAGE_DEPENDENT_TEXT ]
define view I_StatusProfiletext as select from tj20
left outer join tj20t on
tj20.stsma = tj20t.stsma
association [0..1] to I_StatusProfile as _StatusProfile on
$projection.StatusProfile = _StatusProfile.StatusProfile
association [0..1] to I_Language as _Language on
$projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_StatusProfile'
key tj20.stsma as StatusProfile,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key tj20t.spras as Language,
@Semantics.text: true
tj20t.txt as StatusProfileName,
_StatusProfile,
_Language
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TJ20",
"TJ20T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_STATUSPROFILE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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