Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 14 Oracle Analytics Lounge
- 214 Oracle Analytics News
- 42 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 78 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture
How to extract the information of fusion approval groups via report or web-service

amro alfares
Rank 1 - Community Starter
Summary
read approval groups information and extract to be used outside SaaS
Content
We have managed to develop approval groups in SaaS like the attached document, And since we are developing a PaaS extension We need to check the do-ability of reading such information and extract it in PaaS, reading the approval groups in some sort of a BI report or if there is any web-service available to allow me to read the Approval group from outside the fusion.
I attached a document on how to define the approval group on SaaS.
Your support is highly appreciated.
Tagged:
0
Comments
-
You can create simple BI report using below tables.
select a.approvalgroupname, b.member
from FA_FUSION_SOAINFRA.WFAPPROVALGROUPS a, FA_FUSION_SOAINFRA.WFAPPROVALGROUPMEMBERS b
where a.approvalgroupid=b.approvalgroupidYou can then call ERP Integration webservice to extract data into your PaaS solution.
0