Stop/Start Production from object script
Hi,
Is there any objectscript command available to start or stop production from object script?
Thanks
Product version: IRIS 2020.1
Discussion (1)1
Comments
To start a production:
do ##class(Ens.Director).StartProduction("myProduction")To stop a production:
do ##class(Ens.Director).StopProduction()
This is from here.