BPM for clearing Mass Print on Maint. Jobs

9.05.602
I have noticed that after Mass Printing maintenance jobs, the check box does not clear. I am looking to write a BPM that would clear that flag after printing. Any idea what method is used to print the travelers? I am not sure where to start on this.
Thanks
Melissa

Printing does not trigger any Method Directives unfortunately.

I have been playing with systask for a project of mine and I think it will work for this.

I made a simple example for job traveler.

Greg

[/uploads/default/original/2X/3/36433c8e06465b055bd65b6c65fc15d46238f9bc.png]

disable triggers for load of JobHead.

For each JobHead where JobHead.Company = cur-comp and JobHead.JobNum = JobHead.JobNum.

                            If JobHead.StatusReadyToPrint = false then next.

                            Assign JobHead.StatusReadyToPrint = false.

End.