C_GrantWrkFlwRecipientVH

DDL: C_GRANTWRKFLWRECIPIENTVH Type: view CONSUMPTION Package: PSM_S4CO_ODATA_GM_WF

Grant WorkFlow Rcpnt Value Assistance

C_GrantWrkFlwRecipientVH is a Consumption CDS View that provides data about "Grant WorkFlow Rcpnt Value Assistance" in SAP S/4HANA. It reads from 4 data sources (I_WorkforcePerson, I_PersonWorkAgrmtStatus, I_PersonWorkAgreement_1, I_User) and exposes 17 fields with key field UserID. It is exposed through 3 OData services (ASQL_F4182, ASQL_F6588, ASQL_F7335). Part of development package PSM_S4CO_ODATA_GM_WF.

Data Sources (4)

SourceAliasJoin Type
I_WorkforcePerson _Employee inner
I_PersonWorkAgrmtStatus _EmployStatDet inner
I_PersonWorkAgreement_1 _PersonWorkAgreement inner
I_User _User inner

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CGRANTWFRCPNTVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
AccessControl.authorizationCheck #MANDATORY view
Search.searchable true view
ClientHandling.algorithm #SESSION_VARIABLE view
Consumption.ranked true view
VDM.viewType #CONSUMPTION view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.representativeKey UserID view
EndUserText.label Grant WorkFlow Rcpnt Value Assistance view

OData Services (3)

ServiceBindingVersionContractRelease
ASQL_F4182 ASQL_F4182 C2 NOT_RELEASED
ASQL_F6588 ASQL_F6588 C2 NOT_RELEASED
ASQL_F7335 ASQL_F7335 C2 NOT_RELEASED

Fields (17)

KeyFieldSource TableSource FieldDescription
KEY UserID I_User UserID User Name
PersonFullNameendasFullName
AuthorizationGroup I_WorkforcePerson AuthorizationGroup AuthorizGroup
IsBusinessPurposeCompleted I_WorkforcePerson IsBusinessPurposeCompleted Purpose Completed
LastName I_WorkforcePerson LastName Last Name
PersonFullName I_WorkforcePerson PersonFullName Full Name
DataControllerSet I_WorkforcePerson DataControllerSet Data Ctrlr. Set
DataController1 I_WorkforcePerson DataController1 Data Controller
DataController2 I_WorkforcePerson DataController2 Data Controller
DataController3 I_WorkforcePerson DataController3 Data Controller
DataController4 I_WorkforcePerson DataController4 Data Controller
DataController5 I_WorkforcePerson DataController5 Data Controller
DataController6 I_WorkforcePerson DataController6 Data Controller
DataController7 I_WorkforcePerson DataController7 Data Controller
DataController8 I_WorkforcePerson DataController8 Data Controller
DataController9 I_WorkforcePerson DataController9 Data Controller
DataController10 I_WorkforcePerson 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 C_GrantWrkFlwRecipientVH.
-- 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_GrantWrkFlwRecipientVH AS
SELECT
  _User.UserID AS UserID,
  case when _Employee.PersonFullName is initial then _Employee.LastName else _Employee.PersonFullName end as FullName AS PersonFullNameendasFullName,
  _Employee.AuthorizationGroup AS AuthorizationGroup,
  _Employee.IsBusinessPurposeCompleted AS IsBusinessPurposeCompleted,
  _Employee.LastName AS LastName,
  _Employee.PersonFullName AS PersonFullName,
  _Employee.DataControllerSet AS DataControllerSet,
  _Employee.DataController1 AS DataController1,
  _Employee.DataController2 AS DataController2,
  _Employee.DataController3 AS DataController3,
  _Employee.DataController4 AS DataController4,
  _Employee.DataController5 AS DataController5,
  _Employee.DataController6 AS DataController6,
  _Employee.DataController7 AS DataController7,
  _Employee.DataController8 AS DataController8,
  _Employee.DataController9 AS DataController9,
  _Employee.DataController10 AS DataController10
INNER JOIN I_PersonWorkAgrmtStatus AS _EmployStatDet ON /* join condition not captured in parsed metadata */
INNER JOIN I_PersonWorkAgreement_1 AS _PersonWorkAgreement ON /* join condition not captured in parsed metadata */
INNER JOIN I_WorkforcePerson AS _Employee ON /* join condition not captured in parsed metadata */
INNER JOIN I_User AS _User ON /* join condition not captured in parsed metadata */
;