View previous topic :: View next topic
|
Author |
Message |
amitc23
New User
Joined: 05 Nov 2014 Posts: 96 Location: India
|
|
|
|
Hi Everyone
I changed my Sysproc Dataset using the TSO ALLOC command to include one of my REXX libraries in it, however since then I am having problems opening the File-Aid screens and accessing DB2 Spufi.
On File-Aid
I usually go to File-Aid using V.FA.FA.*
V - Vendor
FA - FileAid
FA - Compuware FileAid
error I am getting is 'COMMAND FAALTLIB NOT FOUND' after V.FA.FA
However this thing resolves when I logoff and Logon again and do not change the SYSPROC.
Best Regards
Amit |
|
Back to top |
|
|
Nic Clouston
Global Moderator
Joined: 10 May 2007 Posts: 2454 Location: Hampshire, UK
|
|
|
|
You have probably dropped those libraries that were previously allocated to SYSPROC when you di your ALLOC, This can be checked by looking at the concatenation via ISRDDN, Then you have to figure out how to add your private library to the existing concatenation. (ALTLIB) |
|
Back to top |
|
|
amitc23
New User
Joined: 05 Nov 2014 Posts: 96 Location: India
|
|
|
|
Thanks Nic. Will check on that.
Regards
Amit |
|
Back to top |
|
|
amitc23
New User
Joined: 05 Nov 2014 Posts: 96 Location: India
|
|
|
|
Thats correct. I am overriding the SYSPROC libraries with my dataset. Will try to figure out how to append in SYSPROC. |
|
Back to top |
|
|
Willy Jensen
Active Member
Joined: 01 Sep 2015 Posts: 736 Location: Denmark
|
|
|
|
I suggest that you go to the CBTTAPE.ORG website and search for CONCAT. |
|
Back to top |
|
|
Robert Sample
Global Moderator
Joined: 06 Jun 2008 Posts: 8700 Location: Dubuque, Iowa, USA
|
|
|
|
Or, read up on ALTLIB in the TSO/E Command Reference manual. |
|
Back to top |
|
|
RahulG31
Active User
Joined: 20 Dec 2014 Posts: 446 Location: USA
|
|
|
|
You need to append your library with existing SYSPROC libraries separated by a comma. So, if you look at your current sysproc libraries, it would be like Lib1, Lib2, Lib3,... and you need to concatenate your library name in that list, so that it becomes Lib1, Lib2, Lib3,... , YourLib
You can concatenate by using the concatenation operator ||
Quote: |
NewLib = OldLibs||","||"'"||YourLib||"'" |
and then Allocate this NewLib
Code: |
"ALLOC FILE(SYSPROC) DATASET("NewLib") SHR REUSE" |
Now, the question is, how to get the current Sysproc libraries. And you can easily get them via QBASELIB
Code: |
ADDRESS ISPEXEC "QBASELIB SYSPROC ID(OldLibs)" |
. |
|
Back to top |
|
|
|