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. davideart

    Printing a nested-frame page

    Hi jemminger, thank for your advices about threads..they were both useful in order to get to a solution. In case someone is interested that's what i did: function printpage() { var bodyframe=parent.frames.main; if(parent.frames.main.frames.length>0){ bodyframe.frames.B2.focus()...
  2. davideart

    Printing a nested-frame page

    Hi all. I have a 3-frame web site (left,top,main) and i insterted a "print" function in the top frame.The print function only prints the main frame, calling the following easy code: function PrintPage() { parent.main.focus(); parent.main.print(); } Everything works fine as long as...
  3. davideart

    Inserting an identity column in view

    Hi James...thank you very much: the NEWID() function is more or less what i was looking for. Thank you again for quick and precise reply, cheers! David
  4. davideart

    Inserting an identity column in view

    Hi all..that's my problem and i really hope some of you can help me. I have to create a view selecting all fields from a table; plus, i'd like to insert an addictional column defined as an identity (or a random numeric value) so that i can create a sort of unique field for that view. To explain...
  5. davideart

    Writing File

    Hi asmith, thank you for your kind reply. You rise up an intresting question: does the IUSER account matter even if I use the Integrated Windows Authentication Method? I can grant write permissions to the IUSER account, but i was thinking that only the LAN account mattered..can you tell me...
  6. davideart

    Writing File

    Hi everyone. I've developed a web site that uses the Integrated Windows Authentication as Authentication method. When I try to write a file on a LAN disk (on which the user certainly has proper writing grants) i receive the followin' error: [code] Error Type: Microsoft VBScript runtime...
  7. davideart

    Inserting macro in EVERY new report

    Hi Pablo Thanks for your advice. I tried to build a template, but the .ret file doesen't seem to be able to retain macros..only layout setup... I have to admit that I am a newbie with template...am I doing something wrong or it is just that templates cannot contain VB code?
  8. davideart

    Stopping DB queries via BO

    Hi Blom Our setup is DB2 v5 for OS/390, so it is a maniframe environment. Hope this helps, bye
  9. davideart

    Inserting macro in EVERY new report

    Hi everybody. I'd like that, everytime an user creates a new report based on a given universe, a certain VB Macro were automatically added to that report....is that possible? Every help is greatly appreciated Thanks in advance David
  10. davideart

    Stopping DB queries via BO

    As promised, here comes the feedback for this solution. It seems to work correctly: after having chosen how long you want your queries to last and having correctly set up your DB2 database, everytime a query exceed this time BO user get an error message, the query on the DB is stopped and the...
  11. davideart

    Stopping DB queries via BO

    Hi I have checked with our DB2 administrator and, after a long quest, we found out that a feature exsist on DB2, which allows you to limit the duration of a query choosing different values per user and per LUName. Of course, your DBA must set this value for you. This, apparently, should solve...
  12. davideart

    Stopping DB queries via BO

    Hi Blom, You are right for what you say about online help, but yes, I checked (with Omegamon tool) if queries keep running on the server and yes, the damned ones do! The only way to stop them (before they are actually finished) is to press ESC key; no other parameter seems to work. Thanks...
  13. davideart

    Stopping DB queries via BO

    Hi Blom First of all i really want to thank you for your quick and precise answer. You are right, maybe I did not explain very well. I do use universe as dataprovider. What I'd like is that DB2 queries (executed via BO, of course) stopped running on the server after x minutes: my BO Online...
  14. davideart

    Stopping DB queries via BO

    Hi everybody. We have a BO system based on a ZABO architecture that access an IBM DB2 database. We would like that queries launched against the DB could be managed in order to avoid queries that last too long. What we look for is to re-create the behaviour of pressing the ESC key during query...
  15. davideart

    Format problem between Excel 97 and 2000

    Hi everybody We got an Access procedure that fills an Excel sheet (.xlt) with a recordset from an access table. The Excel sheet has particular formats for specific cells/columns. Everything goes well with Excel 97, whereas, using excel 2000, formats are completely lost. Here's the code we...
  16. davideart

    Recordset and stored procedure

    Thanks very much, you've been very helpful Dave
  17. davideart

    Recordset and stored procedure

    Hi everybody. I use to open MS SQL Tables via ADO (using the recordset object). I'm facin' this problem: I open the recordset using a stored procedure as object source: MyRec.Open "exec sp_spaceused",MyConn This SP returns two different sets of record...but my recorset object only...
  18. davideart

    Date format with import from generic ODBC????????????

    Hi Joran. I'm Dave and I'm experiencing your very same problem connecting my universe to a DB2 database. I'm desperetly trying to solve this, and I would like to know if you solved it...I've also contacted BO tech support, but they haven't still solved it. Thanks a lot for your help. Bye
  19. davideart

    Customizing setup

    Hi everybody I would like to install Business Objects (using a master installation on a server), but I don't want the setup wizard to install the links to the application under the start menu...i.e.: I don't want the "C:\Programmi\Business Objects\BusinessObjects 5.0\BUSOBJ.EXE" link...
  20. davideart

    Showing report via webi

    Hi, everybody. I'm a newbie to Webi, but quite expertised to ASP programming. I've installed webi on my web server and now I would like to know how to show BO reports (.rep) via asp. I know that I can use an AcitveX or an Applet Java, but I just cannot find any help or example on the BO web...

Part and Inventory Search

Back
Top