Re: IPCS and user CBF defns (fwd)

2005-09-21 Thread Shane Ginnane
Mark Vollmer wrote: > > Since I cannot edit a BLSCUSER member in the SYS1.PARMLIB dataset > without extra security authorization, I don't see any other alternative. > > I tried just putting BLSCUSER (pds with a single member) in the the > IPCSPARM allocation, but that seemed to prevent the system

Re: IPCS and user CBF defns (fwd)

2005-09-21 Thread Robert Wright
Mark Vollmer wrote on 09/21/2005 10:06:45 AM: > > Since I cannot edit a BLSCUSER member in the SYS1.PARMLIB dataset > without extra security authorization, I don't see any other alternative. > > I tried just putting BLSCUSER (pds with a single member) in the the > IPCSPARM allocation, but that se

Re: IPCS and user CBF defns (fwd)

2005-09-21 Thread Mark
Robert Wright wrote: Mark Vollmer wrote on 09/20/2005 10:00:41 AM: My system did not allocate IPCSPARM for my IPCS sessions. It appeared to get its various IPCS parm information from another DD. IPCSPARM is optional and best omitted if you're looking at dumps from the system on whi

Re: IPCS and user CBF defns (fwd)

2005-09-20 Thread Robert Wright
Mark Vollmer wrote on 09/20/2005 10:00:41 AM: > > My system did not allocate IPCSPARM for my IPCS sessions. It appeared > to get its various IPCS parm information from another DD. > IPCSPARM is optional and best omitted if you're looking at dumps from the system on which you're running or anothe

Re: IPCS and user CBF defns (fwd)

2005-09-20 Thread Mark
Robert Wright wrote: Don Poitras wrote on 09/18/2005 06:40:33 PM: Bob's the expert (or is it, Bob's your uncle?), but I couldn't follow what he was talking about. Like he said, there's lots of ways to do the same thing in IPCS. To answer your original question (is there a simple example of

Re: IPCS and user CBF defns (fwd)

2005-09-19 Thread Robert Wright
Don Poitras wrote on 09/18/2005 06:40:33 PM: > Bob's the expert (or is it, Bob's your uncle?), but I couldn't follow > what he was talking about. Like he said, there's lots of ways to do > the same thing in IPCS. To answer your original question (is there a > simple example of a user CBFORMAT), he

Re: IPCS and user CBF defns (fwd)

2005-09-18 Thread Don Poitras
Bob's the expert (or is it, Bob's your uncle?), but I couldn't follow what he was talking about. Like he said, there's lots of ways to do the same thing in IPCS. To answer your original question (is there a simple example of a user CBFORMAT), here's the relevant parts of a SHARE presentation I gav

Re: IPCS and user CBF defns

2005-09-09 Thread Bruce Hewson
Hello Mark, No-one else saw the exec Mark, as it was too large for the list. Sorry folks, the example I sent to Mark was 22 lines too many to be accepted to the list. As you will notice all references to 'Say' in the exec are prefixed with 'Call '. Which means the text after 'Say' will be process

Re: IPCS and user CBF defns

2005-09-09 Thread Robert Wright
Mark Vollmer wrote on 09/09/2005 10:21:16 AM: > > The rexx say command is actually writing to the screen display buffer? > Since there seems to be a Say: Procedure, this would imply that you are > not using the default rexx say command. Would you please clarify? > I'll look up NOTE in the IPCS ma

Re: IPCS and user CBF defns

2005-09-09 Thread Mark
I haven't forgotten the other example(s). I'm just going to have to get out the rexx manuals and go through the provided examples and try to understand the coded lines. Alas I am not a rexx wizard. My favorite lang is asm. So I have a little bit of a learning curve there too. Perhaps lat

Re: IPCS and user CBF defns

2005-09-09 Thread Mark
Bruce Hewson wrote: Hello Mark, I will try and post my exec to the list..I think I havent trimmed it enough. This should give you a fairly extensive example of some generic coding. Regards Bruce Hewson Bruce/anyone, The rexx say command is actually writing to the screen display buffer?

Re: IPCS and user CBF defns

2005-09-09 Thread Binyamin Dissen
On Thu, 8 Sep 2005 17:59:32 -0400 Robert Wright <[EMAIL PROTECTED]> wrote: :>Binyamin Dissen wrote on 09/08/2005 05:03:14 PM: :>> Simple IPCS REXX program to display the SSCT chain: :>> /* REXX */ :>> ADDRESS IPCS :>> SSNAME = "" :>> POINTER = "" :>> SSCTADDR = "" :>> "EVAL 10.?+128?

Re: IPCS and user CBF defns

2005-09-08 Thread Robert Wright
Binyamin Dissen wrote on 09/08/2005 05:03:14 PM: > > Simple IPCS REXX program to display the SSCT chain: > > /* REXX */ > ADDRESS IPCS > SSNAME = "" > POINTER = "" > SSCTADDR = "" > "EVAL 10.?+128?+18 CLIST(STORAGE(SSCTADDR))" > DO WHILE SSCTADDR ^= "" & RC = 0 > "EVAL" SS

Re: IPCS and user CBF defns

2005-09-08 Thread Binyamin Dissen
On Thu, 8 Sep 2005 13:20:22 -0500 Mark <[EMAIL PROTECTED]> wrote: :>Binyamin, :> :>Would you care to share any short examples of how you would write :>something like that, and how to get it installed and working in IPCS? This is old, but should give you the basic idea. Simple IPCS REXX program

Re: IPCS and user CBF defns

2005-09-08 Thread Mark
Binyamin, Would you care to share any short examples of how you would write something like that, and how to get it installed and working in IPCS? Thanks, Mark Vollmer Binyamin Dissen wrote: On Thu, 8 Sep 2005 11:02:35 -0500 Mark <[EMAIL PROTECTED]> wrote: :>I am interested in creating my o

Re: IPCS and user CBF defns

2005-09-08 Thread Binyamin Dissen
On Thu, 8 Sep 2005 11:02:35 -0500 Mark <[EMAIL PROTECTED]> wrote: :>I am interested in creating my own user defined control block formatting :>for use under IPCS. :>I've read the manuals, and I find the information very daunting. I :>think I feel that way because the information is spread out

Re: IPCS and user CBF defns

2005-09-08 Thread Robert Wright
Mark Vollmer wrote on 09/08/2005 12:02:35 PM: > I am interested in creating my own user defined control block formatting > for use under IPCS. > > I've read the manuals, and I find the information very daunting. I > think I feel that way because the information is spread out so much over > the ma

IPCS and user CBF defns

2005-09-08 Thread Mark
I am interested in creating my own user defined control block formatting for use under IPCS. I've read the manuals, and I find the information very daunting. I think I feel that way because the information is spread out so much over the manuals, I never found a short simple example to start m