I_ChangeDocViewText
Texte zur Anzeige von Änderungsbelegen
I_ChangeDocViewText is a Basic CDS View that provides data about "Texte zur Anzeige von Änderungsbelegen" in SAP S/4HANA. It reads from 1 data source (cdview_text) and exposes 9 fields with key fields Objectfilter, TextId, TextType, ObjectClass, Object.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| cdview_text | Viewtext | from |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IBCCHANGEVIEWT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Texte zur Anzeige von Änderungsbelegen | view | |
| VDM.viewType | #BASIC | view |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Objectfilter | cdview_text | filter | |
| KEY | TextId | cdview_text | textid | |
| KEY | TextType | cdview_text | texttype | |
| KEY | ObjectClass | cdview_text | objectclass | |
| KEY | Object | cdview_text | objectid | |
| KEY | ObjectDescription | cdview_text | objdescription | |
| KEY | DatabaseTable | cdview_text | tabname | |
| KEY | Fieldname | cdview_text | fieldname | |
| Text | cdview_text | text |
@AbapCatalog.sqlViewName: 'IBCCHANGEVIEWT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Texte zur Anzeige von Änderungsbelegen'
@VDM.viewType: #BASIC
define view I_ChangeDocViewText
as select from cdview_text as Viewtext
{
@UI.hidden: true
key Viewtext.filter as Objectfilter,
@UI.hidden: true
key Viewtext.textid as TextId,
@UI.hidden: true
key Viewtext.texttype as TextType,
key Viewtext.objectclass as ObjectClass,
key Viewtext.objectid as Object,
key Viewtext.objdescription as ObjectDescription,
key Viewtext.tabname as DatabaseTable,
key Viewtext.fieldname as Fieldname,
Viewtext.text as Text
}
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