I_SecurityAccountTypeText

DDL: I_SECURITYACCOUNTTYPETEXT SQL: ISECACCOUNTTYPET Type: view BASIC Package: FTR_SECURITIES_CORE

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. Part of development package FTR_SECURITIES_CORE.

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 (17)

NameValueLevelField
AbapCatalog.buffering.status #NOT_ALLOWED view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName ISECACCOUNTTYPET view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Security Account Type - Text view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.representativeKey SecurityAccountType view
Analytics.dataExtraction.enabled true view
Analytics.dataExtraction.delta.changeDataCapture.automatic true view
VDM.viewType #BASIC view
ObjectModel.sapObjectNodeType.name SecuritiesAccountTypeText 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.sqlViewName: 'ISECACCOUNTTYPET'  
@AccessControl.authorizationCheck: #NOT_REQUIRED // according to XLS / DCL 

@ClientHandling.algorithm: #SESSION_VARIABLE  
@EndUserText.label: 'Security Account Type - Text'
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #M
@Metadata.ignorePropagatedAnnotations: true // For C1-Release 

@ObjectModel:{
    dataCategory: #TEXT,
    supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #EXTRACTION_DATA_SOURCE ],
    modelingPattern: #LANGUAGE_DEPENDENT_TEXT,
    representativeKey: 'SecurityAccountType'
}
@Analytics: {
    dataExtraction:{
      enabled: true,
      delta.changeDataCapture: {
            automatic: true
      }
    }
}
@VDM.viewType: #BASIC
@ObjectModel.sapObjectNodeType.name: 'SecuritiesAccountTypeText'

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
}