Hi Experts,
My requirement is to display the gross weight of the order in Order.jsp,Order_change.jsp. I have implemented the BADI CRM_ISA_BASKET_HEAD and method GETHEAD_GET_DATA to get the gross weight.
In the BADI I am using CRM_ORDER_READ to get the value gross weight of the order.
Here is the code to get the extension data in Order.jsp
<input class="textInput"
type="text"
name="ZGRWT"
value="<%= JspUtil.encodeHtml(ui.header.getExtensionData("ZGRWT")) %>"/>
Not sure after doing this both order.jsp & order_change.jsp simply not displying any thing in the page.
To get the extension data should I write any custom action? Not sure about the issue.