C_SrvcDocWrkflwRecipientVH

DDL: C_SRVCDOCWRKFLWRECIPIENTVH SQL: CSRQTWFRCPNTVH Type: view CONSUMPTION

Approval Workflow Recipient

C_SrvcDocWrkflwRecipientVH is a Consumption CDS View that provides data about "Approval Workflow Recipient" in SAP S/4HANA. It reads from 1 data source (I_BusinessUserBasic) and exposes 6 fields with key field UserID.

Data Sources (1)

SourceAliasJoin Type
I_BusinessUserBasic I_BusinessUserBasic from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName CSRQTWFRCPNTVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
Search.searchable true view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.representativeKey UserID view
EndUserText.label Approval Workflow Recipient view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY UserID UserID User ID
PersonFullName PersonFullName Full Name
FirstName FirstName First Name
LastName LastName Last Name
AuthorizationGroup AuthorizationGroup AuthorizGroup
IsBusinessPurposeCompleted IsBusinessPurposeCompleted Purpose Completed

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_SrvcDocWrkflwRecipientVH.
-- 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: CSRQTWFRCPNTVH

CREATE VIEW C_SrvcDocWrkflwRecipientVH AS
SELECT
  UserID,
  PersonFullName,
  FirstName,
  LastName,
  AuthorizationGroup,
  IsBusinessPurposeCompleted
FROM I_BusinessUserBasic
;