I_DistrCtrlgBusTransacType
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.
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| 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 |
@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":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA