Focal Point
Drill down Fexes

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/7647068236

August 16, 2013, 07:39 AM
Georgie V
Drill down Fexes
i have an issue with all my drill down Fexes, where there is no indication that the second fex is running when the users click on the drill down, so they keep clicking multiple times because it looks like nothing is happening
this is causing all the agents to be used up so that no one else can get into WebFocus (no agents available). Any ideas on how to get around this?


7.6.4 reporting server running on iseries 5
http server windows platform
August 16, 2013, 11:18 AM
njsden
A quick "fix" would be to add a TARGET=_BLANK attribute to each of your FOCEXEC style setting so the drill-down opens in a new window, which even if slow will give your users an indication that something is happening.


If you want them to open within the same page though and your underlying calls are a bit slow, you may need to resort to more elaborate means like using wrapper .fex/.htm file to display some notification of stuff happening while the HTML document's href is silently being redirected to the actual WFServlet call executing your report, or perhaps using JavaScript routine instead of direct FOCEXEC calls in your drill-downs. That way, you can use your JavaScript piece to display a "Running..." message somewhere in your page to later change the document's href.

Just keep in mind that adding all of this JavaScript baggage will make your code not only more difficult to maintain (although perhaps providing a better user experience) but it may affect the behaviour of the "Back" button in your browser in case users want to return to the main report page; you'll pretty much have to built a lot of custom JS code to make that happen seamlessly.

TARGET=_BLANK may provide a faster win.

You can always try and train your business users to be extra patient Smiler



Prod/Dev: WF Server 8008/Win 2008 - WF Client 8008/Win 2008 - Dev. Studio: 8008/Windows 7 - DBMS: Oracle 11g Rel 2
Test: Dev. Studio 8008 /Windows 7 (Local) Output:HTML, EXL2K.
August 19, 2013, 09:51 AM
Doug
There should be an immediate indication in the status bar. Howver, the "TARGET=_BLANK may provide a faster win" and is a fine idea.