I_RespyTeamCountPerCatAndSts
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)
| Source | Alias | Join Type |
|---|---|---|
| P_RespyMgmtTeamHeader | P_RespyMgmtTeamHeader | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA