P_Cfd_Reg_Transfer_Text_Source
Determine Source of Texts
P_Cfd_Reg_Transfer_Text_Source is a CDS View that provides data about "Determine Source of Texts" in SAP S/4HANA. It reads from 4 data sources (cfd_w_trans, tadir, cfd_w_trans_t, cfd_w_trans_t) and exposes 2 fields. Part of development package S_CFD_REGISTRY_DB.
Data Sources (4)
| Source | Alias | Join Type |
|---|---|---|
| cfd_w_trans | DataTransfer | from |
| tadir | MasterRecord | inner |
| cfd_w_trans_t | SourceText | left_outer |
| cfd_w_trans_t | TargetText | left_outer |
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | P_CFD_TRANS_TS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| EndUserText.label | Determine Source of Texts | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| SourceUseRegistryTranslation | ||||
| TargetUseRegistryTranslation |
@AbapCatalog.sqlViewName: 'P_CFD_TRANS_TS'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_ALLOWED
@EndUserText.label: 'Determine Source of Texts'
define view P_Cfd_Reg_Transfer_Text_Source as
select from cfd_w_trans as DataTransfer
inner join tadir as MasterRecord
on MasterRecord.obj_name = DataTransfer.data_transfer_name
and MasterRecord.object = 'CFDT'
left outer join cfd_w_trans_t as SourceText
on SourceText.data_transfer_name = DataTransfer.data_transfer_name
and SourceText.language = MasterRecord.masterlang
and SourceText.is_source = 'X'
left outer join cfd_w_trans_t as TargetText
on TargetText.data_transfer_name = DataTransfer.data_transfer_name
and TargetText.language = MasterRecord.masterlang
and TargetText.is_source = ''
{
key DataTransfer.data_transfer_name,
case when SourceText.language <> '' and SourceText.description <> '' then 'X' else ' ' end as SourceUseRegistryTranslation,
case when TargetText.language <> '' and TargetText.description <> '' then 'X' else ' ' end as TargetUseRegistryTranslation
}
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