I_RespyTeamCountPerCatAndSts

DDL: I_RESPYTEAMCOUNTPERCATANDSTS SQL: RSMTEAMCNTCATSTS Type: view COMPOSITE

Teams per Team Category and Status

I_RespyTeamCountPerCatAndSts is a Composite CDS View that provides data about "Teams per Team Category and Status" in SAP S/4HANA. It reads from 1 data source (P_RespyMgmtTeamHeader) and exposes 3 fields with key fields RespyMgmtTeamCategory, RespyMgmtTeamStatus.

Data Sources (1)

SourceAliasJoin Type
P_RespyMgmtTeamHeader P_RespyMgmtTeamHeader from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName RSMTEAMCNTCATSTS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Teams per Team Category and Status view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY RespyMgmtTeamCategory TeamCategory
KEY RespyMgmtTeamStatus TeamStatus
RespyMgmtNumberOfTeams
@AbapCatalog.sqlViewName: 'RSMTEAMCNTCATSTS'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #COMPOSITE
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Teams per Team Category and Status'
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #MASTER

define view I_RespyTeamCountPerCatAndSts
  as select from P_RespyMgmtTeamHeader
{
  key TeamCategory as RespyMgmtTeamCategory,
  key TeamStatus as RespyMgmtTeamStatus,
      count(*) as RespyMgmtNumberOfTeams
}
group by
  TeamCategory,
  TeamStatus
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"P_RESPYMGMTTEAMHEADER"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/