I_StatusProfile
Status Profile
I_StatusProfile is a Basic CDS View (Dimension) that provides data about "Status Profile" in SAP S/4HANA. It reads from 1 data source (tj20) and exposes 4 fields with key field StatusProfile. It has 2 associations to related views. Part of development package VDM_FND.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tj20 | tj20 | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_StatusProfiletext | _StatusProfileText | $projection.StatusProfile = _StatusProfileText.StatusProfile |
| [0..1] | I_Language | _Language | $projection.MasterLanguage = _Language.Language |
Annotations (13)
| 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 | ISTATUSPROFILE | view | |
| EndUserText.label | Status Profile | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #BASIC | view | |
| Metadata.allowExtensions | true | view | |
| Metadata.ignorePropagatedAnnotations | true | 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: 'ISTATUSPROFILE'
@EndUserText.label: 'Status Profile'
@Analytics : {dataCategory: #DIMENSION, dataExtraction.enabled : true}
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #BASIC
@Metadata.allowExtensions: true
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.supportedCapabilities: [ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE ]
//Commented by VDM CDS Suite Plugin:@ObjectModel.representativeKey: 'StatusProfile'
//Commented by VDM CDS Suite Plugin:
define view I_StatusProfile as select from tj20
association [0..*] to I_StatusProfiletext as _StatusProfileText on
$projection.StatusProfile = _StatusProfileText.StatusProfile
association [0..1] to I_Language as _Language on
$projection.MasterLanguage = _Language.Language
{
@ObjectModel.text.association: '_StatusProfileText'
key tj20.stsma as StatusProfile,
@ObjectModel.foreignKey.association: '_Language'
tj20.pflsp as MasterLanguage,
_StatusProfileText,
_Language
}
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