C_SlsPriceWorkflowRecipientVH

DDL: C_SLSPRICEWORKFLOWRECIPIENTVH SQL: CSLSPRCGWFRCPTVH Type: view CONSUMPTION

Sales Price Workflow Recipient

C_SlsPriceWorkflowRecipientVH is a Consumption CDS View that provides data about "Sales Price Workflow Recipient" in SAP S/4HANA. It reads from 5 data sources (I_WorkforcePerson, I_PersonWorkAgrmtStatus, I_PersonWorkAgreement_1, P_SlsPriceWrkFlwPotntlApprvr, I_User) and exposes 18 fields with key field UserID.

Data Sources (5)

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

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CSLSPRCGWFRCPTVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
EndUserText.label Sales Price Workflow Recipient view
Search.searchable true view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey UserID view

Fields (18)

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
Person I_WorkforcePerson Person Person/ Farm/ Field

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_SlsPriceWorkflowRecipientVH.
-- 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: CSLSPRCGWFRCPTVH

CREATE VIEW C_SlsPriceWorkflowRecipientVH 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,
  _Employee.Person AS Person
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 */
INNER JOIN P_SlsPriceWrkFlwPotntlApprvr AS _PotntlApprvr ON /* join condition not captured in parsed metadata */
;