FNDEI_I_TABLEREPLICATIONSTATUS
Projection on fndei_d_v_tabrep
FNDEI_I_TABLEREPLICATIONSTATUS is a CDS View in S/4HANA. Projection on fndei_d_v_tabrep. It contains 3 fields. 9 CDS views read from this table.
CDS Views using this table (9)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| FndEI_C_CcdrTableWithStatus | view | left_outer | Display list of CCDR tables with status | |
| FndEI_C_LastDataSync_Tables | view | inner | Proj of last data sync for tables | |
| FndEI_C_RepTabStatus | view | from | View for table replication status | |
| FndEI_PC_TableReplStatus_01 | view | inner | Proj of table replication for 01 status | |
| FndEI_PC_TableReplStatus_02 | view | inner | Proj of table replication for 02 status | |
| FndEI_PC_TableReplStatus_03 | view | inner | Proj of Table Replication for 03 status | |
| FndEI_PC_TableReplStatus_04 | view | inner | Proj of table replication for 04 status | |
| FndEI_PC_TableReplStatus_05 | view | inner | Proj of table replication for 05 status | |
| FndEI_PC_TableReplStatus_06 | view | inner | Proj of table replication for 06 status |
Fields (3)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| KEY | TableName | TableName | 2 |
| KEY | ViewReplicationID | ViewReplicationID | 1 |
| TableRepStatus | TableRepStatus | 3 |
@AbapCatalog.sqlViewName: 'FNDEITABREP'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@EndUserText.label: 'Projection on fndei_d_v_tabrep'
define view FndEI_I_TableReplicationStatus
as select from fndei_d_v_tabrep as tab_status
{
//tab_status
key tab_status.mandt as Client,
key tab_status.hcp_system as ViewReplicationID,
key tab_status.table_name as TableName,
tab_status.repl_status as TableRepStatus,
tab_status.table_version as TableVersion
}