I_RespyMgmtTeamType
Team Type
I_RespyMgmtTeamType is a Composite CDS View that provides data about "Team Type" in SAP S/4HANA. It reads from 1 data source (I_RespyMgmtTeamTypeBasic) and exposes 5 fields with key field RespyMgmtTeamType.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_RespyMgmtTeamTypeBasic | TeamType | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IRSMTEAMTYPE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Team Type | view | |
| AbapCatalog.preserveKey | true | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | RespyMgmtTeamType | I_RespyMgmtTeamTypeBasic | RespyMgmtTeamType | |
| RespyMgmtTeamCategory | I_RespyMgmtTeamTypeBasic | RespyMgmtTeamCategory | ||
| RespyMgmtTeamCategoryForSearch | _TeamCategory | RespyMgmtTeamCategory | ||
| RespyMgmtTeamCategoryDesc | _TeamCategory | RespyMgmtTeamCategoryDesc | ||
| _TeamCategory | _TeamCategory |
@AbapCatalog.sqlViewName: 'IRSMTEAMTYPE'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #COMPOSITE
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #MASTER
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Team Type'
@AbapCatalog.preserveKey: true
define view I_RespyMgmtTeamType as
select from I_RespyMgmtTeamTypeBasic as TeamType
// left outer join rsm_team_typ_c_t as TeamTypeDescription
// on TeamTypeDescription.teamtype = TeamType.RespyMgmtTeamType
// and TeamTypeDescription.language = $session.system_language
association[1..1] to I_RespyMgmtTeamCategory as _TeamCategory on $projection.RespyMgmtTeamCategory = _TeamCategory.RespyMgmtTeamCategory
{
key TeamType.RespyMgmtTeamType as RespyMgmtTeamType,
TeamType.RespyMgmtTeamCategory as RespyMgmtTeamCategory,
_TeamCategory.RespyMgmtTeamCategory as RespyMgmtTeamCategoryForSearch,
case when TeamType._TeamTypeDesc.RespyMgmtTeamTypeDescription <> ''
then TeamType._TeamTypeDesc.RespyMgmtTeamTypeDescription
else TeamType.RespyMgmtTeamType
end as RespyMgmtTeamTypeDescription,
// TeamTypeDescription.teamtypedescription as RespyMgmtTeamTypeDescription,
_TeamCategory.RespyMgmtTeamCategoryDesc as RespyMgmtTeamCategoryDesc,
_TeamCategory
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_RESPYMGMTTEAMCATEGORY",
"I_RESPYMGMTTEAMTYPEBASIC",
"I_RESPYMGMTTEAMTYPEDESCRIPTION"
],
"ASSOCIATED":
[
"I_RESPYMGMTTEAMCATEGORY"
],
"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