I_RespyMgmtTeamType

DDL: I_RESPYMGMTTEAMTYPE SQL: IRSMTEAMTYPE Type: view COMPOSITE

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)

SourceAliasJoin Type
I_RespyMgmtTeamTypeBasic TeamType from

Annotations (10)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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":""
}
}*/