View previous topic :: View next topic
|
Author |
Message |
Raj24186
New User
Joined: 04 May 2010 Posts: 9 Location: Chennai
|
|
|
|
Hi,
Can someone post me the purpose of sysprint, syslist DD names as shown below, in a Fileaid batch job?
//STEP0100 EXEC PGM=FILEAID
//STEPLIB DD DISP=SHR,DSN=xxx.load
//SYSPRINT DD SYSOUT=*
//SYSLIST DD SYSOUT=*
//DD01 DD DSN=input.dataset,DISP=SHR
//DD01O DD SYSOUT=*
//SYSIN DD *
**control statements**
/*
I am currently having a file which can only be viewed with a copybook. I need to extract contents at a particular position from this file.
Is it possible for me to first browse the file with the copybook and then extract the characters at the required position?
Please let me know if this can be done using Fileaid Batch. |
|
Back to top |
|
|
PeterHolland
Global Moderator
Joined: 27 Oct 2009 Posts: 2481 Location: Netherlands, Amstelveen
|
|
|
|
Code: |
SYSPRINT:
• SYSPRINT heading
• Opening messages
• Comments
• Actions-taken map
• Function statistics
• Accumulations
• Dataset processing messages
• Closing message/Record count
• Alternate date
• Data check
• Block count error log
• Output PDS error log
• Input PDS error log
• DCB abend log
• Open error logs
• VSAM warning
• Invalid packed field error log
• Control card error log.
SYSLIST:
• SYSLIST heading
• Disk dataset access message
• DUMP request
• PRINT request
• Output record print
• LIST request
• FPRINT request
• VPRINT request
• Changed/truncated record tag
• VSAM retrieval output
• Tape dataset blocks
• Sequential dataset records.
|
|
|
Back to top |
|
|
Raj24186
New User
Joined: 04 May 2010 Posts: 9 Location: Chennai
|
|
|
|
Thanks Peter! Could you also answer my query? |
|
Back to top |
|
|
PeterHolland
Global Moderator
Joined: 27 Oct 2009 Posts: 2481 Location: Netherlands, Amstelveen
|
|
|
|
I dont know. My previous response was quoted from the manual.
I suggest that you consult the manuals too. |
|
Back to top |
|
|
Anuj Dhawan
Superior Member
Joined: 22 Apr 2006 Posts: 6248 Location: Mumbai, India
|
|
|
|
SYSPRINT lists all submitted control cards, and all error and completion messages issued during execution. If SYSPRINT is not provided, File-AID dynamically allocates it.
SYSLIST is an optional statement to use when selecting data for hardcopy output. If SYSLIST is not provided, File-AID dynamically allocates it. SYSLIST may optionally be defined as a sequential file. |
|
Back to top |
|
|
Anuj Dhawan
Superior Member
Joined: 22 Apr 2006 Posts: 6248 Location: Mumbai, India
|
|
|
|
Raj24186 wrote: |
Is it possible for me to first browse the file with the copybook and then extract the characters at the required position? |
you can do that, try to generate a jcl in batch using PRINT option of the file-aid. Some time, i've even posted a working model of such a JCL, you might to search the forum. |
|
Back to top |
|
|
|