RE: Dynamics GP VST- How to find the report is printing using Visual Studio Tool
Hi Sandip
The best method is to cue up a background process behind the reports, but that is using Dexterity not VSTools.
You could log scripts and see if there is a procedure call that finishes after the reports.
Is the report modified?
If so, you can add a calculated field to the report footer with a call to the rw_ReportEnd() custom RW function.
Parameters:
in integer dict_id;
in string report_name;
I would suggest using a high negative dictionary ID (-32700 or similar) so it would not clash with any actual dexterity products.
This would at least tell you a report is finishing, but the report would not actually be finished.
Best solution use Dexterity or GP Power Tools.
Regards
David