I_ProbSolvingProcPrtcpntInfo

DDL: I_PROBSOLVINGPROCPRTCPNTINFO SQL: IPRSOLPROCPRTINF Type: view COMPOSITE

Problem-Solving Process Participant Info

I_ProbSolvingProcPrtcpntInfo is a Composite CDS View that provides data about "Problem-Solving Process Participant Info" in SAP S/4HANA. It reads from 2 data sources (I_ProbSolvingPrtcpntPersnInfo, I_WorkforcePersonImageURL) and exposes 19 fields with key field Person.

Data Sources (2)

SourceAliasJoin Type
I_ProbSolvingPrtcpntPersnInfo _ProbSolvingPrtcpntPersnInfo from
I_WorkforcePersonImageURL _WorkforcePersonImageURL left_outer

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IPRSOLPROCPRTINF view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Problem-Solving Process Participant Info view
VDM.viewType #COMPOSITE view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.representativeKey Person view

Fields (19)

KeyFieldSource TableSource FieldDescription
KEY Person I_ProbSolvingPrtcpntPersnInfo Person Person/ Farm/ Field
PersonFullName I_ProbSolvingPrtcpntPersnInfo PersonFullName Full Name
DefaultEmailAddress I_ProbSolvingPrtcpntPersnInfo DefaultEmailAddress
NormalizedPhoneNumber I_ProbSolvingPrtcpntPersnInfo NormalizedPhoneNumber
EmployeeImageURL I_WorkforcePersonImageURL WorkforcePersonImageURL
AuthorizationGroup I_ProbSolvingPrtcpntPersnInfo AuthorizationGroup AuthorizGroup
IsBusinessPurposeCompleted I_ProbSolvingPrtcpntPersnInfo IsBusinessPurposeCompleted Purpose Completed
_BusinessPartner I_ProbSolvingPrtcpntPersnInfo _BusinessPartner
DataControllerSet I_ProbSolvingPrtcpntPersnInfo DataControllerSet Data Ctrlr. Set
DataController1 I_ProbSolvingPrtcpntPersnInfo DataController1 Data Controller
DataController2 I_ProbSolvingPrtcpntPersnInfo DataController2 Data Controller
DataController3 I_ProbSolvingPrtcpntPersnInfo DataController3 Data Controller
DataController4 I_ProbSolvingPrtcpntPersnInfo DataController4 Data Controller
DataController5 I_ProbSolvingPrtcpntPersnInfo DataController5 Data Controller
DataController6 I_ProbSolvingPrtcpntPersnInfo DataController6 Data Controller
DataController7 I_ProbSolvingPrtcpntPersnInfo DataController7 Data Controller
DataController8 I_ProbSolvingPrtcpntPersnInfo DataController8 Data Controller
DataController9 I_ProbSolvingPrtcpntPersnInfo DataController9 Data Controller
DataController10 I_ProbSolvingPrtcpntPersnInfo DataController10 Data Controller

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 I_ProbSolvingProcPrtcpntInfo.
-- 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.
-- SQL view name: IPRSOLPROCPRTINF

CREATE VIEW I_ProbSolvingProcPrtcpntInfo AS
SELECT
  _ProbSolvingPrtcpntPersnInfo.Person AS Person,
  _ProbSolvingPrtcpntPersnInfo.PersonFullName AS PersonFullName,
  _ProbSolvingPrtcpntPersnInfo.DefaultEmailAddress AS DefaultEmailAddress,
  _ProbSolvingPrtcpntPersnInfo.NormalizedPhoneNumber AS NormalizedPhoneNumber,
  _WorkforcePersonImageURL.WorkforcePersonImageURL AS EmployeeImageURL,
  _ProbSolvingPrtcpntPersnInfo.AuthorizationGroup AS AuthorizationGroup,
  _ProbSolvingPrtcpntPersnInfo.IsBusinessPurposeCompleted AS IsBusinessPurposeCompleted,
  _ProbSolvingPrtcpntPersnInfo._BusinessPartner AS _BusinessPartner,
  _ProbSolvingPrtcpntPersnInfo.DataControllerSet AS DataControllerSet,
  _ProbSolvingPrtcpntPersnInfo.DataController1 AS DataController1,
  _ProbSolvingPrtcpntPersnInfo.DataController2 AS DataController2,
  _ProbSolvingPrtcpntPersnInfo.DataController3 AS DataController3,
  _ProbSolvingPrtcpntPersnInfo.DataController4 AS DataController4,
  _ProbSolvingPrtcpntPersnInfo.DataController5 AS DataController5,
  _ProbSolvingPrtcpntPersnInfo.DataController6 AS DataController6,
  _ProbSolvingPrtcpntPersnInfo.DataController7 AS DataController7,
  _ProbSolvingPrtcpntPersnInfo.DataController8 AS DataController8,
  _ProbSolvingPrtcpntPersnInfo.DataController9 AS DataController9,
  _ProbSolvingPrtcpntPersnInfo.DataController10 AS DataController10
FROM I_ProbSolvingPrtcpntPersnInfo AS _ProbSolvingPrtcpntPersnInfo
LEFT OUTER JOIN I_WorkforcePersonImageURL AS _WorkforcePersonImageURL ON /* join condition not captured in parsed metadata */
;