View previous topic :: View next topic |
Author |
Message |
karunkallore Beginner
Joined: 11 Dec 2004 Posts: 103 Topics: 39
|
Posted: Mon Feb 07, 2005 7:05 pm Post subject: Abend in running Xpediter in Batch Connect. |
|
|
Dear Friends,
I have a programs A which is 28KLOC in size. It calls 30 other sub programs. In this i am interested in two programs B and C having 7 10KLOC and 12 KLOC respectively. I have complied all the three programs in XPEDITER option in SCLM. The three programs are having only Cobol statement.
When in try to run this driver in XPEDITER Option 3 i.e Batch Connect though i am able to step in to the Program A and go through initial lines. When i give a breal point at Programs B and C and Press PF12 it is taking long time and after that i am getting an abend.
The Abend is :-
XPOUT DCB ABEND DE B37 04 XPOUT DATASET I ULL- SPOOLING TERMINATED.
Is it a kind of space Problem ?
Please help me out. |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
|
Posted: Tue Feb 08, 2005 9:03 am Post subject: |
|
|
karunkallore,
Quote: | Is it a kind of space Problem ? |
yes indeed it is a space related problem. Your xpediter log dataset is full. You can direct your log messages to sysout rather than a dataset. In your batch jcl change your XPOUT allocation to Sysout
i.e
Code: |
//XPOUT DD SYSOUT=*
|
Hope this helps...
Cheers
kolusu _________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
 |
|
|