I_ChangeDocFieldLabel
Label für Feldnamen
I_ChangeDocFieldLabel is a Basic CDS View that provides data about "Label für Feldnamen" in SAP S/4HANA. It reads from 1 data source (ddddlsrc03nt) and exposes 4 fields with key fields Language, DatabaseTableName, FieldName.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| ddddlsrc03nt | Fieldtextcds | from |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IBCCHANGEFNLABEL | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Label für Feldnamen | view | |
| VDM.viewType | #BASIC | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | ddddlsrc03nt | ddlanguage | |
| KEY | DatabaseTableName | ddddlsrc03nt | ddlname | |
| KEY | FieldName | ddddlsrc03nt | fieldname | Feldname |
| Text | ddddlsrc03nt | fieldlabel | Feldname |
@AbapCatalog.sqlViewName: 'IBCCHANGEFNLABEL'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Label für Feldnamen'
@VDM.viewType: #BASIC
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] }*/
define view I_ChangeDocFieldLabel
as select from ddddlsrc03nt as Fieldtextcds
{
@Semantics.language: true
@UI.hidden: true
key Fieldtextcds.ddlanguage as Language,
@UI.hidden: true
key Fieldtextcds.ddlname as DatabaseTableName,
// @ObjectModel.text.element: [ 'Text' ]
// @Search.defaultSearchElement: true
@EndUserText.label: 'Feldname'
// @UI.textArrangement: #TEXT_ONLY
@UI.hidden: true
key Fieldtextcds.fieldname as FieldName,
@EndUserText.label: 'Feldname'
@Semantics.text: true
// @Search.defaultSearchElement: true
Fieldtextcds.fieldlabel as Text
}
where
ddlanguage = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DDDDLSRC03NT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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