Hello,
In SRM EBPLogon page once the managers logs on dispalyes Inbox page for Managers which displays the list of requests in his inbox, once Manager clicks on the particular request, the details of the employee gets display which is custom internet service. After Approve or Reject the message gets displays "WorkFlow executed properly". Instead of showing this message I want my custom Service template (200) to directly take the manager to his inbox. Has anyone implemented the same? Or How can I transfer/redirect my request to the Inbox page which is different service's template.
Thanks in advance,
Navneet
Message was edited by: Navneet Pulekar
Message was edited by: Navneet Pulekar
Navneet-
Hope all is going well. The message page you are speaking of is in a current custom template - at least that is how I understand the function based on your posting. I believe you can redirect the page back to the inbox with a simple bit of script in your template.
Onload you just need to tell it to start the inbox service again - if I recall it that is just bwsp_simple.
So it would look something like this...
<BODY onLoad="redirect()">
<SCRIPT LANGUAGE="JavaScript"><!--
function redirect () {
window.location.href = "http://server/scripts/wgate/bwsp_simple/!";
}
//-->
</SCRIPT>
You may have to change this a bit to get it to be properly framed and you should be able to dynamically get the current app server from the ITS parameters.
Regards-
b
Add a comment