VB script to open a Business Objects report
I would like to know how I can write a windows script to open a Business Object report. So far, I have gotten it to open up the Business Object application, but does not want to open up the report. This is what I have so far. It works until you get to the Getfile. Any help would be appreciated.
Dim F
Set objbo = CreateObject("WScript.Shell")
set anobj = CreateObject("Scripting.FileSystemObject")
objbo.Exec ("C:\Program Files\Business Objects\BusinessObjects Enterprise 6\bin\busobj.exe")
WScript.Sleep 5500
objbo.SendKeys"xxxxxx"
objbo.SendKeys"{ENTER}"
f = anobj.Getfile("\\Rmregfile002\users\e716666\Business Objects\prgHospitalClaim.rep")



