Command string template to run Oracle Reports
$CMD userid=$DBUSERNAME/$DBPASSWORD@$DBCONNECT report=$PROGRAM destype=file desname=$BPROGRAM.html batch=yes errfile=$BPROGRAM.err desformat=html
When the tokens in the above command string for Oracle Reports are replaced with values, the command executed in Job Service looks like this:
r30run32 userid=scott/tiger@Brio8 report=inventory destype=file desname=inventory.html batch=yes errfile=inventory.err desformat=html
Command string template to run shell scripts on a Job Service running on UNIX
$CMD $PROGRAM $PARAMS
When the tokens in the above command string for running shell scripts are replaced with values, the command executed in Job Service looks like this:
sh runscript.sh p1 p2 p3
Command string template to run batch files on Job Service running on a Windows system
$PROGRAM $PARAMS
When the tokens in the above command string for running batch files are replaced with values, the command executed in the Job Service looks like this:
Runbat.bat p1 p2 p3