I_BusinessTransactionType

DDL: I_BUSINESSTRANSACTIONTYPE SQL: IBUSTRANTYPE Type: view BASIC Package: FINS_BUS_TRANS_TYPE_VDM

Business Transaction Type

I_BusinessTransactionType is a Basic CDS View (Dimension) that provides data about "Business Transaction Type" in SAP S/4HANA. It reads from 1 data source (finsc_custbttype) and exposes 8 fields with key field BusinessTransactionType. It has 3 associations to related views. Part of development package FINS_BUS_TRANS_TYPE_VDM.

Data Sources (1)

SourceAliasJoin Type
finsc_custbttype finsc_custbttype from

Associations (3)

CardinalityTargetAliasCondition
[0..*] I_BusTransactionTypeText _Text $projection.BusinessTransactionType = _Text.BusinessTransactionType
[0..*] I_BusTransacTypeHierNode _BusTransacTypeHierNode $projection.BusinessTransactionType = _BusTransacTypeHierNode.BusinessTransactionType
[0..1] I_BusinessTransactionCategory _BusinessTransactionCategory $projection.BusinessTransactionCategory = _BusinessTransactionCategory.BusinessTransactionCategory

Annotations (16)

NameValueLevelField
ObjectModel.representativeKey BusinessTransactionType view
EndUserText.label Business Transaction Type view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IBUSTRANTYPE view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.sapObjectNodeType.name BusinessTransactionType view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY BusinessTransactionType
BusinessTransactionCategory
BusTransIsSubjToPerdControl xperiodcontrol
PeriodControlIsLedgerSpecific xperiodbyledger
BusinessTransTypeIsInactive inactive
_Text _Text
_BusTransacTypeHierNode _BusTransacTypeHierNode
_BusinessTransactionCategory _BusinessTransactionCategory
@ObjectModel.representativeKey: 'BusinessTransactionType' //Inserted by VDM CDS Suite Plugin

@EndUserText.label: 'Business Transaction Type'
@Analytics: { dataCategory: #DIMENSION, dataExtraction.enabled: true }
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IBUSTRANTYPE'
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK //NOT_REQUIRED

@ClientHandling.algorithm: #SESSION_VARIABLE

@ObjectModel.supportedCapabilities: [ #ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #EXTRACTION_DATA_SOURCE ]
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION 
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.sapObjectNodeType.name: 'BusinessTransactionType' 
@Metadata.allowExtensions: true
@Metadata.ignorePropagatedAnnotations: true

define view I_BusinessTransactionType
  // Corresponds to calculation view 'sap.hba.ecc.BusinessTransactionType'

  as select from finsc_custbttype

  association [0..*] to I_BusTransactionTypeText as _Text on $projection.BusinessTransactionType = _Text.BusinessTransactionType

  association [0..*] to I_BusTransacTypeHierNode as _BusTransacTypeHierNode on $projection.BusinessTransactionType = _BusTransacTypeHierNode.BusinessTransactionType
  
  association [0..1] to I_BusinessTransactionCategory  as _BusinessTransactionCategory   on  $projection.BusinessTransactionCategory = _BusinessTransactionCategory.BusinessTransactionCategory 
  
{
      @ObjectModel.hierarchy.association: '_BusTransacTypeHierNode'
      @ObjectModel.text.association: '_Text'
  key cast(cbttype as fis_custbttype preserving type ) as BusinessTransactionType,
      @ObjectModel.foreignKey.association: '_BusinessTransactionCategory'
      cast(bttype as fis_bttype preserving type ) as BusinessTransactionCategory,
      @Semantics.booleanIndicator:true 
      xperiodcontrol as BusTransIsSubjToPerdControl,
      @Semantics.booleanIndicator:true 
      xperiodbyledger as PeriodControlIsLedgerSpecific,
      @Semantics.booleanIndicator:true 
      inactive as BusinessTransTypeIsInactive,
      _Text,
      _BusTransacTypeHierNode,
      _BusinessTransactionCategory 
      
};