Skip Ribbon Commands
Skip to main content

Brava - Audit printing

Brava for Webto 6.0 do not have OOTB functionality to Audit printing events.  Auditing printing is one of the critical things to protect the company assets
The following code will help to enable auditing print functionality in brava.
 
We need to add the print audit code in markup.jsp.  This file in general will be located at \webtop\custom\component\markup
 
This will popup alert print job complete. We can modify the code within the script tag whatever we want.
 
<markup.jsp bottom excerpt>
........
.....
  <dmf:div  id="embedControlLocation"></dmf:div>
   <iframe id="hiddenframe"  name="hiddenframe" width="15" height="1"  frameborder="0"
           marginwidth="0"  marginheight="0">
   </iframe>
   </dmf:form>
   </dmf:body>
</dmf:html>
<script  language="Javascript" for="BravaXClient" event="PrintJobComplete()">
      alert( "print job complete" );  
</script>