IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Problems in File-Aid / DB2 Spufi while changing my SYSPROC


IBM Mainframe Forums -> CLIST & REXX
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
amitc23

New User


Joined: 05 Nov 2014
Posts: 95
Location: India

PostPosted: Fri Feb 12, 2016 1:59 pm
Reply with quote

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
View user's profile Send private message
Nic Clouston

Global Moderator


Joined: 10 May 2007
Posts: 2455
Location: Hampshire, UK

PostPosted: Fri Feb 12, 2016 2:12 pm
Reply with quote

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
View user's profile Send private message
amitc23

New User


Joined: 05 Nov 2014
Posts: 95
Location: India

PostPosted: Fri Feb 12, 2016 3:24 pm
Reply with quote

Thanks Nic. Will check on that.

Regards
Amit
Back to top
View user's profile Send private message
amitc23

New User


Joined: 05 Nov 2014
Posts: 95
Location: India

PostPosted: Fri Feb 12, 2016 3:31 pm
Reply with quote

Thats correct. I am overriding the SYSPROC libraries with my dataset. Will try to figure out how to append in SYSPROC.
Back to top
View user's profile Send private message
Willy Jensen

Active Member


Joined: 01 Sep 2015
Posts: 712
Location: Denmark

PostPosted: Fri Feb 12, 2016 8:17 pm
Reply with quote

I suggest that you go to the CBTTAPE.ORG website and search for CONCAT.
Back to top
View user's profile Send private message
Robert Sample

Global Moderator


Joined: 06 Jun 2008
Posts: 8696
Location: Dubuque, Iowa, USA

PostPosted: Fri Feb 12, 2016 8:57 pm
Reply with quote

Or, read up on ALTLIB in the TSO/E Command Reference manual.
Back to top
View user's profile Send private message
RahulG31

Active User


Joined: 20 Dec 2014
Posts: 446
Location: USA

PostPosted: Fri Feb 12, 2016 9:33 pm
Reply with quote

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
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> CLIST & REXX

 


Similar Topics
Topic Forum Replies
No new posts How to split large record length file... DFSORT/ICETOOL 10
No new posts DELETE SPUFI DB2 1
No new posts Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
No new posts SFTP Issue - destination file record ... All Other Mainframe Topics 2
No new posts Access to non cataloged VSAM file JCL & VSAM 18
Search our Forums:

Back to Top