Written by

Technical Consultant at Traverse Health
MOD
Question Muhammad Waseem · Jun 24, 2021

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

Comments

Evgeny Shvarov · Jun 24, 2021

To start a production:

do ##class(Ens.Director).StartProduction("myProduction")

To stop a production:

do ##class(Ens.Director).StopProduction()

This is from here.

0