I_DistrCtrlgBusTransacType

DDL: I_DISTRCTRLGBUSTRANSACTYPE Type: view_entity COMPOSITE

Distribution Controlling Business Transaction Type

I_DistrCtrlgBusTransacType is a Composite CDS View that provides data about "Distribution Controlling Business Transaction Type" in SAP S/4HANA. It reads from 2 data sources (tj01t, t002) and exposes 4 fields with key fields ControllingBusTransacType, Language.

Data Sources (2)

SourceAliasJoin Type
tj01t a from
t002 b inner

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Distribution Controlling Business Transaction Type view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #COMPOSITE view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ControllingBusTransacType tj01t vrgng
KEY Language tj01t spras
ControllingBusTransacTypeText tj01t txt
CtrlgBusTransacTypeShrtTxt tj01t shorttxt
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Distribution Controlling Business Transaction Type'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #X,
  sizeCategory: #S,
  dataClass: #MIXED
}
@VDM.viewType: #COMPOSITE
define view entity I_DistrCtrlgBusTransacType
  as select from tj01t as a
    inner join   t002  as b on b.spras = a.spras
{
  key a.vrgng    as ControllingBusTransacType,
  key a.spras    as Language,

      a.txt      as ControllingBusTransacTypeText,
      a.shorttxt as CtrlgBusTransacTypeShrtTxt
}
where
  (
       a.vrgng = 'GPDP'
    or a.vrgng = 'GPDS'
    or a.vrgng = 'GPDO'
  )
  and  a.spras = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T002",
"TJ01T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/