R_TrdgDocApplicationStatusText
Application Status of Trading Doc - Text
R_TrdgDocApplicationStatusText is a Basic CDS View that provides data about "Application Status of Trading Doc - Text" in SAP S/4HANA. It reads from 1 data source (tb2bat) and exposes 5 fields with key fields Language, TrdgDocApplicationStatus. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tb2bat | tb2bat | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | TrdgDocApplicationStatus | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| Search.searchable | true | view | |
| Analytics.technicalName | RAPPLSTATUST | view | |
| EndUserText.label | Application Status of Trading Doc - Text | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | spras | ||
| KEY | TrdgDocApplicationStatus | btbsta | ||
| TrdgDocApplicationStatusName | bezei | |||
| _TrdgDocApplicationStatus | _TrdgDocApplicationStatus | |||
| _Language | _Language |
//@AbapCatalog: {
// sqlViewName: 'IWB2TCSTATUST',
// compiler.compareFilter: true,
// preserveKey: true,
// buffering: {
// status: #ACTIVE,
// type: #GENERIC,
// numberOfKeyFields: 001
// }
//}
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #SAP_INTERNAL_API
}
@AccessControl: {
authorizationCheck: #NOT_REQUIRED
}
@ObjectModel: {
representativeKey: 'TrdgDocApplicationStatus',
dataCategory: #TEXT,
usageType: {
dataClass: #CUSTOMIZING,
serviceQuality: #B,
sizeCategory: #S
}
}
//@ClientHandling: {
// type: #INHERITED,
// algorithm: #SESSION_VARIABLE
//}
//@Analytics: {
// internalName: #LOCAL
//
//}
@Search.searchable: true
@Analytics.technicalName: 'RAPPLSTATUST'
@EndUserText.label: 'Application Status of Trading Doc - Text'
@Metadata.ignorePropagatedAnnotations: true
define view entity R_TrdgDocApplicationStatusText
as select from tb2bat
association to parent R_TrdgDocApplicationStatus as _TrdgDocApplicationStatus on $projection.TrdgDocApplicationStatus = _TrdgDocApplicationStatus.TrdgDocApplicationStatus
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key spras as Language,
@ObjectModel.foreignKey.association: '_TrdgDocApplicationStatus'
@ObjectModel.text.element: ['TrdgDocApplicationStatusName']
@Search.ranking: #HIGH
@Search.defaultSearchElement: false
key btbsta as TrdgDocApplicationStatus,
@Search.ranking: #LOW
@Search.defaultSearchElement: true
@Semantics.text: true
@Consumption.filter.hidden: true
@UI.textArrangement: #TEXT_ONLY
bezei as TrdgDocApplicationStatusName,
//Associations
_TrdgDocApplicationStatus,
_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