I_BusinessObjTypeText
Business Object Type - Text
I_BusinessObjTypeText is a Basic CDS View that provides data about "Business Object Type - Text" in SAP S/4HANA. It reads from 1 data source (tojtt) and exposes 6 fields with key fields BusinessObjectType, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tojtt | tojtt | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
| [1..1] | I_BusinessObjType | _BusinessObjectType | $projection.BusinessObjectType = _BusinessObjectType.BusinessObjectType |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Business Object Type - Text | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | IBOTYPET | view | |
| ObjectModel.representativeKey | BusinessObjectType | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BusinessObjectType | name | ||
| KEY | Language | language | ||
| BusinessObjectTypeName | stext | |||
| BusinessObjectTypeDescription | ntext | |||
| _BusinessObjectType | _BusinessObjectType | |||
| _Language | _Language |
@EndUserText.label: 'Business Object Type - Text'
//@Analytics.dataCategory: #TEXT
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED //or #CHECK
@AbapCatalog.sqlViewName: 'IBOTYPET'
@ObjectModel.representativeKey: 'BusinessObjectType'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.supportedCapabilities: [#SQL_DATA_SOURCE]
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
define view I_BusinessObjTypeText
as select from tojtt
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
association [1..1] to I_BusinessObjType as _BusinessObjectType on $projection.BusinessObjectType = _BusinessObjectType.BusinessObjectType
{
key name as BusinessObjectType,
@Semantics.language: true
key language as Language,
@Semantics.text: true
stext as BusinessObjectTypeName,
@Semantics.text: true
ntext as BusinessObjectTypeDescription,
_BusinessObjectType,
_Language
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TOJTT"
],
"ASSOCIATED":
[
"I_BUSINESSOBJTYPE",
"I_LANGUAGE"
],
"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