C_ProjectBillingWrkflwApprvr

DDL: C_PROJECTBILLINGWRKFLWAPPRVR SQL: CPRJBLGWRKFLAPP Type: view CONSUMPTION

Project Billing Request Approvers

C_ProjectBillingWrkflwApprvr is a Consumption CDS View that provides data about "Project Billing Request Approvers" in SAP S/4HANA. It reads from 1 data source (P_ProjectBillingWrkflwApprvr) and exposes 7 fields with key fields WorkflowTaskRecipient, WorkflowTaskInternalID. It has 2 associations to related views. It is exposed through 1 OData service (MANAGEPROJBILLGREQUEST_SD).

Data Sources (1)

SourceAliasJoin Type
P_ProjectBillingWrkflwApprvr ProjectBillingWrkflwApprvr from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_UserContactCard _UserContactCard $projection.WorkflowTaskRecipient = _UserContactCard.ContactCardID and _UserContactCard.Person <> ''
[0..1] I_WorkflowTaskResultComment _WorkflowTaskResultComment $projection.WorkflowTaskInternalID = _WorkflowTaskResultComment.WorkflowTaskInternalID

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CPRJBLGWRKFLAPP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
Search.searchable true view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label Project Billing Request Approvers view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
Metadata.ignorePropagatedAnnotations true view
Metadata.allowExtensions true view
VDM.viewType #CONSUMPTION view
ClientHandling.algorithm #SESSION_VARIABLE view

OData Services (1)

ServiceBindingVersionContractRelease
MANAGEPROJBILLGREQUEST_SD UI_MNGPROJBILLGREQ_SB_V2 V2 C1 NOT_RELEASED

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY WorkflowTaskRecipient WorkflowTaskRecipient Approver
KEY WorkflowTaskInternalID WorkflowTaskInternalID Workflow task ID
TechnicalWrkflwObject TechnicalWrkflwObject Item ID
FullName _UserContactCard FullName Name
WorkflowTaskResult WorkflowTaskResult
WorkflowTaskResultComment _WorkflowTaskResultComment WorkflowTaskResultComment Decision Note
_UserContactCard _UserContactCard

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_ProjectBillingWrkflwApprvr.
-- 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: CPRJBLGWRKFLAPP

CREATE VIEW C_ProjectBillingWrkflwApprvr AS
SELECT
  WorkflowTaskRecipient,
  WorkflowTaskInternalID,
  TechnicalWrkflwObject,
  _UserContactCard.FullName AS FullName,
  WorkflowTaskResult,
  _WorkflowTaskResultComment.WorkflowTaskResultComment AS WorkflowTaskResultComment
FROM P_ProjectBillingWrkflwApprvr AS ProjectBillingWrkflwApprvr
LEFT OUTER JOIN I_UserContactCard AS _UserContactCard ON WorkflowTaskRecipient = _UserContactCard.ContactCardID AND _UserContactCard.Person <> ''  -- association [0..1]
LEFT OUTER JOIN I_WorkflowTaskResultComment AS _WorkflowTaskResultComment ON WorkflowTaskInternalID = _WorkflowTaskResultComment.WorkflowTaskInternalID  -- association [0..1]
;