$Cms: Difference between revisions
m (1 revision) |
m (1 revision) |
||
Line 22: | Line 22: | ||
</p> | </p> | ||
would set global variable NEXTPROC to 'PROC.CMS' if running under CMS and to 'PROC.MVS', otherwise. | would set global variable NEXTPROC to 'PROC.CMS' if running under CMS and to 'PROC.MVS', otherwise. | ||
<ul class="smallAndTightList"> | <h2>Products authorizing {{PAGENAMEE}}</h2><ul class="smallAndTightList"> | ||
<li>[[Sirius functions]]</li> | <li>[[Sirius functions]]</li> | ||
<li>[[Fast/Unload User Language Interface]]</li> | <li>[[Fast/Unload User Language Interface]]</li> |
Revision as of 18:31, 25 October 2012
Determine if online is running under CMS
Most Sirius $functions have been deprecated in favor of Object Oriented methods. There is currently no OO equivalent for the $Cms function.
This function can be used to determine if the online is running under CMS.
The $Cms function accepts no arguments and returns either a 1 if the online is running under CMS or a 0 otherwise.
Syntax
<section begin="syntax" />%CMS = $Cms <section end="syntax" />
This function can be used to test if running under CMS before running any operating system specific code. For example, the program
IF $Cms THEN %RC = $SETG('NEXTPROC', 'PROC.CMS') ELSE %RC = $SETG('NEXTPROC', 'PROC.MVS') END IF
would set global variable NEXTPROC to 'PROC.CMS' if running under CMS and to 'PROC.MVS', otherwise.