Get IPC server details from CRM 4.0
The below is all for CRM ISA 4.0
I am trying to return the details of the IPC server in the confirmorder.jsp but it does not seem to work.
The code is as follows:
HeaderSalesDocument header =
(HeaderSalesDocument) request.getAttribute(MaintainOrderBaseAction.RC_HEADER);
ipcServer = JspUtil.removeNull(header.getIpcHost());
ipcPort = JspUtil.removeNull(header.getIpcPort()).trim();
ipcSessionId = JspUtil.removeNull(header.getIpcSession()).trim();
ipcDocumentId = JspUtil.removeNull(header.getIpcDocumentId().getIdAsString());
httpSession = request.getSession();
This same code works no problem in the screen before which is order.jsp.
Can anyone tell me why I can not get the IPC server details on the confirmorder.jsp screen.
I have output the header detail on both screen and they both look the same.
Please Help.
Naidio