Categories
- All Categories
- Oracle Analytics and AI Learning Hub
- 34 Oracle Analytics and AI Sharing Center
- 22 Oracle Analytics and AI Lounge
- 276 Oracle Analytics and AI News
- 47 Oracle Analytics and AI Videos
- 16.1K Oracle Analytics and AI Forums
- 6.3K Oracle Analytics and AI Idea Labs
- Oracle Analytics and AI User Groups
- 99 Oracle Analytics and AI Trainings
- 16 Oracle Analytics and AI Challenge
- Find Partners
- For Partners
Is it possible to pull the approvers for Job Requisition Approval?
Summary:
We are trying to create a BI report to know with whom the Job Requisition Approval is pending with. We have used the below query to pull the details but when the Module Identifier is hardcoded the Approvers and Assignee name do not appear. But when we comment /remove the hard coded part the Approver/ Assignee name appear.
Content (please ensure you mask any confidential information):
Version (include the version you are using, if applicable):
Code Snippet (add any code snippets that support your topic, if applicable):
SELECT htce.status_category
,htce.created_by
,htce.object_name
,htce.process_category
,htce.change_effective_date
,htd.status
,hth.object
,htd.last_update_date
,hth.module_identifier
,wft.Approvers
,Wft.Assignees
FROM fusion.hrc_txn_console_entry htce
,fusion.hrc_txn_header hth
,fusion.hrc_txn_data htd
,fa_fusion_soainfra.wftask wft
WHERE hth.transaction_id = htd.transaction_id
AND htd.transaction_id = htce.transaction_id
AND To_Char(hth.Transaction_Id) = Wft.Identificationkey(+)
--AND hth.module_identifier = 'IRC_REQUISITION_APPROVAL'
--AND hth.object = 'IRC_REQUISITIONS_B'
--AND htce.process_category = 'Approve Job Requisition'
AND htd.status = 'PENDING'
Answers
-
Can you join using below?
wft.IDENTIFICATIONKEY = TO_CHAR(req.requisition_id)
with irc_requisitions_vl view/table.
Thanks.
0
