Apr 4, 2008 #1 bspiegel Programmer Feb 1, 2006 2 US Input has 100 records. Output structure is: File -GroupA (s) -Record (s) I want to create a GroupA for every 25 input records. How would I do this? Hopefully that makes sense. Thanks for your help.
Input has 100 records. Output structure is: File -GroupA (s) -Record (s) I want to create a GroupA for every 25 input records. How would I do this? Hopefully that makes sense. Thanks for your help.
Apr 7, 2008 #2 janhes Technical User Jan 30, 2001 537 GB You could use a burst count of 25 for your input card. Upvote 0 Downvote
Apr 16, 2008 #3 SriSudha Programmer Dec 17, 2007 3 GB create the input type tree as the following structure File (s) Grp (25) Rec (s) Now loop the File level to GroupA Upvote 0 Downvote
create the input type tree as the following structure File (s) Grp (25) Rec (s) Now loop the File level to GroupA
Apr 16, 2008 Thread starter #4 bspiegel Programmer Feb 1, 2006 2 US Thanks to both responders. Both solutions worked. Much appreciated. Upvote 0 Downvote