I_RAChangeDocTableName
RA Change Doc Table Name
I_RAChangeDocTableName is a Basic CDS View that provides data about "RA Change Doc Table Name" in SAP S/4HANA. It reads from 1 data source (dd02t) and exposes 4 fields with key fields DatabaseTable, Language. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd02t | dd02t | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IRACHGDTNAME | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | RA Change Doc Table Name | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | DatabaseTable | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #BASIC | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DatabaseTable | tabname | ||
| KEY | Language | |||
| DatabaseTableText | ddtext | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IRACHGDTNAME'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'RA Change Doc Table Name'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel:{representativeKey: 'DatabaseTable',
usageType.dataClass: #MASTER,
usageType.serviceQuality: #B,
usageType.sizeCategory: #L,
dataCategory: #TEXT}
@VDM.viewType: #BASIC
define view I_RAChangeDocTableName as select from dd02t
association [0..1] to I_Language as _Language
on $projection.Language = _Language.Language
{
@ObjectModel.text.element: ['DatabaseTableText']
key tabname as DatabaseTable,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key cast(ddlanguage as spras preserving type) as Language,
@Semantics.text: true
ddtext as DatabaseTableText,
_Language
}
where
as4vers = '0000'
and as4local = 'A';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD02T"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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