P_Cfd_Reg_Cds_Text_Source
Determine Source of Texts
P_Cfd_Reg_Cds_Text_Source is a CDS View that provides data about "Determine Source of Texts" in SAP S/4HANA. It reads from 3 data sources (cfd_w_cds, tadir, cfd_w_cds_t) and exposes 1 field.
Data Sources (3)
| Source | Alias | Join Type |
|---|---|---|
| cfd_w_cds | cds | from |
| tadir | MasterRecord | inner |
| cfd_w_cds_t | Text | left_outer |
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | P_CFD_REG_CDS_TS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| EndUserText.label | Determine Source of Texts | view |
Fields (1)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| UseRegistryTranslation |
@AbapCatalog.sqlViewName: 'P_CFD_REG_CDS_TS'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_ALLOWED
@EndUserText.label: 'Determine Source of Texts'
define view P_Cfd_Reg_Cds_Text_Source as
select from cfd_w_cds as cds
inner join tadir as MasterRecord
on MasterRecord.obj_name = cds.cds_view_name
and MasterRecord.object = 'CFDC'
left outer join cfd_w_cds_t as Text
on Text.cds_view_name = cds.cds_view_name
and Text.language = MasterRecord.masterlang
{
key cds.cds_view_name,
case when Text.language <> '' and Text.description <> '' then 'X' else ' ' end as UseRegistryTranslation
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"CFD_W_CDS",
"CFD_W_CDS_T",
"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