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 SkipVought 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: lynnd
  • Order by date
  1. lynnd

    How to pass "Null" vaule to a parameter via URL?

    I think you can pass nothing through the URL as in: http://<servername>/reportname.rpt?user0=user&password0=pwd&prompt0=&prompt1=value... etc. I have done this using the Native Oracle driver (we have Oracle 8.1) and it works; I don't know about 9... Let me know if that works for you, or what...
  2. lynnd

    Stored Proc Prompts through url not working

    We are not passing any datetimes. We have a main report with 2 parameters (number and string) and six subreports. The fourth subreport that is accessed is based on a stored procedure that takes 2 parameters (cursor and number). When calling the report through a URL, the values for the...
  3. lynnd

    Stored Proc Prompts through url not working

    Did you ever get this situation resolved? I also am having trouble passing values through the URL to my stored procedure.
  4. lynnd

    Using Sub-Queries in CR

    Hi! Just wanted to update you on one note you made earlier: &quot;EXECUTE IMMEDIATE is essentially a call to another stored procedure, which crystal doesn't support with Oracle.&quot; Because I needed to alter my table, I found I couldn't use temp tables anyway. But I did find that the 'Execute...
  5. lynnd

    Using Sub-Queries in CR

    So is this 'permanent Global temp table' persistant beyond the session? (i.e. Do you only create it once outside of your stored procedure, then insert data into it inside of your sp, and then only the rows are deleted at the end of the session?) My concern is that there will be many different...
  6. lynnd

    Using Sub-Queries in CR

    I have accessed the above document and it has been a big help, but the snag I'm working on right now is creating a temporary table. When I try to add the procedure to a report, I get a very non-descriptive &quot;Not Supported&quot; error. Here's my procedure...(keep in mind that more SQL will...
  7. lynnd

    Using Sub-Queries in CR

    I did consider a sub-report, but because time to execute/performance is a big factor, I'm trying to stay away from them. Do you have any experience with stored procedures from Oracle? We've not used them here before, and I'm trying to do some experimenting with them right now, but keep hitting...
  8. lynnd

    Using Sub-Queries in CR

    I'm also still using 8.5... I may have had it working earlier without realizing it--the query took so long to execute that I thought I was locking up Crystal. When I ran the same query in SQL Plus, it took over 10 min. I know I didn't wait that long!!! I'm now working with our DBA to optimize...
  9. lynnd

    does anyone know when this keyword search will be fixed?

    I'm feeling your pain... I didn't realize I relied so much on the Keyword Search for information!
  10. lynnd

    Using Sub-Queries in CR

    Hello, I am trying to create a report using a correlated sub-query. I'm connecting to an Oracle db via ODBC, and need the option to 'perform grouping on server'. Has anyone used a sub-query and gotten it to work? I really need a method of how to set it up--I tried modifying the SQL directly...
  11. lynnd

    WHAT IS THIS ERROR?

    With Access 2000, ADO is the default instead of DAO (as it was with older versions). You will need to check which references you are using. If you do not have &quot;Microsoft DAO 2.5/3.51 Compatibility Library&quot; checked, then you need to fully quality your database and recordset objects as...
  12. lynnd

    WHAT IS THIS ERROR?

    What version of Access are you using?
  13. lynnd

    WHAT IS THIS ERROR?

    You need to include more information in your question for others to fully understand your problem. (Also, please turn off your Caps Lock!) If you are trying to use the Set command on a variable that is not an object you will get a type mismatch error. That's as helpful as I can be with the...
  14. lynnd

    Crystal Reports linked to Access Database

    a little late... This error probably means that you have the MSAccess database open. Try closing it and then linking to it.
  15. lynnd

    refresh unbound form

    If your form is initialized to a new record when it is first opened, you could just include code to re-open the form after a save. DoCmd.Echo False 'this turns off screen repainting so the user won't see the close and open DoCmd.Close DoCmd.OpenForm &quot;MyFormName&quot; DoCmd.Echo True 'be...
  16. lynnd

    Bound Combo Box help

    You can pull that text into a value using the following syntax: value = Combobox.Column(column[,row]) Column is zero-based, so if the text you need is in the second column, you would retrieve that value using: combobox.Column(1)
  17. lynnd

    ? on ActiveX Control for CR in Access

    Hello, I have created a Crystal Report (v8.5) that will be accessed by end users through Microsoft Access (2000). The end users need the means to: 1) preview, 2) print, and 3) save to a file. I've included the ActiveX control for Crystal (Crystl32.ocx) and included the code for them to do the...
  18. lynnd

    ? on ActiveX Control for CR in Access forms

    Hello, I have created a Crystal Report (v8.5) that will be accessed by end users through Microsoft Access (2000). The end users need the means to: 1) preview, 2) print, and 3) save to a file. I've included the ActiveX control for Crystal (Crystl32.ocx) and included the code for them to do the...
  19. lynnd

    ? on ActiveX Control for CR in Access form

    Hello, I have created a Crystal Report (v8.5) that will be accessed by end users through Microsoft Access (2000). The end users need the means to: 1) preview, 2) print, and 3) save to a file. I've included the ActiveX control for Crystal (Crystl32.ocx) and included the code for them to do...

Part and Inventory Search

Back
Top