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!

Recent content by PeterDimitrov

  1. PeterDimitrov

    Dynamically pass Crystal Reports formula to a Stored procedure Parameter

    Change the software. Wirig the report and the software is unacceptable.
  2. PeterDimitrov

    SSRS export report as JSON

    Why do you need SSRS to do this ? SSRS is a presentation layer. You can use SQL Server job to run the stored procedure
  3. PeterDimitrov

    Crystal Reports RPTR Format Not Available

    Crystal reports XI does not support RPTR. RPTR is introduced with Crystal reports 2011. If you are a small business you can use the free R-Tag Community edition (http://r-tag.com/Pages/CommunityEdition.aspx) and export your reports from RPT to RPTR then share them with your customers...
  4. PeterDimitrov

    Multiple multi value parameters

    Multi-value parameters are useful for IN clauses. Something like "Product in ('x0', 'x1', ...)". You probably can treat them as arrays and do filtering like (Product[0]='x0' AND Factory[0]='y0') OR (Product[1]='x1' AND Factory[1]='y1') However, this will be a mess and I am not sure how you can...
  5. PeterDimitrov

    Crystal Reports Left outer join and link type

    If you filter the left table, which I believe you do, the left join will be come inner join. Select ... from a LEFT join b on a.id=b.id where b.name='xxx' will be the same as: Select ... from a INNER join b on a.id=b.id where b.name='xxx' if you want to filter the left table you need to add...
  6. PeterDimitrov

    Creative ways to get a 2nd subreport capability from a subreport.

    You are describing a classic dashboard. Crystal report is designed to be a static report. It is useful if you need to print an invoice, form or save a data snapshot in a form of document. Generally speaking it is designed for the paper world. There are some basic interactive options like sorting...
  7. PeterDimitrov

    Hi there, I am trying to automat

    Microsoft doesn't recommend using automation from unattended, noninteractive client applications. You are facing just the top of the iceberg now. Check this link: http://support.microsoft.com/kb/257757 www.R-Tag.com Viewer and Scheduler for Crystal reports, SSRS and Dynamic Dashboards.
  8. PeterDimitrov

    How do automate a report to query records for a specific time interval?

    1. You can use SQL expressions to calculate from-to dates and to filter the data directly in the database. This will be the easiest and fastest way within Crystal reports. 2. If you don't want to use SQL expressions and you don't have subreports you can create a shell report and add your...
  9. PeterDimitrov

    Month-Year c/w Record Counter Query (MS Access vs Crystal)

    You can use a command and create a query like : select year(<datefield>) & ' - ' & monthname(<datefield>) as year_month, count(*) as count_of_records from <tablename> group by year(<datefield>) & ' - ' & monthname(<datefield>) or select year_month, count(*) as count_of_records from ( select...
  10. PeterDimitrov

    Count of items with feature

    If I understand correctly, you want to get the number of times each comment is used per StockCode ignoring the order number. If this is your case, you can use a command like this : SELECT o.MStockCode, cmm .NComment, Count(*) as NumberOfComments FROM Orders o INNER JOIN ( SELECT SalesOrder...
  11. PeterDimitrov

    Crystal 2011 export multiple reports to one excel file on separate sheets

    If you can use 3rd party software try our community edition, it is free: http://r-tag.com/Pages/CommunityEdition.aspx. www.R-Tag.com Viewer and Scheduler for Crystal reports, SSRS and Dynamic Dashboards.
  12. PeterDimitrov

    I am trying to create a report in c

    It is still not clear what do you want to do. If you want to export the report to Excel and have the grid lines visible there is an option in Crystal export settings, which will allow you to do this. If you want to export the report to Excel with group structure you will need either to write...
  13. PeterDimitrov

    2 reports in one printing (not subreports)

    Handling scenarios like that in Crystal reports is hard and time consuming. Our free R-Tag Community edition is able to handle it much easier, so if you can use 3rd party software to run your reports feel free to download it from this page http://www.r-tag.com/Pages/CommunityEdition.aspx. Our...
  14. PeterDimitrov

    Hiding a parameter in Crystal, while still populating it from the User ID in 3rd Party front end.

    It might be a little bit late, but check also our viewer: http://r-tagsoftware.com/Pages/Viewers You can set a default value for the parameter, for example the current user, and tell the system to use the value without showing the parameter. Here is a video demonstrating the case...
  15. PeterDimitrov

    Stand Alone versions of CR

    Do you mean a standalone product to develop reports or to run and view reports ? There are plenty of viewers , which will allow you to view the reports. Some are free. SAP has a free viewer too, but it is not able to refresh reports. www.R-Tag.com Viewer and Scheduler for Crystal reports...

Part and Inventory Search

Back
Top