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

In DFSORT, can we use a VB file with SYSIN


IBM Mainframe Forums -> DFSORT/ICETOOL
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
gsbrar16

New User


Joined: 21 Dec 2006
Posts: 27
Location: india

PostPosted: Tue Apr 24, 2007 5:07 pm
Reply with quote

Hi All,
In DFSORT, can we use a VB file with SYSIN. Like
//SYSIN DD DSN=aaaaa.bbbbb.ccccc,DISP=SHR

Here aaaaa.bbbbb.ccccc is a VB(Variable blocked) file. When i am trying to run SORT woth this SYSIN stetement, i am getting MAXCC= 16. and a message that "sort statements npt found".

Please tell me if anything can be done. I dont want to change SYSIN statement.

Thanks and Regards
Back to top
View user's profile Send private message
superk

Global Moderator


Joined: 26 Apr 2004
Posts: 4652
Location: Raleigh, NC, USA

PostPosted: Tue Apr 24, 2007 5:11 pm
Reply with quote

Here are the rules.
Back to top
View user's profile Send private message
expat

Global Moderator


Joined: 14 Mar 2007
Posts: 8797
Location: Welsh Wales

PostPosted: Tue Apr 24, 2007 5:24 pm
Reply with quote

As far as I am aware, you need to use FB 80 for SYSIN with DFSORT.

If you do not want to change the SYSIN dataset, I can only suggest that you take a backup, and redefine the file with the correct attributes, and eliminate the need for any further changes.
Back to top
View user's profile Send private message
gsbrar16

New User


Joined: 21 Dec 2006
Posts: 27
Location: india

PostPosted: Tue Apr 24, 2007 6:36 pm
Reply with quote

Thanks for the Link.
Back to top
View user's profile Send private message
Frank Yaeger

DFSORT Developer


Joined: 15 Feb 2005
Posts: 7129
Location: San Jose, CA

PostPosted: Tue Apr 24, 2007 9:08 pm
Reply with quote

SYSIN must be FB, but you can use your VB file by converting it temporarily to an FB file. If you want me to show you how, tell me the LRECL of your VB file.
Back to top
View user's profile Send private message
gsbrar16

New User


Joined: 21 Dec 2006
Posts: 27
Location: india

PostPosted: Tue Apr 24, 2007 9:51 pm
Reply with quote

Hi Frank,

Record length of my file is 80.


regards
Back to top
View user's profile Send private message
Frank Yaeger

DFSORT Developer


Joined: 15 Feb 2005
Posts: 7129
Location: San Jose, CA

PostPosted: Wed Apr 25, 2007 1:13 am
Reply with quote

S1 sets up the temporary FB SYSIN file from your VB SYSIN file. S2 uses the temporary FB SYSIN file.

Code:

//S1 EXEC PGM=ICEMAN                                             
//SYSOUT DD SYSOUT=*                                             
//SORTIN DD DSN=...  SYSIN file (VB/80)                             
//SORTOUT DD DSN=&&C1,UNIT=SYSDA,SPACE=(CYL,(5,5)),DISP=(,PASS)   
//SYSIN DD *                                                     
  OPTION COPY                                                     
  OUTFIL VTOF,BUILD=(5,76,80:X)                       
/*
//S2 ...
...
//SYSIN DD DSN=&&C1,DISP=(OLD,PASS)
Back to top
View user's profile Send private message
gsbrar16

New User


Joined: 21 Dec 2006
Posts: 27
Location: india

PostPosted: Wed Apr 25, 2007 9:34 pm
Reply with quote

Thanks frank for your reply.

regards
Guralam Singh
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 -> DFSORT/ICETOOL

 


Similar Topics
Topic Forum Replies
No new posts Compare 2 files and retrive records f... DFSORT/ICETOOL 3
No new posts FTP VB File from Mainframe retaining ... JCL & VSAM 8
No new posts Extract the file name from another fi... DFSORT/ICETOOL 6
No new posts How to split large record length file... DFSORT/ICETOOL 10
No new posts Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
Search our Forums:

Back to Top