I_UtilsAccountDetnCodeText

DDL: I_UTILSACCOUNTDETNCODETEXT SQL: IEACCTDETNCODET Type: view BASIC

Account Determination Code - Text

I_UtilsAccountDetnCodeText is a Basic CDS View that provides data about "Account Determination Code - Text" in SAP S/4HANA. It reads from 1 data source (te097t) and exposes 9 fields with key fields Language, CompanyCode, Division, UtilitiesAccountDetnCode. It has 4 associations to related views.

Data Sources (1)

SourceAliasJoin Type
te097t te097t from

Associations (4)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[1..1] I_UtilsAccountDetnCode _UtilsAccountDetnCode $projection.CompanyCode = _UtilsAccountDetnCode.CompanyCode and $projection.Division = _UtilsAccountDetnCode.Division and $projection.UtilitiesAccountDetnCode = _UtilsAccountDetnCode.UtilitiesAccountDetnCode
[0..1] I_CompanyCode _CompanyCode $projection.CompanyCode = _CompanyCode.CompanyCode
[0..1] I_Division _Division $projection.Division = _Division.Division

Annotations (14)

NameValueLevelField
EndUserText.label Account Determination Code - Text view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IEACCTDETNCODET view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view
Analytics.dataExtraction.enabled true view
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.compiler.compareFilter true view
ObjectModel.representativeKey UtilitiesAccountDetnCode view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY Language te097t spras
KEY CompanyCode te097t bukrs
KEY Division te097t sparte
KEY UtilitiesAccountDetnCode
UtilitiesAccountDetnCodeName
_Language _Language
_UtilsAccountDetnCode _UtilsAccountDetnCode
_CompanyCode _CompanyCode
_Division _Division
@EndUserText.label: 'Account Determination Code - Text'
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IEACCTDETNCODET'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel: { supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #EXTRACTION_DATA_SOURCE ]
              }
@Analytics: {  dataExtraction: { enabled: true } }
@Metadata.ignorePropagatedAnnotations:true
//@AbapCatalog.preserveKey:true

@AbapCatalog.compiler.compareFilter:true
@ObjectModel.representativeKey: 'UtilitiesAccountDetnCode'
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT

define view I_UtilsAccountDetnCodeText
  as select from te097t
  association [0..1] to I_Language             as _Language             on  $projection.Language = _Language.Language
  association [1..1] to I_UtilsAccountDetnCode as _UtilsAccountDetnCode on  $projection.CompanyCode              = _UtilsAccountDetnCode.CompanyCode
                                                                        and $projection.Division                 = _UtilsAccountDetnCode.Division
                                                                        and $projection.UtilitiesAccountDetnCode = _UtilsAccountDetnCode.UtilitiesAccountDetnCode
  association [0..1] to I_CompanyCode          as _CompanyCode          on  $projection.CompanyCode = _CompanyCode.CompanyCode
  association [0..1] to I_Division             as _Division             on  $projection.Division = _Division.Division
{
      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key te097t.spras                                             as Language,
      @ObjectModel.foreignKey.association: '_CompanyCode'
  key te097t.bukrs                                             as CompanyCode,
      @ObjectModel.foreignKey.association: '_Division'
  key te097t.sparte                                            as Division,
  key cast(te097t.kofiz  as e_kofiz_vdm      preserving type ) as UtilitiesAccountDetnCode,
      @Semantics.text: true
      cast(te097t.text50 as e_kofiz_name_vdm preserving type)  as UtilitiesAccountDetnCodeName,

      _Language,
      _UtilsAccountDetnCode,
      _CompanyCode,
      _Division
}