Hi All
A quick question on writeback template.
I have got following template which is not working -
<?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="UpdateSupInfo">
<XML>
<writeBack connectionPool="POD_Conn_Pool">
<insert></insert>
<update>UPDATE POD.PO_DETAILS SET Sup Info='@{c36281e59054c18d5}' WHERE PO Number='@{c9ac14dfb77047c4d}' AND Organization='@{cf79bab7c8634f73c}' AND Item='@{cb58f479f589e1f0}'</update>
</writeBack>
</XML>
</WebMessage>
</WebMessageTable>
</WebMessageTables>
I have got -
1: Schema Name and table mentioned here POD.PO_DETAILS
2: The column names like 'Sup Info', 'PO Number','Organization etc are from Presentation layer.
Do I need to give database column names or Presentation Layer Column name?
For example: - PO Number is stored in database column PO_NUM
So here I should give 'PO Number' or PO_NUM?
3: Also please help me validate if I can Update the column based on multiple conditions?
Thanks