$JobAuth: Difference between revisions
m (1 revision) |
m (1 revision) |
||
Line 8: | Line 8: | ||
The $JobAuth function accepts no arguments and returns either a 0 if the user is not authorized to use $JOB or a 1 if the user is authorized to use $JOB. | The $JobAuth function accepts no arguments and returns either a 0 if the user is not authorized to use $JOB or a 1 if the user is authorized to use $JOB. | ||
==Syntax== | ==Syntax== | ||
<p class="syntax"><section begin="syntax" /> %AUTH = $JobAuth | <p class="syntax"><section begin="syntax" />%AUTH = $JobAuth | ||
<section end="syntax" /></p> | <section end="syntax" /></p> | ||
<p class="caption">$JobAuth Function | <p class="caption">$JobAuth Function |
Revision as of 20:32, 24 October 2012
Determine if user has authorization for USE $JOB
Most Sirius $functions have been deprecated in favor of Object Oriented methods. There is currently no OO equivalent for the $JobAuth function.
This function can be used to determine if the running user has authorization to issue the USE $JOB command.
The $JobAuth function accepts no arguments and returns either a 0 if the user is not authorized to use $JOB or a 1 if the user is authorized to use $JOB.
Syntax
<section begin="syntax" />%AUTH = $JobAuth <section end="syntax" />
This function can be used in a program that builds JCL to determine if the user is allowed to use the internal reader. $JobAuth works with all security interfaces supported by Model 204.
For example, the code fragment
IF NOT $JobAuth THEN PRINT 'INVALID ATTEMPT TO USE PRIVILEGED SYSTEM' STOP END IF
would STOP if the user was not authorized to use $JOB.