P_Cfd_Data_Element_Text
Custom Fields: Text for data element
P_Cfd_Data_Element_Text is a CDS View that provides data about "Custom Fields: Text for data element" in SAP S/4HANA. It reads from 2 data sources (dd04t, tadir) and exposes 8 fields with key fields DataElement, Language.
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | P_CFD_DTEL_T | view | |
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| EndUserText.label | Custom Fields: Text for data element | view | |
| VDM.private | true | view |
@AbapCatalog.sqlViewName: 'P_CFD_DTEL_T'
@AccessControl.authorizationCheck: #NOT_ALLOWED
@AbapCatalog.compiler.compareFilter: true
@EndUserText.label: 'Custom Fields: Text for data element'
@VDM.private: true
define view P_Cfd_Data_Element_Text
as select from dd04t as DataElementText
inner join tadir as ObjectDirectory on ObjectDirectory.pgmid = 'R3TR'
and ObjectDirectory.object = 'DTEL'
and ObjectDirectory.obj_name = DataElementText.rollname
{
key DataElementText.rollname as DataElement,
key DataElementText.ddlanguage as Language,
DataElementText.ddtext as Tooltip,
DataElementText.reptext as Heading,
DataElementText.scrtext_s as ShortLabel,
DataElementText.scrtext_m as MediumLabel,
DataElementText.scrtext_l as LongLabel,
ObjectDirectory.masterlang as MasterLanguage
}
where
DataElementText.as4local = 'A'
and DataElementText.as4vers = '0000'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD04T",
"TADIR"
],
"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