I_CostElementText

DDL: I_COSTELEMENTTEXT SQL: ICELEMT Type: view BASIC Package: FINS_FIS_FICO

Cost Element Text

I_CostElementText is a Basic CDS View that provides data about "Cost Element Text" in SAP S/4HANA. It reads from 1 data source (csku) and exposes 8 fields with key fields ChartOfAccounts, CostElement, Language. It has 3 associations to related views. Part of development package FINS_FIS_FICO.

Data Sources (1)

SourceAliasJoin Type
csku csku from

Associations (3)

CardinalityTargetAliasCondition
[0..*] I_ChartOfAccountsText _ChartOfAccountsText $projection.ChartOfAccounts = _ChartOfAccountsText.ChartOfAccounts
[0..1] I_Language _Language $projection.Language = _Language.Language
[0..1] I_ChartOfAccounts _ChartOfAccounts $projection.ChartOfAccounts = _ChartOfAccounts.ChartOfAccounts

Annotations (11)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
EndUserText.label Cost Element Text view
ObjectModel.dataCategory #TEXT view
AbapCatalog.sqlViewName ICELEMT view
AccessControl.authorizationCheck #CHECK view
ObjectModel.representativeKey CostElement view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY ChartOfAccounts ktopl
KEY CostElement kstar
KEY Language spras
CostElementName ktext
CostElementDescription ltext
_ChartOfAccounts _ChartOfAccounts
_Language _Language
_ChartOfAccountsText _ChartOfAccountsText
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType: #BASIC
@EndUserText.label: 'Cost Element Text'
@ObjectModel.dataCategory: #TEXT
@AbapCatalog.sqlViewName: 'ICELEMT'
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.representativeKey: 'CostElement'
@ObjectModel.usageType: {
  serviceQuality: #A,
  sizeCategory: #S,
  dataClass: #MASTER
}
//--[ GENERATED:012:29JlHNUf7jY4ioM8lnJMdG

@AccessControl.privilegedAssociations: ['_ChartOfAccountsText']
// ]--GENERATED


define view I_CostElementText
  as select from csku


  //--[ GENERATED:012:29JlHNUf7jY4ioM8lnJMdG

  association [0..*] to I_ChartOfAccountsText as _ChartOfAccountsText on $projection.ChartOfAccounts = _ChartOfAccountsText.ChartOfAccounts
  // ]--GENERATED

  association [0..1] to I_Language            as _Language            on $projection.Language = _Language.Language
  association [0..1] to I_ChartOfAccounts     as _ChartOfAccounts     on $projection.ChartOfAccounts = _ChartOfAccounts.ChartOfAccounts
{
      //--[ GENERATED:012:29JlHNUf7jY4ioM8lnJMdG

      @Consumption.valueHelpDefinition: [
        { entity:  { name:    'I_ChartOfAccountsStdVH',
                     element: 'ChartOfAccounts' }
        }]
      @ObjectModel.text.association: '_ChartOfAccountsText'
      // ]--GENERATED

      @ObjectModel.foreignKey.association: '_ChartOfAccounts'
  key ktopl as ChartOfAccounts,
      @ObjectModel.text.element: 'CostElementDescription'
  key kstar as CostElement,
      @Semantics.language: true
  key spras as Language,
      @Semantics.text: true
      ktext as CostElementName,
      @Semantics.text: true
      ltext as CostElementDescription,

      _ChartOfAccounts,
      _Language,
      //--[ GENERATED:012:29JlHNUf7jY4ioM8lnJMdG

      @Consumption.hidden: true
      _ChartOfAccountsText
      // ]--GENERATED


}