I_ChangeLogDatabaseTableText
Change Log Database Table Text
I_ChangeLogDatabaseTableText is a Basic CDS View that provides data about "Change Log Database Table Text" 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. Part of development package VDM_LCM_LT.
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 (15)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | DatabaseTable | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| EndUserText.label | Change Log Database Table Text | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | ICHGLGDBTT | view | |
| Search.searchable | true | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| VDM.lifecycle.status | #DEPRECATED | view | |
| VDM.lifecycle.successor | I_ChangeDocTableNames | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DatabaseTable | tabname | ||
| KEY | Language | ddlanguage | ||
| DatabaseTableText | ddtext | |||
| _Language | _Language |
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel:{representativeKey: 'DatabaseTable',
usageType.dataClass: #MASTER,
usageType.serviceQuality: #A,
usageType.sizeCategory: #S,
dataCategory: #TEXT}
@EndUserText.label: 'Change Log Database Table Text'
@VDM.viewType: #BASIC
//@AccessControl.authorizationCheck: #NOT_REQUIRED
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@AccessControl.personalData.blocking: #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'ICHGLGDBTT'
@Search.searchable: true
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@VDM.lifecycle.status: #DEPRECATED
@VDM.lifecycle.successor: 'I_ChangeDocTableNames'
define view I_ChangeLogDatabaseTableText
as select from dd02t
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
key tabname as DatabaseTable,
@Semantics.language
key ddlanguage as Language,
@Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.7 }
@Semantics.text
ddtext as DatabaseTableText,
_Language
}
where
as4local = 'A'
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