$JobAuth

From m204wiki
Revision as of 17:36, 28 January 2011 by 198.242.244.47 (talk) (Created page with "{{DISPLAYTITLE:$JobAuth}} <span class="pageSubtitle"><section begin="desc" />Determine if user has authorization for USE $JOB<section end="desc" /></span> <p class="warning">Mos...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

<section begin="desc" />Determine if user has authorization for USE $JOB<section end="desc" />

Most Sirius $functions have been deprecated in favor of Object Oriented methods. The OO equivalent for the $JobAuth function is to be entered.

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" />

$JobAuth Function

%AUTH is set to either 0 or 1.


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.

Products authorizing $JobAuth