P_RESPYMGMTSUPERTEAMALLLEVEL
Super Team of All Level
P_RESPYMGMTSUPERTEAMALLLEVEL is a CDS View in S/4HANA. Super Team of All Level. It contains 2 fields. 2 CDS views read from this table.
CDS Views using this table (2)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| P_RespyMgmtSubTeamOfAllLevel | view | left_outer | BASIC | Private view for all the child teams of team |
| P_RespyMgmtSuperTeamOfAllLevel | view | from | BASIC | Super Team Details of All level |
Fields (2)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| KEY | RespyMgmtParentTeamId | RespyMgmtParentTeamID | 1 |
| KEY | RespyMgmtTeamId | RespyMgmtSubTeamID,RespyMgmtTeamID | 2 |
@AbapCatalog.sqlViewName: 'PRSMSUPTEAMALLVL'
@AbapCatalog.compiler.compareFilter: true
@VDM.private: true
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass:#CUSTOMIZING
@ClientHandling.algorithm: #SESSION_VARIABLE
define view P_RespyMgmtSuperTeamAllLevel
as select from P_RespyMgmtSubTeamOfAllLvl (P_SAPClient : $session.client ) as SubTeamAllLevel {
key respymgmtsubteamid as RespyMgmtTeamId,
key respymgmtteamid as RespyMgmtParentTeamId
}