-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathch3.txt
21 lines (19 loc) · 1.68 KB
/
ch3.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Command ===> Scroll ===> CSR
****** ***************************** Top of Data ******************************
000001 /* REXX */
000002 say '------------------------------------'
000003 say 'Report telling Information about the currently logged in system'
000004 say '------------------------------------'
000005 say 'By using *WHO EXEC* Utility command'
000006 say '------------------------------------'
000007 rc=isfcalls('ON')
000008 Address SDSF "ISFEXEC WHO"
000009 do ix=1 to isfresp.0
000010 Say "isfresp."ix " is:" isfresp.ix
000011 end
000012 rc=isfcalls('OFF')
000013 say '--------------------------------------------------'
000014 say 'View next report'
000015 say '--------------------------------------------------'
000016 exit
****** **************************** Bottom of Data ****************************