I've created an Autosequence that is scheduled to run every 15 minutes. It dumps Dashboard data into a .txt file which is used to update In-House displays with real-time POS data.
The 3700d.log shows that every 15 minutes the autosequence tries to run, but shows that "Autosequence #20505 is still running!"
The Autosequence has 1 step. It calls an External Program (.bat). The batch file calls a sql file with the following statement:
I have other external programs that run the same way, and work fine. Only difference is that they are run once a day, not every 15 minutes.
Any help is appreciated!!
The 3700d.log shows that every 15 minutes the autosequence tries to run, but shows that "Autosequence #20505 is still running!"
The Autosequence has 1 step. It calls an External Program (.bat). The batch file calls a sql file with the following statement:
Select getdate() as "DateTime", rest_name, net_sales_ttl, labor_dollars, cover_count, check_count, discount_ttl, void_ttl, (labor_dollars/net_sales_ttl) from micros.rest_def, micros.dashboard_system_ttl where (labor_dollars/net_sales_ttl)>0;
output to U:\Reach54\reach015.txt;
EXIT
output to U:\Reach54\reach015.txt;
EXIT
I have other external programs that run the same way, and work fine. Only difference is that they are run once a day, not every 15 minutes.
Any help is appreciated!!