Hi Experts,
I have seen the following block of code in com.sap.portal.navigation.portallauncher.par file ..
INodeList nodeList = request.getNode().getChildNodes();
if(nodeList != null && nodeList.item(0) != null)
{
response.include(request, nodeList.item(0));
}
How can i know to which component the control will be passing on?
I have no idea on INode and by seeing this code i didn't undestand what was the target component?
Can we make use of same code for navigation between components?
Thanks in advance?
MMK