I_StatusProfiletext

DDL: I_STATUSPROFILETEXT SQL: ISTATUSPROFILET Type: view BASIC

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.

Data Sources (2)

SourceAliasJoin Type
tj20 tj20 from
tj20t tj20t left_outer

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_StatusProfile _StatusProfile $projection.StatusProfile = _StatusProfile.StatusProfile
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

NameValueLevelField
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

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY StatusProfile tj20 stsma
KEY Language tj20t spras
StatusProfileName tj20t txt
_StatusProfile _StatusProfile
_Language _Language
@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":""
}
}*/