Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 16 Oracle Analytics Lounge
- 216 Oracle Analytics News
- 43 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 79 Oracle Analytics Trainings
- 15 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
Obiee 11g Need to update mutliple columns

Hello All,
I have a requirement to update four columns on a report using writeback functionality. When I implemented this, only last column is been updated back to the database.
While updating the rest of the columns it says "Updated Successfully" but I don't see those changes on the report or on the database.
Here is my XML
<?xml version="1.0" encoding="utf-8" ?>
<WebMessageTables xmlns:sawm="com.siebel.analytics.web/message/v1">
<WebMessageTable lang="en-us" system="WriteBack" table="Messages">
<WebMessage name="Test">
<XML>
<writeBack connectionPool="Connection Pool">
<insert> </insert>
<update> UPDATE PRODUCTS SET COMMENTS='@2' WHERE PART_NUMBER='@1'</update>
<update> UPDATE PRODUCTS SET INVENTORY='@3' WHERE PART_NUMBER='@1'</update>
<update> UPDATE PRODUCTS SET LOW='@4' WHERE PART_NUMBER='@1'</update>
<update> UPDATE PRODUCTS SET DEALER_PRICE='@5' WHERE PART_NUMBER='@1'</update>
<update> UPDATE PRODUCTS SET PRICE='@6' WHERE PART_NUMBER='@1'</update>
</writeBack>
</XML>
</WebMessage>
</WebMessageTable>
</WebMessageTables>
Answers
-
Thanks that worked.
0