Focal Point
Auto prompt issue

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

November 16, 2011, 03:12 PM
SRC
Auto prompt issue
I have customers who hit the RUN button in an auto prompt procedure several times if the report doesn't respond as quickly as they would like.

Does anyone know of a way to post a "Report is running" message that is visible to the user while the report is in progress?

One simple solution I use is to add a -PROMPT &MSG.*** Please do not click the RUN button but once ***.


Dev Studio /7.6.11/7.7.02M
MVS/USS
AIX/SOLARIS
Windows WF Client 7.6.8/7.6.11
November 17, 2011, 02:53 AM
Dave
SRC,

What helps is running the report with "open new window".

The fact that a new window pops-up is confirmation for the user that the report has started.

Or you could fiddle around in the autoprompt files and add some Jscript that shows an Alert when the run button is pressed...

G'luck


_____________________
WF: 8.0.0.9 > going 8.2.0.5
November 17, 2011, 07:58 AM
AlexU
 
//add showRunning() in the onsubmit property of the Form

function showRunning() {
window["iframe1"].document.body.innerHTML = "<br><br><b>Running, please wait...</b>";
}
I have use this where I have needed to have and intermediate message.
 



WF 7703M, XP/Win7, MRE, RC, BID, PMF, HTML, PDF, Excel 2000/7/10
November 17, 2011, 08:27 PM
SRC
Dave and AlexU, both good suggestions. Thanks for your responses. Dave, do you mean set "Run in a new window" as the default or just instruct the users to check that box on the auto prompt screen?

Thanks..............Steve


Dev Studio /7.6.11/7.7.02M
MVS/USS
AIX/SOLARIS
Windows WF Client 7.6.8/7.6.11
November 18, 2011, 05:30 AM
Dave
Well,

you can instruct the users, but they'll forget about it soon.

Default would be better.

But AlexU's solution is actually a bit better. Mine is quick workaround.

G'luck


_____________________
WF: 8.0.0.9 > going 8.2.0.5
November 18, 2011, 10:32 AM
SRC
AlexU, can that script code be added to auto prompt or just html forms code?


Dev Studio /7.6.11/7.7.02M
MVS/USS
AIX/SOLARIS
Windows WF Client 7.6.8/7.6.11