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 strongm 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: *

  1. mustang7

    Selecting Connections in BusObjs Using VBA

    a) Create an object in Designer and the build a condition in the Query Panel which will prompt the user for a value, the assign it to the connection. OR b) Create a UserForm with the selection of Connections on offer. Call it from the BeforeRefreshEvent. There is a Connection Object in BO and...
  2. mustang7

    Send data into Data Provider function in VBA

    Contact BO Support, I heard that they have an internal XML DataProvider Sample which does this.
  3. mustang7

    Calling Business Objects from VB, setting conditions

    Just create an object as you would with other applications... Sample code: Sub Main() Dim App As Busobj.Application Set App = CreateObject("BusinessObjects.Application") Call App.LoginAs("TheUserName", "ThePassWord", False, "BOMain") App.Interactive =...
  4. mustang7

    BO Reports from WEB Application

    Tricky task when not using WebI. In fact, you need to have WebI installed on a server, and when calling a BO report, you should launch ZABO (Zero Administration Business Objects, is like BO for client browser and is installed on the server only). You can only look at BO reports in WebI/Infoview...
  5. mustang7

    Difference between forceCompute and refresh

    ForceCompute actualizes the changes you are doing to the Report, but does not refresh the dataprovider's content with the data from the repository.
  6. mustang7

    How to initialize BOQueryServer

    Ever thought of a licence key??? Each company gets their own unique licence key to initialise the Query Server. When working with it, I recommend to get documentation, otherwise you are wasting your time with lack of common knowledge... Contact your Account Manager. There is hardly a workaround.
  7. mustang7

    Cannot login to InfoView despite copying over BOMAIN.key

    Do you work on UNIX or NT? When creating the BOMain key, you have to have the DSN ready. So somenone there must know how to deal with DSN. Further, you must create a System DSN, if you are copying the BOMain key over to other machines. I would recommend to have Supervisor on the same machine as...
  8. mustang7

    Is there a WinCE emulator?

    Hi, Yes there is! You can order/download a CD from Microsoft called "embedded Visual Tools 3.0", which consists of two elements: =Visual Basic for CE (actually VBScript), =C++ for CE . Right now, there is a release 4.0. I haven't checked yet, what the new version is all about, but...
  9. mustang7

    Unexpected response from the zabo server --- HELP!!!

    Kathy, What is the full error code? Maybe the BOMainkey is corrupt or server access rights are limited?
  10. mustang7

    WebIntelligence

    It seems that you have Infoview, but not WebIntelligence installed. Infoview lets you read, refresh and share documents, but not edit and create. WebIntelligence allows you to create and edit.
  11. mustang7

    Overriding Prompts in Business Objects

    Hello, Here is how you do it: 1) Put "Application.Interactive = false" before the prompts and just right after each prompt, put Application.Variables("variablename").Value = "........" the value you need to pass onto. Make sure the Value is a String. 2) You can pass...
  12. mustang7

    Document file increases with no edition

    It is not clear to be a Bug from your description. Check with BO Support, as someone might have a Patch to fix this.
  13. mustang7

    jsp examples...

    Guys, You need to have access to the Developer Suite section in the www.techsupport.businessobjects.com website, as the asp/jsp samples are within there. This section is restricted for users who have purchased a SDK licence and therefore, they have access to it and can download the latest...
  14. mustang7

    Need a title to a report through VBA.

    Hi, To show the data entered, you have to create the cell in your report first interactively (not through programming), and fill it with the Variable relating to your Input variable. E.g. Set the Formula for the cell to =<testvariable>.
  15. mustang7

    How to move docs to new universe/respository

    Hi, here is the info from the Error Message Guide: ===Cannot find the [name] universe. (DA0011) Cause You may get this message when refreshing a report or trying to edit data. This means that the report cannot find the universe in the file system or in the repository (if in enterprise mode)...
  16. mustang7

    Loading Web Intelligence Reports

    Hi, I agree with Shyam, check the server settings. With Parameter screen, do you mean Query Panel??
  17. mustang7

    Is there a way to manipulate BO fro

    Yes, you should be able to do this with that command, but you have to activate the reference to the library yourself. In your editor, go to TOOLS/References in VBA, or PROJECT/References in Visual Basic 6, and tick the box for BO 5.1. What is the syntax you are using?? Try this: Dim BOApp as...
  18. mustang7

    Microsoft Forms : &quot;Could Not Load object ...

    Hello, It is not clear if it is a message from MS or BO. Please check on each machine if you are able to reference the library of the object you are using, e.g.if you are creating an object of Excel, but Excel is not referenced or not even installed on the machine. In the unhandled exception...
  19. mustang7

    HOW TO RUN VB CODE FROM THE COMMAND LINE

    You cannot call a specific macro from the command line, but you can set the initial macro in the OpenEvent and call the document from the command line: MS-DOS: &quot;C:\Program Files\Business Objects\BusinessObjects 5.0\BUSOBJ.EXE&quot; &quot;C:\Program Files\Business Objects\BusinessObjects...

Part and Inventory Search

Back
Top