Categories
- All Categories
- Oracle Analytics Learning Hub
- 18 Oracle Analytics Sharing Center
- 18 Oracle Analytics Lounge
- 229 Oracle Analytics News
- 44 Oracle Analytics Videos
- 15.8K Oracle Analytics Forums
- 6.2K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 85 Oracle Analytics Trainings
- 15 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
OBIEE Write back function - Execute Stored Procedure

Dear all,
Is it possible to execute a SP rather than an insert/update statement during write back in OBIEE ?
If it is possible, may I know the syntax ?
Thanks in advance
Answers
-
I don't think that is possible directly as the only tags in the XML writeback configuration are insert and update.
However, you could use a database trigger to call procedure on insert or update on your writeback table.
0 -
I would recommend writing back to a view, and using the learned gentleman's suggestion of putting a trigger on that to handle your logic, it is like building an API and putting the trigger on the view saves you from a host of convoluted logic to avoid mutating table issues - and you can point the data at multiple tables in a header / line / distribution type situation.
0 -
Though if you want fully formed form style functionality you would be better pointing the user at an Apex form.
0