P_SLT_MAXMASTERJOBRELEASEDATE
Latest Master Job Release Date
P_SLT_MAXMASTERJOBRELEASEDATE is a CDS View in S/4HANA. Latest Master Job Release Date. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| P_SLT_MaxMasterJobReleaseTime | view | inner | BASIC | Latest Master Job Release Time |
@AbapCatalog.sqlViewName: 'PSLTMAXMJBRELDAT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM: {
private: true,
viewType: #BASIC
}
@ClientHandling.algorithm: #SESSION_VARIABLE
define view P_SLT_MaxMasterJobReleaseDate
as select from tbtco
{
key jobname as ReplicationMasterJobName,
max(reldate) as RplctnMasterJobReleaseDate
}
where
jobname = '/1LT/IUC_REP_MSTR'
group by
jobname