P_InvoiceWorkFlowRecipient

DDL: P_INVOICEWORKFLOWRECIPIENT SQL: PINVPPWFL Type: view COMPOSITE

People Picker for Invoice Approver

P_InvoiceWorkFlowRecipient is a Composite CDS View that provides data about "People Picker for Invoice Approver" in SAP S/4HANA. It reads from 4 data sources (I_User, I_PersonWorkAgreement_1, I_PersonWorkAgrmtStatus, I_WorkforcePerson) and exposes 3 fields with key field UserID.

Data Sources (4)

SourceAliasJoin Type
I_User _User inner
I_PersonWorkAgreement_1 _WorkAgreement inner
I_PersonWorkAgrmtStatus _WorkAgreementStatus inner
I_WorkforcePerson _WorkforcePerson from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName PINVPPWFL view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
AccessControl.personalData.blocking #REQUIRED view
VDM.viewType #COMPOSITE view
VDM.private true view
EndUserText.label People Picker for Invoice Approver view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY UserID I_User UserID User Name
FullName I_WorkforcePerson PersonFullName Full Name
Employee

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 P_InvoiceWorkFlowRecipient.
-- 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: PINVPPWFL

CREATE VIEW P_InvoiceWorkFlowRecipient AS
SELECT
  _User.UserID AS UserID,
  _WorkforcePerson.PersonFullName AS FullName,
  cast( _WorkforcePerson.PersonExternalID as mmpur_employee_id preserving type ) AS Employee
FROM I_WorkforcePerson AS _WorkforcePerson
INNER JOIN I_PersonWorkAgreement_1 AS _WorkAgreement ON /* join condition not captured in parsed metadata */
INNER JOIN I_PersonWorkAgrmtStatus AS _WorkAgreementStatus ON /* join condition not captured in parsed metadata */
INNER JOIN I_User AS _User ON /* join condition not captured in parsed metadata */
;