SV: How to "splitting" loadmudules

2011-09-12 Thread Thomas Berg
> -Ursprungligt meddelande- > Från: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] För > Shmuel Metz (Seymour J.) > Skickat: den 10 september 2011 00:21 > Till: IBM-MAIN@bama.ua.edu > Ämne: Re: How to "splitting" loadmudules > > In > , >

SV: How to "splitting" loadmudules

2011-09-12 Thread Thomas Berg
r > Edward Jaffe > Skickat: den 9 september 2011 16:37 > Till: IBM-MAIN@bama.ua.edu > Ämne: Re: How to "splitting" loadmudules > > On 9/9/2011 12:39 AM, Thomas Berg wrote: > > I have a need to "split" loadmodules into separate modules. > > E g: a

Re: How to "splitting" loadmudules

2011-09-09 Thread Shmuel Metz (Seymour J.)
In , on 09/09/2011 at 09:39 AM, Thomas Berg said: >Is there a more convenient way to do this other than generate REPLACE >cards for the BINDER and - in this example - run it three times. Why run it three times? Run it once with three INCLUDE statements and three NAME statements. -- Sh

Re: How to "splitting" loadmudules

2011-09-09 Thread Paul Gilmartin
On Fri, 9 Sep 2011 11:19:32 -0500, Walt Farrell wrote: >On Fri, 9 Sep 2011 07:36:52 -0700, Edward Jaffe >wrote: >... >> REPLACE B,C >> INCLUDE SYSLIB(A) >> ENTRY A >> NAME A(R) >> >>You can do all of the relinking/separating in a single binder step. The >>approach >>should work even if

Re: How to "splitting" loadmudules

2011-09-09 Thread Walt Farrell
On Fri, 9 Sep 2011 07:36:52 -0700, Edward Jaffe wrote: >To split a load module 'A' consisting of CSECTs 'A', 'B' and 'C' into modules >'A', 'B' and 'C': > > REPLACE A,B > INCLUDE SYSLIB(A) > ENTRY C > NAME C(R) > REPLACE A,C > INCLUDE SYSLIB(A) > ENTRY B > NAME B(R) > REPLACE B,C > INC

Re: SV: SV: SV: SV: How to "splitting" loadmudules

2011-09-09 Thread Don Imbriale
gt; > > -Ursprungligt meddelande- > > Från: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] För > > Miklos Szigetvari > > Skickat: den 9 september 2011 14:55 > > Till: IBM-MAIN@bama.ua.edu > > Ämne: Re: SV: SV: SV: SV: How to "splitting" loadm

Re: How to "splitting" loadmudules

2011-09-09 Thread Steve Comstock
Love the subject line; maybe it should be 'loadmuddles'. On 9/9/2011 8:36 AM, Edward Jaffe wrote: On 9/9/2011 12:39 AM, Thomas Berg wrote: I have a need to "split" loadmodules into separate modules. E g: a load module, A, is consisting of three submodules, A, B and C. I want to split it into th

Re: How to "splitting" loadmudules

2011-09-09 Thread Edward Jaffe
On 9/9/2011 12:39 AM, Thomas Berg wrote: I have a need to "split" loadmodules into separate modules. E g: a load module, A, is consisting of three submodules, A, B and C. I want to split it into three separate modules into a loadlibrary. Is there a more convenient way to do this other than gene

SV: SV: SV: SV: SV: How to "splitting" loadmudules

2011-09-09 Thread Thomas Berg
ussion List [mailto:IBM-MAIN@bama.ua.edu] För > Miklos Szigetvari > Skickat: den 9 september 2011 14:55 > Till: IBM-MAIN@bama.ua.edu > Ämne: Re: SV: SV: SV: SV: How to "splitting" loadmudules > > Hi > > Some BINDER options: NE (non editable) and/or STRIPSEC

Re: SV: SV: SV: SV: How to "splitting" loadmudules

2011-09-09 Thread Miklos Szigetvari
2011 14:08 Till: IBM-MAIN@bama.ua.edu Ämne: Re: SV: SV: SV: How to "splitting" loadmudules I am assuming the calling sequence in A is: LR15,=V(X) BASR R14,R15 How are you going to change that code in A? Regards, John K SV: SV: SV: How to "splitting" loadmudules Thomas

Re: SV: SV: SV: How to "splitting" loadmudules

2011-09-09 Thread zMan
On Fri, Sep 9, 2011 at 8:19 AM, Thomas Berg wrote: > I'm not going to RUN these "delinked" modules! > They are just for the BIND MANAGER to read and search for whatever (contoken > I assume). > (They are just "indata" here.) Howzabout folks stop telling him he doesn't want to do what he clearly

SV: SV: SV: SV: How to "splitting" loadmudules

2011-09-09 Thread Thomas Berg
ecialist   A M   SWEDBANK > -Ursprungligt meddelande- > Från: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] För John > P Kalinich > Skickat: den 9 september 2011 14:08 > Till: IBM-MAIN@bama.ua.edu > Ämne: Re: SV: SV: SV: How to "splitting" loadmudules > >

Re: SV: SV: SV: How to "splitting" loadmudules

2011-09-09 Thread John P Kalinich
I am assuming the calling sequence in A is: LR15,=V(X) BASR R14,R15 How are you going to change that code in A? Regards, John K SV: SV: SV: How to "splitting" loadmudules Thomas Berg to: IBM-MAIN 09/09/2011 07:00 AM Sent by: IBM Mainframe Discussion List Please resp

SV: SV: SV: How to "splitting" loadmudules

2011-09-09 Thread Thomas Berg
Specialist   A M   SWEDBANK > -Ursprungligt meddelande- > Från: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] För John > P Kalinich > Skickat: den 9 september 2011 13:48 > Till: IBM-MAIN@bama.ua.edu > Ämne: Re: SV: SV: How to "splitting" load

Re: SV: SV: How to "splitting" loadmudules

2011-09-09 Thread John P Kalinich
Thomas, How is the relink going to resolve the missing CSECT's? Regards, John K SV: SV: How to "splitting" loadmudules Thomas Berg to: IBM-MAIN 09/09/2011 06:44 AM Sent by: IBM Mainframe Discussion List Please respond to IBM Mainframe Discussion List >

SV: SV: How to "splitting" loadmudules

2011-09-09 Thread Thomas Berg
> -Ursprungligt meddelande- > Från: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] För Tom > Marchant > Skickat: den 9 september 2011 13:30 > Till: IBM-MAIN@bama.ua.edu > Ämne: Re: SV: How to "splitting" loadmudules > > On Fri, 9 Sep 2011

SV: How to "splitting" loadmudules

2011-09-09 Thread Thomas Berg
nde- > Från: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] För > Binyamin Dissen > Skickat: den 9 september 2011 12:44 > Till: IBM-MAIN@bama.ua.edu > Ämne: Re: How to "splitting" loadmudules > > I believe there is a delinker on the CBT tape. May be eas

Re: SV: How to "splitting" loadmudules

2011-09-09 Thread Tom Marchant
On Fri, 9 Sep 2011 12:11:37 +0200, Thomas Berg wrote: >There's a LOT of duplicates of submodules. And it reads all CSECTs. So you have load module A containing CSECTS X, Y and Z. You also have load module B containing CSECTS N, Y and Z. And you are certain that CSECTS Y and Z in load modules A a

Re: How to "splitting" loadmudules

2011-09-09 Thread Binyamin Dissen
.ua.edu] För :>> Binyamin Dissen :>> Skickat: den 9 september 2011 12:06 :>> Till: IBM-MAIN@bama.ua.edu :>> Ämne: Re: How to "splitting" loadmudules :>> :>> On Fri, 9 Sep 2011 11:49:28 +0200 Thomas Berg :>> wrote: :>> :>> :>> -Ursprun

SV: How to "splitting" loadmudules

2011-09-09 Thread Thomas Berg
> -Ursprungligt meddelande- > Från: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] För > Binyamin Dissen > Skickat: den 9 september 2011 12:06 > Till: IBM-MAIN@bama.ua.edu > Ämne: Re: How to "splitting" loadmudules > > On Fri, 9 Sep 2011 1

Re: How to "splitting" loadmudules

2011-09-09 Thread Binyamin Dissen
On Fri, 9 Sep 2011 11:49:28 +0200 Thomas Berg wrote: :>> -Ursprungligt meddelande- :>> Från: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] För :>> Miklos Szigetvari :>> Skickat: den 9 september 2011 10:54 :>> Till: IBM-MAIN@bama.ua.edu :

SV: How to "splitting" loadmudules

2011-09-09 Thread Thomas Berg
> -Ursprungligt meddelande- > Från: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] För > Miklos Szigetvari > Skickat: den 9 september 2011 10:54 > Till: IBM-MAIN@bama.ua.edu > Ämne: Re: How to "splitting" loadmudules > > On 9/9/2011 9:39 A

Re: How to "splitting" loadmudules

2011-09-09 Thread Miklos Szigetvari
On 9/9/2011 9:39 AM, Thomas Berg wrote: I have a need to "split" loadmodules into separate modules. E g: a load module, A, is consisting of three submodules, A, B and C. I want to split it into three separate modules into a loadlibrary. Is there a more convenient way to do this other than gener

How to "splitting" loadmudules

2011-09-09 Thread Thomas Berg
I have a need to "split" loadmodules into separate modules. E g: a load module, A, is consisting of three submodules, A, B and C. I want to split it into three separate modules into a loadlibrary. Is there a more convenient way to do this other than generate REPLACE cards for the BINDER and - in