Accessing Scheduler optional parameters inside MMG studio model paragraphs

The Scheduler Service automates the running of models in the MMG application. The Scheduler Service contains a graphical user interface and a single control point for defining and monitoring background executions.

For more details on the Scheduler Service, see Scheduler Service section.

To access the optional parameters passed from the Scheduler during execution of any models, run the following script:

To print
print('BATCHRUNID value is : ${$BATCHRUNID$}')
print('TASKID value is : ${$TASKID$}')
print('FICMISDATE value is : ${$FICMISDATE$}')

To access the optional parameters passed during execution of any models, run the following scripts:

%python
print('threshold value is : ${threshold}')

Note:

Threshold is the optional parameter passed during the model execution.