This might be a obvious thing for most of you guys but
for me it isn't.
I have to create an alias to a loadmod but have never
done this before.
Can somebody tell me how to do this or tell me where I
can find some doc on how to do this.
Thx a lot
Lieven
__________________________________________________
Do You Yahoo!?
Yahoo! Shopping - Thousands of Stores. Millions of Products.
http://shopping.yahoo.com/
----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to list...@bama.ua.edu with the message: GET IBM-MAIN INFO
by providing linkage statements such as:
ALIAS SRV6414
NAME DPL2SERV(R)
but this is because we used to create NCAL type output modules, to be
link'ed at customer sites.
In which case, my manual source would probably be the Language Environment
bookshelf
Hi,
Thx a lot
Lieven
*************************************************
QAS Systems Ltd
Developers of QuickAddress Software
London - Manchester - Edinburgh
Boston - Amsterdam - Sydney - Melbourne
http://www.qas.com
Registered Office: George West House
2-3 Clapham Common North Side
London SW4 0QL
Registered in England. No. 2582055
*************************************************
Best discussion is at:
http://www.s390.ibm.com:80/bookmgr-cgi/bookmgr.exe/BOOKS/DGTM2600/6%2e2
--
Giliad Wilf
Systems - Technical Support
Mehish, 15 Lincoln, 67134 Tel-Aviv, Israel (GMT+0200)
ph: +972-3-5634471, fx: +972-3-5623717
____________________________________________________________________
Get free email and a permanent address at http://www.netaddress.com/?N=1
>Hi,
>
>This might be a obvious thing for most of you guys but
>for me it isn't.
>
>I have to create an alias to a loadmod but have never
>done this before.
>
>Can somebody tell me how to do this or tell me where I
>can find some doc on how to do this.
I see you got some responses that gave you that answer. Just wanted to mention
that we cover that, and a whole lot more, in our course "Inter-Language
Communication in OS/390". We cover the Linkage Editor / Program Binder,
different call mechanisms (static, dynamic, DLL linkages), how to pass
arguments and receive parameters, shared storage, multiple entry points, and
more, in Assembler, COBOL, PL/I and C, both inter-language and intra-language.
Check out our website for a course description and detailed topical outline
(http://www.trainersfriend.com then follow the links to list of courses then
M-220, Inter-Language Communication in OS/390). Regular readers of this group
will recall the original name as "Hot Catholic High School Girls in Bondage"
<g>.
Regards,
Steve Comstock
Telephone: 303-393-8716
www.trainersfriend.com
email: st...@trainersfriend.com
256-B S. Monaco Parkway
Denver, CO 80224
USA
If you have a copy of PDS85 or STARTOOL you can use the ALIAS
subcommand also.
>Hi,
>
>This might be a obvious thing for most of you guys but
>for me it isn't.
>
>I have to create an alias to a loadmod but have never
>done this before.
>
>Can somebody tell me how to do this or tell me where I
>can find some doc on how to do this.
>
>
>Thx a lot
>
>Lieven
>
>__________________________________________________
>Do You Yahoo!?
>Yahoo! Shopping - Thousands of Stores. Millions of Products.
>http://shopping.yahoo.com/
>
>This might be a obvious thing for most of you guys but
>for me it isn't.
>
>I have to create an alias to a loadmod but have never
>done this before.
>
>Can somebody tell me how to do this or tell me where I
>can find some doc on how to do this.
On TSO, if you can get exclusive access to the load library,
you can say:
RENAME MY.LOAD(MEMBER) MY.LOAD(MEMBER2) ALIAS
Also, the PDS command should have a feature to create a member alias.
Using the linkage editor (er, binder) is risky because it involves
recreating the load module.
In batch, I think IEHPROGM can do this, but I'm not sure.
- seb
"Stephen E.
Bacher" To: IBM-...@BAMA.UA.EDU
<seb@DRAPER.C cc:
OM> Subject: Re: ALIAS to load module
Sent by: IBM
Mainframe
Discussion
List
<IBM-MAIN@BAM
A.UA.EDU>
12/08/2000
10:56 AM
Please
respond to
IBM Mainframe
Discussion
List
On TSO, if you can get exclusive access to the load library,
you can say:
RENAME MY.LOAD(MEMBER) MY.LOAD(MEMBER2) ALIAS
<snip>