I_ActivityBasedCostingTmpl

DDL: I_ACTIVITYBASEDCOSTINGTMPL SQL: IACTYBSDCOSTTMPL Type: view BASIC

CO-ABC Template Master Data

I_ActivityBasedCostingTmpl is a Basic CDS View (Dimension) that provides data about "CO-ABC Template Master Data" in SAP S/4HANA. It reads from 1 data source (cotpl) and exposes 7 fields with key fields ControllingArea, ActivityBasedCostingEnvrmt, ActivityBasedCostingTemplate.

Data Sources (1)

SourceAliasJoin Type
cotpl cotpl from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IACTYBSDCOSTTMPL view
AbapCatalog.compiler.compareFilter true view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.representativeKey ActivityBasedCostingTemplate view
Metadata.allowExtensions true view
EndUserText.label CO-ABC Template Master Data view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY ControllingArea kokrs
KEY ActivityBasedCostingEnvrmt class
KEY ActivityBasedCostingTemplate template
ActivityBasedCostingTmplDesc
_Text _Text
_ControllingArea _ControllingArea
_ActivityBasedCostingEnvrmt _ActivityBasedCostingEnvrmt
@AbapCatalog.sqlViewName: 'IACTYBSDCOSTTMPL'
@AbapCatalog.compiler.compareFilter: true

@Analytics.dataCategory: #DIMENSION
@Analytics.dataExtraction.enabled: true

@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC

@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.representativeKey: 'ActivityBasedCostingTemplate'

@Metadata.allowExtensions:true

@EndUserText.label: 'CO-ABC Template Master Data'
define view I_ActivityBasedCostingTmpl as select from cotpl

  association[1] to I_ControllingArea as _ControllingArea on $projection.ControllingArea = _ControllingArea.ControllingArea
  association[1] to I_ActivityBasedCostingEnvrmt as _ActivityBasedCostingEnvrmt on $projection.ActivityBasedCostingEnvrmt = _ActivityBasedCostingEnvrmt.ActivityBasedCostingEnvrmt
  association[0..*] to I_ActyBasedCostingTmplText as _Text on  $projection.ControllingArea              = _Text.ControllingArea 
                                                           and $projection.ActivityBasedCostingEnvrmt   = _Text.ActivityBasedCostingEnvrmt  
                                                           and $projection.ActivityBasedCostingTemplate = _Text.ActivityBasedCostingTemplate
  
{
      @ObjectModel.foreignKey.association: '_ControllingArea'
  key kokrs     as ControllingArea,
      @ObjectModel.foreignKey.association: '_ActivityBasedCostingEnvrmt'
  key class     as ActivityBasedCostingEnvrmt,
      @ObjectModel.text.association: '_Text' 
  key template        as ActivityBasedCostingTemplate,
  
      @Semantics.text: true
      _Text[1:Language=$session.system_language].ActivityBasedCostingTmplDesc,
      
      _Text,
      _ControllingArea,
      _ActivityBasedCostingEnvrmt
  
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_ACTYBASEDCOSTINGTMPLTEXT",
"COTPL"
],
"ASSOCIATED":
[
"I_ACTIVITYBASEDCOSTINGENVRMT",
"I_ACTYBASEDCOSTINGTMPLTEXT",
"I_CONTROLLINGAREA"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/