Sunday, August 15, 2010

Navigating Backward

Going back was never so easy. Siebel makes use of underline javascript functions to go to previous page. It can come handy in many scenarios. Following code could be used on browser side of applet for going backward.

if(name == "Back")
{
history.go(-1);
return ("CancelOperation");
}

Or

if(name == "Back")
{
window.history.back(-1);
return ("CancelOperation");
}

There are multiple ways to achieve this. Some of the OOB business services which could be used to achieve this are "CUT eSales Order Entry Toolkit Service" or "FINS Goto View Service" which has got "GotoView" method which can be used to navigate to destination while maintaining the context.

simply siebel !!!

No comments: