Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 15 Oracle Analytics Lounge
- 208 Oracle Analytics News
- 41 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 76 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
Enable Writeback based on the selections on dropdown

Hi
We have a requirement like we will have a dashboard page where we will have 3 prompts with dropdown and based on those selection we have to insert data. Now we have to insert back in DB table both slected values and inserted values.
I have idea like how to insert directly in DB table using writeback option, but i am not sure on how to writeback selected values through dropdown into database table.
Can anyone suggest.
Answers
-
The built-in writeback is not and was never intended as a data entry tool. It's analytics, not an OLTP!
Use APEX and you will be a LOT happier with the result!
0 -
is it not doable in OBIEE, can you please confirm
0 -
It is but I would not do it in an *analytical* tool.
0 -
It is but I would not do it in an *analytical* tool.
0 -
It is but I would not do it in an *analytical* tool.
0 -
but we need to implement in obiee, do any one have suggestion on this
0 -
Use the prompt values in variables and have it passed to the column formulas
0 -
Thank you.
When i am trying to writeback, i am getting error as "The system is unable to read the Write Back Template 'Reverse'. Please contact your system administrator." in obiee11g. Can you please suggest where I am going wrong
Placed xml template in below paths too
obi11g/bifoundation/OracleBIPresentationServicesComponent/coreapplication_obips1/msgdb/customMessages
obi11g//bifoundation/OracleBIPresentationServicesComponent/coreapplication_obips1/analyticsRes/customMessages
<?xml version="1.0" encoding="UTF-8"?>
-<WebMessageTables xmlns:sawm="com.siebel.analytics.web/message/v1">
-<WebMessageTable lang="en-us" table="Messages" system="WriteBack">
-<WebMessage name="Reverse">
-<XML>
-<writeBack connectionPool="Oracle Data Warehouse Connection Pool">
<insert>insert into table (column1) values(@{cbb79f33511e76a58} )</insert>
<update>UPDATE table SET column1= @{cbb79f33511e76a58} </update>
</writeBack>
</XML>
</WebMessage>
</WebMessageTable>
</WebMessageTables>
0