I_BusTransactionCategoryText
Business Transaction Category - Text
I_BusTransactionCategoryText is a Basic CDS View that provides data about "Business Transaction Category - Text" in SAP S/4HANA. It reads from 1 data source (finsc_bttype_t) and exposes 4 fields with key fields Language, BusinessTransactionCategory. It has 1 association to related views. Part of development package FINS_BUS_TRANS_TYPE_VDM.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| finsc_bttype_t | finsc_bttype_t | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| ObjectModel.dataCategory | #TEXT | view | |
| Analytics.technicalName | IFIBUSTXCATT | view | |
| ObjectModel.representativeKey | BusinessTransactionCategory | view | |
| EndUserText.label | Business Transaction Category - Text | view | |
| Analytics.dataExtraction.enabled | true | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.modelingPattern | #LANGUAGE_DEPENDENT_TEXT | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Search.searchable | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | finsc_bttype_t | langu | |
| KEY | BusinessTransactionCategory | |||
| BusTransactionCategoryName | ||||
| _Language | _Language |
@ObjectModel.dataCategory: #TEXT
@Analytics.technicalName: 'IFIBUSTXCATT'
@ObjectModel.representativeKey: 'BusinessTransactionCategory'
@EndUserText.label: 'Business Transaction Category - Text'
@Analytics: { dataExtraction.enabled: true }
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #CHECK //NOT_REQUIRED
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.supportedCapabilities: [ #EXTRACTION_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #LANGUAGE_DEPENDENT_TEXT ]
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
//@Consumption.ranked: true
define view entity I_BusTransactionCategoryText
as select from finsc_bttype_t
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@Semantics.language
@ObjectModel.foreignKey.association: '_Language' //Inserted by VDM CDS Suite Plugin
key finsc_bttype_t.langu as Language,
// @Search.defaultSearchElement: true
// @Search.fuzzinessThreshold: 0.8
// @Search.ranking: #HIGH
key cast(finsc_bttype_t.bttype as fis_bttype preserving type ) as BusinessTransactionCategory,
@Semantics.text
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
cast(finsc_bttype_t.txt as fins_bttype_txt preserving type ) as BusTransactionCategoryName,
_Language
}
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