Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: kfizz
  • Order by date
  1. kfizz

    Change a BO Query via VBA

    Hello, in my BO Query I have two dates: - Day less than and - Day greater than Now I logon BO and change every months this two dates. It is possible to change this dates with VBA? Thanks for your help! Ken
  2. kfizz

    Copy BO report to Excel via VBA

    Hi Skip, I use businessObjects 6.5 Objekt Libary ken
  3. kfizz

    Copy BO report to Excel via VBA

    Hi, I forgot: oBOSession.Application.Interactive = False ' no questions oBOSession.Application.Quit and if you write: Call oBOSession.LoginAs("xxxxx", "xxxxx",0)'the 0 is new you can write the name and the password. Thank you!
  4. kfizz

    Copy BO report to Excel via VBA

    Hi, I found a solve for my problem: Sub Test() Dim oBOSession As busobj.Application Set oBOSession = New busobj.Application Call oBOSession.LoginAs("xxxxx", "xxxxx") Call oBOSession.Documents.Open("c:\your report.rep") Call...
  5. kfizz

    Copy BO report to Excel via VBA

    Hello SkipVought, a touch of genius...yes it is empty but why because I can see the data by the report. Ken
  6. kfizz

    Copy BO report to Excel via VBA

    Hello, please I need your help. I use a code from your Forum but I get a lot of error messages. Dim BoApp As busobj.Application, BODoc As busobj.Document, BORep As busobj.Report Dim i, rpt Set BoApp = CreateObject("BusinessObjects.application") With BoApp .LoginAs "xxxxxx", "xxxxxx"...

Part and Inventory Search

Back
Top