QPRSLPRPRTCPNT

Transparent Table Application Table

Problem Solving Process Participant

QPRSLPRPRTCPNT is an SAP database table in S/4HANA. Problem Solving Process Participant. It contains 5 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_ProbSolvingProcParticipant view from BASIC Problem-Solving Process Participant

Fields (5)

KeyField Data ElementDescription DomainTypeLength
KEY client MANDT Client
KEY probsolvingprocess QPROBSOLVINGPROCESS Problem-Solving Process
KEY participant QPROBSOLVINGPROCASSGMTNMBR Participant
role QPROBSOLVINGPROCPRTCPNROLE Participant Role
businesspartnerid QPROBSOLVINGPROCBPID Team Member

Derived SQL schema, reconstructed from the indexed DDIC field metadata (field names, types, lengths and key flags) — a functional representation, not the verbatim SAP source.

-- Problem Solving Process Participant
-- Category TRANSPARENT · Delivery class A
-- Derived schema, generated from indexed DDIC field metadata (not the verbatim SAP source).
CREATE TABLE QPRSLPRPRTCPNT (
    CLIENT,              -- Client [MANDT]
    PROBSOLVINGPROCESS,  -- Problem-Solving Process [QPROBSOLVINGPROCESS]
    PARTICIPANT,         -- Participant [QPROBSOLVINGPROCASSGMTNMBR]
    ROLE,                -- Participant Role [QPROBSOLVINGPROCPRTCPNROLE]
    BUSINESSPARTNERID,   -- Team Member [QPROBSOLVINGPROCBPID]
    PRIMARY KEY (CLIENT, PROBSOLVINGPROCESS, PARTICIPANT)
);