Categories
- All Categories
- Oracle Analytics and AI Learning Hub
- 53 Oracle Analytics and AI Sharing Center
- 19 Oracle Analytics and AI Lounge
- 290 Oracle Analytics and AI News
- 57 Oracle Analytics and AI Videos
- 16.3K Oracle Analytics and AI Forums
- 6.5K Oracle Analytics and AI Labs
- Oracle Analytics and AI User Groups
- 112 Oracle Analytics and AI Trainings
- 21 Oracle Analytics and AI Challenge
- Find Partners
- For Partners
Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture
How to show unique record of a user for approval with title in BI report
Dhanashree
Rank 1 - Community Starter
select upper(W.ASSIGNEESDISPLAYNAME) APPROVER_NAME,
W.TITLE,
W.TASKNUMBER,
W.ASSIGNEDDATE,
W.category,
W.ASSIGNMENTCONTEXT,
pef.DISPLAY_NAME Creator_name
from
FA_FUSION_SOAINFRA.WFTASKHISTORY W,
PER_USERS pu,
per_person_names_f pef
where 1=1
AND OUTCOME IS NULL
AND WORKFLOWPATTERN <> 'FYI'
and STATE not in ('WITHDRAWN')
AND SUBSTATE not in ( 'DELEGATED')
AND W.CREATOR = PU.USERNAME(+)
AND PU.PERSON_ID = PEF.PERSON_ID (+)
AND NAME_TYPE (+)= 'GLOBAL'
AND pef.DISPLAY_NAME is not NULL
AND WORKFLOWPATTERN= 'ApprovalRequest'
ORDER BY ASSIGNEDDATE
This is query but it will showing 2 records of each user.
Anyone can help with the same?
Tagged:
0