I_Aps_Com_Data_Element_Text
Descriptions of field labels of DDIC Data Elements
I_Aps_Com_Data_Element_Text is a CDS View that provides data about "Descriptions of field labels of DDIC Data Elements" in SAP S/4HANA. It reads from 2 data sources (dd04l, dd04t) and exposes 7 fields with key field Name. Part of development package SR_APS_COM_COMMON.
Annotations (4)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | I_DATA_EL_TEXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Descriptions of field labels of DDIC Data Elements | view |
@AbapCatalog.sqlViewName: 'I_DATA_EL_TEXT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Descriptions of field labels of DDIC Data Elements'
define view I_Aps_Com_Data_Element_Text
as select from dd04l as DataElement
left outer join dd04t as DataElementText on DataElementText.rollname = DataElement.rollname
and DataElementText.as4local = DataElement.as4local
and DataElementText.as4vers = DataElement.as4vers
and DataElementText.ddlanguage = $session.system_language
{
key DataElement.rollname as Name,
DataElementText.scrtext_l as LongDescription,
DataElementText.scrtext_m as MediumDescription,
DataElementText.scrtext_s as ShortDescription,
cast (DataElement.leng as abap.int4) as DataElementLength,
DataElement.lowercase as IsCaseSensitive,
DataElement.domname as DomainName
}
where
DataElement.as4local = 'A'
and DataElement.as4vers = '0000'
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