View previous topic :: View next topic |
Author |
Message |
SK2007 Beginner
Joined: 25 Jan 2007 Posts: 40 Topics: 17
|
Posted: Wed Aug 22, 2007 11:49 am Post subject: Easytrieve version |
|
|
Hi,
In my project, the easytrieve version has been upgraded to V11/SP1/GL609. When I tested the easytrieve pgms, I am not getting any output, but the job ended with return code as zero. No sysprint is coming in job.
PLease help me, do I need to do any changes in the pgm.
Thanks. |
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12376 Topics: 75 Location: San Jose
|
Posted: Wed Aug 22, 2007 12:23 pm Post subject: |
|
|
Quote: |
the easytrieve version has been upgraded to V11/SP1/GL609.
|
SK2007,
Try directing the sysprint to a dataset and see if it works
Kolusu _________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
|
SK2007 Beginner
Joined: 25 Jan 2007 Posts: 40 Topics: 17
|
Posted: Wed Aug 22, 2007 1:00 pm Post subject: |
|
|
Kolusu,
Thanks for your suggestion. I tried, but got empty dataset.
Thanks
SK2007. |
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12376 Topics: 75 Location: San Jose
|
Posted: Wed Aug 22, 2007 1:12 pm Post subject: |
|
|
SK2007,
run this sample program and now check and see if you can see the display statement contents
Code: |
//SYSIN DD *
DEFINE WS-A W 03 N 0
DEFINE WS-B W 03 N 0
DEFINE WS-TOT W 04 N 0
JOB INPUT NULL
WS-A = 100
DISPLAY 'THE VALUE OF A : ' WS-A
WS-B = 200
DISPLAY 'THE VALUE OF B : ' WS-B
WS-TOT = WS-A + WS-B
DISPLAY 'THE TOTAL IS : ' WS-TOT
STOP
/*
|
Kolusu _________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
|
SK2007 Beginner
Joined: 25 Jan 2007 Posts: 40 Topics: 17
|
Posted: Wed Aug 22, 2007 1:23 pm Post subject: |
|
|
Kolusu,
I tried, nothing is coming in the output with new version. Thanks for your time.
Thanks
SK2007. |
|
Back to top |
|
|
|
|