I_RespyMgmtTeamTypeBasic
Team Type Basic View
I_RespyMgmtTeamTypeBasic is a Basic CDS View that provides data about "Team Type Basic View" in SAP S/4HANA. It reads from 1 data source (rsm_team_typ_c) and exposes 3 fields with key field RespyMgmtTeamType. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| rsm_team_typ_c | TeamType | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_RespyMgmtTeamTypeDescription | _TeamTypeDesc | $projection.RespyMgmtTeamType = _TeamTypeDesc.RespyMgmtTeamType and _TeamTypeDesc.Language = $session.system_language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IRSMTEAMTYPEBSC | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| AbapCatalog.buffering.type | #FULL | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.preserveKey | true | view | |
| EndUserText.label | Team Type Basic View | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | RespyMgmtTeamType | rsm_team_typ_c | teamtype | |
| RespyMgmtTeamCategory | rsm_team_typ_c | teamcategory | ||
| _TeamTypeDesc | _TeamTypeDesc |
@AbapCatalog.sqlViewName: 'IRSMTEAMTYPEBSC'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.buffering.status: #ACTIVE
@AbapCatalog.buffering.type: #FULL
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #MASTER
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.preserveKey:true
@EndUserText.label: 'Team Type Basic View'
define view I_RespyMgmtTeamTypeBasic as select from rsm_team_typ_c as TeamType
association [1..1] to I_RespyMgmtTeamTypeDescription as _TeamTypeDesc on $projection.RespyMgmtTeamType = _TeamTypeDesc.RespyMgmtTeamType
and _TeamTypeDesc.Language = $session.system_language
{
key TeamType.teamtype as RespyMgmtTeamType,
TeamType.teamcategory as RespyMgmtTeamCategory,
// TeamTypeDescription.teamtypedescription as RespyMgmtTeamTypeDescription
_TeamTypeDesc
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"RSM_TEAM_TYP_C"
],
"ASSOCIATED":
[
"I_RESPYMGMTTEAMTYPEDESCRIPTION"
],
"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