I_BreakdownType

DDL: I_BREAKDOWNTYPE SQL: IBRKDWNTYPE Type: view BASIC

Consolidation Breakdown Type

I_BreakdownType is a Basic CDS View (Dimension) that provides data about "Consolidation Breakdown Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field BreakdownType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_BreakdownTypeText _Text $projection.BreakdownType = _Text.BreakdownType

Annotations (11)

NameValueLevelField
EndUserText.label Consolidation Breakdown Type view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey BreakdownType view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IBRKDWNTYPE view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY BreakdownType
_Text _Text
@EndUserText.label: 'Consolidation Breakdown Type'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'BreakdownType'
@Analytics: {
  dataCategory: #DIMENSION
}
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IBRKDWNTYPE'
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType: {
  dataClass: #CUSTOMIZING,
  serviceQuality: #A,
  sizeCategory: #S
}

// Obsolete since CE2302, use I_CnsldtnBreakdownType instead.


define view I_BreakdownType
  as select from dd07l
  association [0..*] to I_BreakdownTypeText as _Text on $projection.BreakdownType = _Text.BreakdownType
{
      @ObjectModel.text.association: '_Text'
  key cast(domvalue_l as fc_brkdown) as BreakdownType,
      _Text
}
where
      dd07l.domname  = 'FC_BRKDOWN'
  and dd07l.as4local = 'A';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_BREAKDOWNTYPETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/