Page 1 of 1

Problem with XCOM and PGM

PostPosted: Sat Jul 04, 2015 4:25 pm
by Golden
Hi,

First i'm noob in mainframe and sorry if i ask something stupid.

I have been looking this theme but i don't found anything.

I've been trying to get the program's source by XCOM transfer using "xcomtcp -c4" but i don't know the directory of program's source. Using the command "TSO FONTS" all programs appear in one library for example "LIBRARY.FPL.CC(program)". My question is, there are any way to access this route by XCOM??

I try LIBRARY.FPL.CC(program), LIBRARY.FPL.CC.program, LIBRARY.FPL.CC('program') and no one of them work, always get XCOMM0669E DATASET NOT FOUND IN CATALOG

Thx a lot!

Re: Problem with XCOM and PGM

PostPosted: Sat Jul 04, 2015 8:08 pm
by Robert Sample
The TSO default is generally to prefix any data set name you provide with your TSO user id, so LIBRARY.FPL.CC(program) is seen as userid.LIBRARY.FPL.CC(program). Single quote marks (tics) used around the data set name will prevent this behavior, so try 'LIBRARY.FPL.CC(program)'.

Re: Problem with XCOM and PGM

PostPosted: Sat Jul 04, 2015 8:46 pm
by Golden
It's works!! thx a lot Robert!!!