I_SecurityAccountTypeText

DDL: I_SECURITYACCOUNTTYPETEXT SQL: ISECACCOUNTTYPET Type: view BASIC

Security Account Type - Text

I_SecurityAccountTypeText is a Basic CDS View that provides data about "Security Account Type - Text" in SAP S/4HANA. It reads from 1 data source (trsc_sa_type_t) and exposes 5 fields with key fields Language, SecurityAccountType. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
trsc_sa_type_t SecurityAccountTypeText from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_SecurityAccountType _SecurityAccountType $projection.SecurityAccountType = _SecurityAccountType.SecurityAccountType
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (15)

NameValueLevelField
AbapCatalog.buffering.status #NOT_ALLOWED view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName ISECACCOUNTTYPET view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Security Account Type - Text view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey SecurityAccountType view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language trsc_sa_type_t spras
KEY SecurityAccountType trsc_sa_type_t secacc_type
SecurityAccountTypeName
_SecurityAccountType _SecurityAccountType
_Language _Language
// harmonized annotations 

@AbapCatalog.buffering.status: #NOT_ALLOWED
@AbapCatalog.compiler.compareFilter: true  
@AbapCatalog.preserveKey:true // only if required by ATC check 

@AbapCatalog.sqlViewName: 'ISECACCOUNTTYPET'  
@AccessControl.authorizationCheck: #NOT_REQUIRED // according to XLS / DCL 

@ClientHandling.algorithm: #SESSION_VARIABLE  
@EndUserText.label: 'Security Account Type - Text'
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET]
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'SecurityAccountType'
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #M
@Metadata.ignorePropagatedAnnotations: true // For C1-Release 

@VDM.viewType: #BASIC

define view I_SecurityAccountTypeText
  as select from trsc_sa_type_t as SecurityAccountTypeText

  association [0..1] to I_SecurityAccountType as _SecurityAccountType on $projection.SecurityAccountType = _SecurityAccountType.SecurityAccountType
  association [0..1] to I_Language            as _Language            on $projection.Language = _Language.Language
{
      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key SecurityAccountTypeText.spras                                  as Language,
      @ObjectModel.foreignKey.association: '_SecurityAccountType'
  key SecurityAccountTypeText.secacc_type                            as SecurityAccountType,

      @Semantics.text: true
      cast(SecurityAccountTypeText.secacc_type_text as ftr_gen_sec_account_type_name preserving type) as SecurityAccountTypeName,

      _SecurityAccountType,
      _Language
}        
  
  
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"TRSC_SA_TYPE_T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_SECURITYACCOUNTTYPE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/