Drilldown report

Hello,

Anybody else but me misses the drilldown funtionnality that every other report generator have on the planet, except FastReport (and maybe QR also, to be fair, i don't know).

Regards
Pierre

Comments

  • edited 11:41AM
    Hello,

    I should have asked :

    Anybody that knows what it is... and misses that functionnality.
  • edited 11:41AM
    I don't know what drilldown report is. Would You describe it?

    Regards:Alex
  • edited 11:41AM
    Hello,

    DrillDown report are the possibilty for a enduser to be able to double-clic on a area on the preview to generate another report.

    For instance, your enduser call a report for a total of its sales by month. Wtih the drilldown functionnality, he could double-clic on a total for a month and he could generate rigth away all the invoices that totalize the summary total from the first report.

    In fact, we need a event where all memos could be clickable in the preview. In a double-clic event you could insert the code to generate the report you need, or in fact anything you need.

    For summary reports, you could be able to generate all invoices(in the example above) and in a detail report, you could be able to bring back where the transactions was made. ( the .pas where it originates)

    All competitors have this now, except us. I hope V3 will have it. I also hope the V3 brings stuff worth the rewrite that we will have to do, cause if only the look has change and a few minors improvements, I am simply out of here. We waited so long for V3 that it better be extra extra good. I am a old FR user, like the tool but I am very disapoointed with the length of time for the release of V3. I simply need the drilldwon funtionnality cause I intend to rewrite or improve all my reports before commercialisation(to a bigger scale) of my products. Will the rewrite be with FR or RB, we will see soon I guess.

    Regards
    Pierre
  • edited 11:41AM
    OK. I got it. In the prepared and loaded (in the preview) report - as metafile - all object is clickable. The click event fires the OnObjectClick(View:TFRView) event. In this event handler You can do anything You want, because You can retrieve all important information from the passed parameter. I hope this will help a little.

    Regards:Alex
  • edited 11:41AM
    You can design drilldown report in Fast Report by using "ObjectClick(TfrView *View)" event and store in Tag property of Memo the value of primary key to load the details of records so you can access the values of Tag by call View.Tag
    and then use this values to generate details report.


    Regards Ali sharkas
  • edited 11:41AM
    Hello Ali,

    Sounds good. It looks like you have already done that. Can I use you expertise? Let's say I have a row in a detail band, with 5 memos on it.
    I want that the enduser could click on any of the five memos and from that I want to generate the drilldown report. How can I get infos(text) from the other memos that need. For instance, I need the text from Memo2 and Memo3 to generate the drilldown, but I want that the enduser could click on Memo1, Memo4 and Memo5 and get the value(text) from Memo2 and Memo3? In fact from
    anywhere where there is text i want to be able to generate the drilldown report.

    From your previous message, you said to use then .Tag. In the obp of the band would I need to fill the .tag of every memos on the
    detail band with the infos that i need or there is another way of doing this?

    TIA
    Pierre
  • edited 11:41AM
    Hello,

    I think we would need a global variable that we could fill on a event like OnGetValue. A bit like this

    if Object = Memo1 then GlobVar := memo1.value
    if Object = Memo2 then GlobVar := GlobVar +';'+ memo2.value;

    And in the preview we could use the OnObjectClick and if the GlobVar <> nil then
    take the values of GlobVar semi-colon separated.

    If only Alexander could pass by once on a while and give us his thoughts on this!

    Anobody?

    Pierre

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.