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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by vtj

  1. vtj

    Alias to a column

    Is it possible the "_" is a reserved character on your system? If so you may have to enclose the name in qoutes. VTJ
  2. vtj

    Hi, I've been asked to enable a

    Dear Sync, Thanks for the response. I'll let you know how I make out. VTJ
  3. vtj

    Hi, I've been asked to enable a

    Hi, I've been asked to enable a direct connection to Impromptu from within a java created program. The users want to be able to open Impromptu without reentering their logon information. Does anyone know of any links to documentation on this subject. Thanks, VTJ
  4. vtj

    Need to find rows that are present in 1 table but not the other.

    The execption join may be database specific which is why I offered the second example. The term is exception join on the AS/400. VTJ
  5. vtj

    Need to find rows that are present in 1 table but not the other.

    Try an exception join or left outer join. Select a.key1 from tbl_1 a exception join tbl_2 b on a.key1 = b.key1 or Select a.key1 from tbl_1 a left outer join tbl_2 b on a.key1 = b.key1 VTJ
  6. vtj

    Date Prompt in Custom SQL Report

    I had the same issue with DB2. I was told to add the line: NOSCAN=0 in each of the Schema entries in the DB2CLI.INI file. The Cognos case number was 3094378 I hope this helps VTJ
  7. vtj

    rename a culomn

    While you can't rename the column in the database, you can rename the field in the report or a new file by using a SELECT field1 AS newfieldname. VTJ
  8. vtj

    strqmqry /passing variables

    Try removing the table qualifier ("A") from your filename. The system may think cuno is a variable as opposed to the column name (A.cuno). VTJ
  9. vtj

    Twisted SQL statement

    You can also use a subselect in your where clause. where childid in (select a.childid from maintable a where a.therapist = therapistid) VTJ
  10. vtj

    Add CC recipient to a cognos email script

    Thanks for the help. I'll try it and let you know. You may be right about the mapi. Thanks VTJ
  11. vtj

    Add CC recipient to a cognos email script

    Sorry if I seem a bit dense. This is my original script. Function Email(Message as String) Dim objSession As Object Dim objMessage As Object Dim objRecipient As Object Dim sProfile As String 'You can specify any name you desire sProfile = "Company Exchange&quot...
  12. vtj

    How do i get Database base name and Catalog path in the Report?

    I should have realized that you would want it to be dymanic. An alternative is use the Catalog description object. Set this description to the name of the catalog and insert that object into the report. You can change the description by clicking on the catalog menu item and select the...
  13. vtj

    Add CC recipient to a cognos email script

    Thanks for your reply. Unforunately I've not been able to get it to work. When I past it into the script and try to compile I get an error objOutlookEMail.cc is not a valid object. I'm trying different combinations of your solution and will let you know if anything changes. I'm using Outlook...
  14. vtj

    How do i get catalog Folder Name?

    This is a bit convoluted but it works. Insert the catalog name then select it and copy it. Open Notepad and paste in the name. Delete what you don't want then copy that. Insert a text frame into the header and paste in the string you want to see. Delete the catalog name from the header...
  15. vtj

    Add CC recipient to a cognos email script

    I've created an email script to email pdfs to multiple users. I would like to add a cc to those emails. Does anyone know how to do this? We use Outlook as our corporate email system. Thanks, Vtj VTJ

Part and Inventory Search

Back
Top