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

How do i use Sections and Trailers with variable length reco


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

New User


Joined: 21 Jul 2007
Posts: 27
Location: Chennai

PostPosted: Tue Apr 29, 2008 12:58 pm
Reply with quote

Hi Mr. Frank Yeager,

I am getting error in below sort card when i use variable length file as an input. If i use Fixed length file its working fine.

SORT FIELDS=(07,8,CH,A,
15,04,BI,A,
19,15,CH,A,
44,10,CH,A),EQUALS
OUTFIL FNAMES=(SORTOUT),REMOVECC,NODETAIL,CONVERT
SECTIONS=(07,27,TRAILER3=(7,101))

Can you help me to solve this problem. icon_smile.gif
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 29, 2008 9:00 pm
Reply with quote

Kalai,

For the OUTFIL statement, you need a comma after CONVERT (VTOF) and you need a BUILD operand. Since you have NODETAIL, the BUILD operand can just have nX where n is the LRECL you want for the FB output data set. Something like this (note that TRAILER3 will pick up the data from the input record, not from the BUILD operand):

Code:

  OUTFIL FNAMES=SORTOUT,REMOVECC,NODETAIL,VTOF,   
    BUILD=(128X),                                     
    SECTIONS=(07,27,TRAILER3=(7,101))                 
Back to top
View user's profile Send private message
kalaikala

New User


Joined: 21 Jul 2007
Posts: 27
Location: Chennai

PostPosted: Wed Apr 30, 2008 4:05 pm
Reply with quote

Thanks you very much Mr. Frank Yaeger. Its works fine now. icon_biggrin.gif
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 Store the data for fixed length COBOL Programming 1
No new posts How to split large record length file... DFSORT/ICETOOL 10
No new posts PARSE Syntax for not fix length word ... JCL & VSAM 7
No new posts Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
No new posts VB to VB copy - Full length reached SYNCSORT 8
Search our Forums:

Back to Top