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

  1. crystalvictim

    Setting params for subreport (based on Oracle stored procedure)

    That's right; yet as the original data does not necessarily comes from an Oracle database, but might as well be SAP, we aren't able to rebuild the crystal report in oracle. In fact, an advantage of the SP-solution in the report would have been that this way we would have been able to transfer...
  2. crystalvictim

    Setting params for subreport (based on Oracle stored procedure)

    The reason for this kludgy construction is this: A report (based on SAP or Oracle data) regularly runs and returns data, let's say on a daily basis. Now we'd like to store some of this data (e.g. group summaries and key figures) in our oracle database each time the report runs. The SP is meant...
  3. crystalvictim

    Setting params for subreport (based on Oracle stored procedure)

    synapsevampire, I want the subreport to be linked to the main report. Thus I'd have to link a table field of the main report to the subreport's parameter (which originates from the stored procedure). Yet I have to specify it's value when running the main report. If I enter a value, it is...
  4. crystalvictim

    Setting params for subreport (based on Oracle stored procedure)

    Hi, I'd like to know if there's a solution for the following problem I'm dealing with since quite some time without success: I have an ordinary report that's retrieving data from a table. I've written an oracle stored procedure / function with two parameters that inserts the values of its...
  5. crystalvictim

    modifying scheduled report's/event's attributes

    Hi, using CE8.5 is it possible to change a scheduled report's attributes? To be more precise, we are in need to replace the unmanaged disk's path specification in a bunch of more than hundred reports. As this attribute seems to be 'hidden' within the CE-database's BLOB-field, we're looking for...
  6. crystalvictim

    £ symbol changing to $ symbol in Enterprise

    I'm just guessing but I suppose using the 'currency symbol' will result in the report using the system's default currency symbol (which might not be identical on your client and your CE server). As there's one subreport that doesn't change its symbol, you could check by comparing this field's...
  7. crystalvictim

    write back to database

    okay, so this seems to be a new feature in CR9. We're actually using CR8.5 :-( So the only guess I can make would be that it depends on the syntax you're using. WinSQL might implicitely convert your syntax while CR might not. As you're using an ODBC driver, there might also be (other)...
  8. crystalvictim

    write back to database

    Have you checked if it is really possible to directly manipulate data via an sql command? As far as I know, sql commands are only designed to retrieve data and therefore can only contain select clauses. The only way to write back data to a database I could imagine is to write a function (i.e. a...
  9. crystalvictim

    Using LIKE to search for "*" in text

    If you do not need to work with wildcards and just want to make sure that your text field contains the string *HIC*, you might try something like: if instr({textfield},'*HIC*')>0 then // found ... else // not found ... end if; That way, you would find *HIC* while you wouldn't find...
  10. crystalvictim

    Formula for Dates

    I don't know if I got you right: You have a formula @ToDate that returns a date (alsways a Saturday) and are looking for a way to calculate the @FromDate (which is supposed to be always the Sunday before @ToDate) ? You could try to use {@ToDate}-6; as calculation in your @FromDate formula -...
  11. crystalvictim

    free viewer/reader?

    After having installed Crystal Enterprise, you should see "ePortfolio", "Crystal Management Console" and "Crystal Offline Viewer" in the Crystal Enterprise Launchpad. From there you'll be able to download and install the crystal offline-viewer (windows version only). At least, this is the case...
  12. crystalvictim

    selection formula pased on parameter-field in SAP

    I think CR always executes formulas on client-side if they contain variables or that's what we experienced. In fact, we had to make use of this behaviour in order to troubleshoot another bug ;-)
  13. crystalvictim

    Crystal function similar to Oracle's LPad?

    You could also use: totext({table.number},replicatestring('0',8)) or even replace '8' with a global variable in order to be able to easily change the format but altering the variable's value, especially when using various formula fields that contain this expression.
  14. crystalvictim

    CE date seems to use mm/dd/yyyy as opposed to dd/mm/yyyy

    Hi, we have a similar situation due to the fact that we were adviced to set up our CE server in english, so you might check the language-specific settings that have been applied to your operating system (maybe date format is switched to US there). To make sure that date fields within the reports...
  15. crystalvictim

    running reports based on R/3 data in batch mode (scheduled from CE)

    Hi, just being curious: is there anybody out there who happens to have already succeeded in scheduling reports on Crystal Enterprise that use SAP tables or infosets as datasource and have them running successfully in SAP in batch mode ? Regards
  16. crystalvictim

    creating and viewing a report in multiple languages

    Hi! Just being curious: we`re using CR8.5/CE8.5. Is there any possibility to create multi-language-report? The only solution we know about would be creating a language-parameter, replacing all textfields by formula fields and displaying text dependant from the parameter's value. But this way...
  17. crystalvictim

    Bad Date Format

    how exactly does your formula (using CDate) look like ? CDate is supposed to be able to deal with numbers, dates and strings (at least in CR8.5).
  18. crystalvictim

    sql commands for excel data

    Thanks for your replies! (I have to admit, that I should have thought of this myselft, but somehow I missed it...) Showing the sql-string and changing it according to our needs worked :-) (Those '_' and '$' attached to the tablename prevented my former efforts from being successfull.
  19. crystalvictim

    sql commands for excel data

    Hi, does anybody happen to have expierence using sql commands in CR10 in combination with accessing data that is stored in an excel sheet? What I'd like to do is to create an sql command that not only selects certain columns from the excel sheet but also does some initial conversion (i.e...
  20. crystalvictim

    Multiple string parameters in PH

    Do you mean you want to check "allow multiple values" and then choose "discrete and range values" from the radio buttons? If so, this might get a little bit tricky. You could try something like the following: local numbervar i; local stringvar s; for i:=1 to ubound({?P1}) do if...

Part and Inventory Search

Back
Top