Hi Gaurav
yes that is possible. Do you know the files with the extension *.aaox?
Thats a XML file which is for example created if you are opening a workbook from the launchpad.
This XML is used by the AO Launcher for executing a query or opening a workbook.
You just have to create your own AO Launcher file, i.e. in VBA and than AO will open with the given workbook.
Your XML should like this:
<?xml version="1.0" encoding="utf-8"?><AnalysisLauncher>
<Connection type="NW">
<System>SID</System>
<Language>EN</Language>
<Server>usciy1w</Server>
<SystemNo>01</SystemNo>
<Client>000</Client>
</Connection>
<User>
<Name>UEBERSCHAER</Name>
<Password>mypass</Password>
</User>
<Open type="Document">
<Name>MyWorkbook</Name>
<LocalPath>c:\temp\LaunchableFile.xlsx</LocalPath>
</Open>
</AnalysisLauncher>
Regards
Thorsten