C_SrvcOrdTeamTypesByProcTypes

DDL: C_SRVCORDTEAMTYPESBYPROCTYPES Type: view CONSUMPTION Package: CRMS4_SERV_ORDER_UI

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. Part of development package CRMS4_SERV_ORDER_UI.

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 Transaction Type
CustMgmtServiceTeamProfile _TeamType CustMgmtServiceTeamProfile Team Profile
RespyMgmtTeamType _TeamType RespyMgmtTeamType

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view C_SrvcOrdTeamTypesByProcTypes.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW C_SrvcOrdTeamTypesByProcTypes AS
SELECT
  ServiceDocumentType,
  _TeamType.CustMgmtServiceTeamProfile AS CustMgmtServiceTeamProfile,
  _TeamType.RespyMgmtTeamType AS RespyMgmtTeamType
FROM I_ServiceDocumentType AS _ProcType
LEFT OUTER JOIN I_SrvcTeamPrflAllwdTeamType AS _TeamType ON _ProcType.CustMgmtServiceTeamProfile = _TeamType.CustMgmtServiceTeamProfile  -- association [0..*]
;