Author |
Message |
Topic: Sorting on Left-justified numeric |
flatearther
Replies: 5
Views: 5508
|
Forum: Utilities Posted: Thu Oct 22, 2009 5:30 pm Subject: Sorting on Left-justified numeric |
That's works great! Thanks a lot for your help. |
Topic: Sorting on Left-justified numeric |
flatearther
Replies: 5
Views: 5508
|
Forum: Utilities Posted: Wed Oct 21, 2009 11:07 pm Subject: Sorting on Left-justified numeric |
Just to clarify - I want to sort on the numerical values of the field (descending) so I want the sort outcome to be:
Seq No
---------
111111
1234
11
but the left justification is messin ... |
Topic: Sorting on Left-justified numeric |
flatearther
Replies: 5
Views: 5508
|
Forum: Utilities Posted: Wed Oct 21, 2009 10:53 pm Subject: Sorting on Left-justified numeric |
Quick question - I have a file with a sequence number which is numeric and unfortunately left-justified (with trailing spaces).
Is it possible to sort using this field as the sort key (descending)? ... |
Topic: Getting Rid Of Commas in TSO |
flatearther
Replies: 17
Views: 9603
|
Forum: TSO and ISPF Posted: Mon Nov 03, 2008 9:03 pm Subject: Getting Rid Of Commas in TSO |
Thanks Dick, I guess I've always used the Quick Reply and never noticed. |
Topic: Getting Rid Of Commas in TSO |
flatearther
Replies: 17
Views: 9603
|
Forum: TSO and ISPF Posted: Mon Nov 03, 2008 12:31 am Subject: Getting Rid Of Commas in TSO |
As long as you don't mix single and double quotes you'll be fine.
c ',' ' ' all
works with no problems (they're all single quotes).
OT - how do you get the green-screen-type lines to appear i ... |
Topic: How to run external routine dynamically in REXX |
flatearther
Replies: 9
Views: 8096
|
Forum: TSO and ISPF Posted: Thu Jan 31, 2008 4:02 pm Subject: How to run external routine dynamically in REXX |
So instead of your line "CALL "STARTER_WFL" "DSN"" ...
... you would code :
Interpret "Call "STARTER_WFL "DSN"
I haven't tried passing a para ... |
Topic: How to run external routine dynamically in REXX |
flatearther
Replies: 9
Views: 8096
|
Forum: TSO and ISPF Posted: Thu Jan 31, 2008 3:37 pm Subject: How to run external routine dynamically in REXX |
I may be missing the point, but I have a rexx "driver" that dynamically calls other rexx execs by doing the following :
(populate the runExec variable with the name of the rexx exec you w ... |
Topic: Turning on Long Message in Pop-up |
flatearther
Replies: 10
Views: 4574
|
Forum: TSO and ISPF Posted: Thu Jan 17, 2008 6:42 pm Subject: Turning on Long Message in Pop-up |
Thanks Bill,
That works well too. |
Topic: Turning on Long Message in Pop-up |
flatearther
Replies: 10
Views: 4574
|
Forum: TSO and ISPF Posted: Wed Jan 16, 2008 12:40 pm Subject: Turning on Long Message in Pop-up |
Success!
You can use the ISPFVAR command as follows :
popCmd = 'ISPFVAR LMSG(ON)'
Address ISPEXEC 'DISPLAY panel(panid) COMMAND(popCmd)'
This sets the " ... |
Topic: Turning on Long Message in Pop-up |
flatearther
Replies: 10
Views: 4574
|
Forum: TSO and ISPF Posted: Wed Jan 16, 2008 12:11 pm Subject: Turning on Long Message in Pop-up |
Bill, thanks.
I'm not familar with message definitions.
I code messages as follows (example):
zedLmsg = "Screen Display Error. Rc "Rc
Address ISPEXEC "SETMSG MSG(ISRZ001)&quo ... |
Topic: Turning on Long Message in Pop-up |
flatearther
Replies: 10
Views: 4574
|
Forum: TSO and ISPF Posted: Wed Jan 16, 2008 9:57 am Subject: Turning on Long Message in Pop-up |
Warp55,
Yes that's pretty much how I use the long message pop-up. But it won't actually display as a popup unless you have the "Long Message in pop-up" setting (in your Settings screen - ... |
Topic: Turning on Long Message in Pop-up |
flatearther
Replies: 10
Views: 4574
|
Forum: TSO and ISPF Posted: Wed Jan 16, 2008 9:52 am Subject: Turning on Long Message in Pop-up |
Yes that's right. I have a bunch of rexx screens that produce messages designed to be read in pop-ups. Unfortunately the default "Long Message in pop-up" setting is "Off". I'd like ... |
Topic: Turning on Long Message in Pop-up |
flatearther
Replies: 10
Views: 4574
|
Forum: TSO and ISPF Posted: Tue Jan 15, 2008 12:07 pm Subject: Turning on Long Message in Pop-up |
Hi,
Does anyone know if it's possible to turn on the Long Message in Pop-up from a rexx exec? (rather than manually doing it from Settings). |
|