Author |
Message |
Topic: ISPF Profile Changed, |
Maton_Man
Replies: 15
Views: 7244
|
Forum: TSO and ISPF Posted: Tue Nov 30, 2004 7:39 pm Subject: ISPF Profile Changed, |
Don't you have system programmers at your site? |
Topic: Reg: Mass catalog of SPUFI Output into a Dataset |
Maton_Man
Replies: 5
Views: 4143
|
Forum: TSO and ISPF Posted: Sun Nov 28, 2004 8:59 pm Subject: Reg: Mass catalog of SPUFI Output into a Dataset |
DSNTEP2 will give you all the information, it just spreads it over several lines. Write a rexx which joins them all together again and write the output to a dataset. It is very easy to do. I wrote ... |
Topic: How to create an arrary or a table in CLIST? |
Maton_Man
Replies: 1
Views: 1381
|
Forum: TSO and ISPF Posted: Thu Nov 25, 2004 8:02 pm Subject: How to create an arrary or a table in CLIST? |
This CLIST will demonstrate what you want. It will print the numbers from 0 - 98 that are stored in variables which resolve to the name ARRAY1, ARRAY2, etc...
PROC 0
... |
Topic: CLIST-REXX help needed.... |
Maton_Man
Replies: 5
Views: 6955
|
Forum: TSO and ISPF Posted: Wed Oct 20, 2004 9:20 pm Subject: CLIST-REXX help needed.... |
I will reiterate one point which I have explained implicitly rather than explicitly and that is that you do not need to pass the value between CLIST and Rexx because it is accessible to any program in ... |
Topic: CLIST-REXX help needed.... |
Maton_Man
Replies: 5
Views: 6955
|
Forum: TSO and ISPF Posted: Wed Oct 20, 2004 9:16 pm Subject: CLIST-REXX help needed.... |
I concur with Semigeezer, you have a lot to learn about ISPF and Rexx/CLIST syntax!
Briefly - ZSCREEN is an ISPF variable that is accessible irrespective of the language you use to interrogate it. ... |
Topic: Setting Restrictions to the job |
Maton_Man
Replies: 4
Views: 2440
|
Forum: Job Control Language(JCL) Posted: Thu Oct 14, 2004 6:44 pm Subject: Setting Restrictions to the job |
You cannot issue authority to CHOSEN people. You can make your job available for everyone by adding this immediately after your jobcard
I was under the impression you could do this using appr ... |
Topic: Display ISPF table |
Maton_Man
Replies: 4
Views: 2869
|
Forum: TSO and ISPF Posted: Wed Oct 13, 2004 10:16 pm Subject: Display ISPF table |
You cannot have two scrollable areas on the same panel.
If you limit your table display to a few lines then what you want to do should be feasible using a dynamic area to display the descriptions. ... |
Topic: REXX with ISPF Panel |
Maton_Man
Replies: 1
Views: 3184
|
Forum: TSO and ISPF Posted: Tue Oct 12, 2004 7:28 pm Subject: REXX with ISPF Panel |
You have a number of problems here:
1. No error checking in your rexx = bad
2. No variable value checking = bad
3. No demonstration of how you are calling this rexx, therefore no way of telling w ... |
Topic: isrddn |
Maton_Man
Replies: 2
Views: 1898
|
Forum: TSO and ISPF Posted: Tue Oct 12, 2004 7:14 pm Subject: isrddn |
I would guess that this is dependent on whether these datasets are allocated in your logon JCL or whether you allocate them later in a logon CLIST/Rexx. If they are in your JCL then that is why you c ... |
Topic: How to find out the Versions of Cobol, JCL or any other tool |
Maton_Man
Replies: 4
Views: 5249
|
Forum: TSO and ISPF Posted: Tue Oct 12, 2004 7:05 pm Subject: How to find out the Versions of Cobol, JCL or any other tool |
SHOWMVS is another very informative utility. You can probably get this from CBT. |
Topic: copy command for VB files in REXX |
Maton_Man
Replies: 8
Views: 6901
|
Forum: TSO and ISPF Posted: Tue Oct 12, 2004 6:58 pm Subject: copy command for VB files in REXX |
I typed TSO HELP for a list of all commands and came up with the following:
<snip>
DATA MANAGEMENT COMMANDS:
... |
Topic: Display ISPF table |
Maton_Man
Replies: 4
Views: 2869
|
Forum: TSO and ISPF Posted: Tue Oct 12, 2004 6:51 pm Subject: Display ISPF table |
Can you clarify something for me please? Are you wanting the status definitions to change based on whichever codes appear on the screen, ie you have the status codes C, P, R & W being displayed so yo ... |
Topic: Invoking Panel from a Panel |
Maton_Man
Replies: 4
Views: 3034
|
Forum: TSO and ISPF Posted: Thu Jul 29, 2004 1:27 am Subject: Invoking Panel from a Panel |
It should be &ZSEL not just ZSEL.
Try changing your code to the following:
&ZSEL = TRANS (TRUNC(&ZCMD,'.')
1,'PANEL(COMPILE)'
X,'EXIT') |
Topic: FTP Using REXX |
Maton_Man
Replies: 16
Views: 11448
|
Forum: TSO and ISPF Posted: Fri Jun 25, 2004 3:49 am Subject: FTP Using REXX |
For you to be able to FTP to your machine/PC your PC needs to be at least running an FTP server! Forget about checking network issues just yet - if there ain't no server you can't connect!
You can ... |
Topic: GdG version Create Date without recalling |
Maton_Man
Replies: 8
Views: 11125
|
Forum: Job Control Language(JCL) Posted: Thu Jun 24, 2004 11:08 pm Subject: GdG version Create Date without recalling |
HLIST will give you the last referenced date. You can specify a dataset to write the output of the HLIST command to as a parameter rather than trying to outtrap it in rexx which won't work. |
|