RSRTS_CDS_REPDIR
RSRTS_CDS_REPDIR is a CDS View in S/4HANA. It contains 2 fields. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| Rsrts_Cds_Query_List | view | from |
Fields (2)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| KEY | compid | compid | 1 |
| infocube | infoprovider | 1 |
@AbapCatalog.sqlViewName: 'RSRTS_CDS_RPD'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.compiler.compareFilter: true
define view Rsrts_Cds_Repdir
as select from rsrrepdir
{
key infocube,
key compid,
SUBSTRING( infocube, 3, 28 ) as sqlNameCube,
SUBSTRING( compid, 3, 28 ) as sqlNameQuery,
count( * ) as compuidCount
}
where
objvers = 'A'
and infocube like '2C%'
and compid like '2C%'
and comptype = 'REP'
group by
infocube,
compid