C_SrvcOrdTeamTypesByProcTypes

DDL: C_SRVCORDTEAMTYPESBYPROCTYPES Type: view CONSUMPTION

Team Types for Process Type

C_SrvcOrdTeamTypesByProcTypes is a Consumption CDS View that provides data about "Team Types for Process Type" in SAP S/4HANA. It reads from 1 data source (I_ServiceDocumentType) and exposes 3 fields with key field ServiceDocumentType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_ServiceDocumentType _ProcType from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_SrvcTeamPrflAllwdTeamType _TeamType _ProcType.CustMgmtServiceTeamProfile = _TeamType.CustMgmtServiceTeamProfile

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CSRVCTEAMTPRCTY view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey ServiceDocumentType view
Metadata.ignorePropagatedAnnotations true view
Metadata.allowExtensions true view
EndUserText.label Team Types for Process Type view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ServiceDocumentType ServiceDocumentType
CustMgmtServiceTeamProfile _TeamType CustMgmtServiceTeamProfile
RespyMgmtTeamType _TeamType RespyMgmtTeamType
@AbapCatalog:{
sqlViewName: 'CSRVCTEAMTPRCTY',
compiler.compareFilter: true,
preserveKey:true
}
@AccessControl.authorizationCheck: #CHECK

@VDM.viewType: #CONSUMPTION

@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.representativeKey: 'ServiceDocumentType'
@Metadata.ignorePropagatedAnnotations: true

@Search.searchable
@Metadata.allowExtensions:true
@EndUserText.label: 'Team Types for Process Type'
define view C_SrvcOrdTeamTypesByProcTypes
  as select from I_ServiceDocumentType as _ProcType
  association [0..*] to I_SrvcTeamPrflAllwdTeamType as _TeamType on _ProcType.CustMgmtServiceTeamProfile = _TeamType.CustMgmtServiceTeamProfile
 {
 
      @Search: {
        defaultSearchElement: true,
        fuzzinessThreshold: 0.8,
        ranking: #HIGH
      } 
  key ServiceDocumentType                                                     as ServiceDocumentType,
      _TeamType.CustMgmtServiceTeamProfile                                    as CustMgmtServiceTeamProfile,
      _TeamType.RespyMgmtTeamType                                             as RespyMgmtTeamType
 }