Siebel Open UI, Tools, Scripting and EAI (MOSC)

MOSC Banner

How to launch Outlook Web Access (OWA) from Siebel

edited Jan 19, 2011 7:24PM in Siebel Open UI, Tools, Scripting and EAI (MOSC) 3 commentsAnswered
Hi,
There are examples in bookshelf to launch MS Office applications from Siebel.

/****
function Application_PreInvokeMethod (MethodName)
var iReturn = ContinueOperation;
switch (MethodName)
{
case "LaunchWord":
Clib.system("C:\\Program Files\\Microsoft Office\\Office\\WINWORD.EXE",1);
iReturn = CancelOperation;
break;
case "LaunchExcel":
Clib.system("C:\\Program Files\\Microsoft Office\\Office\\EXCEL.EXE",1);
iReturn = CancelOperation;
break;
case "LaunchOutlook":
Clib.system("C:\\Program Files\\Microsoft Office\\Office\\OUTLOOK.EXE",1);
iReturn = CancelOperation;
}
return (iReturn);
}

**********/

I want to launch Outlook Web Access from a button in Siebel.  How can I do that?

TIA

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center