Views:
If the Do not display this message again checkbox is marked to turn off printing of the Payroll Transaction Audit report as shown below and you now need the report to print, there is not a window option to turn this report back on.  You can run this SQL script in Management Studio on the company database. Note that the script below will reset the flag for all users.  If you would like to restrict to a certain user, add  where  USERID = 'enter users login id'.  A zero value turns off the prompt a value of 1 turns on the prompt.
 
update SY01401 set USRDFSTR='0' where coDefaultType = '3' --DOES NOT receive prompt
update SY01401 set USRDFSTR='1' where coDefaultType = '3' --DOES receive prompt