Apr 4, 2008 #1 bspiegel Programmer Joined Feb 1, 2006 Messages 2 Location 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 Joined Jan 30, 2001 Messages 537 Location GB You could use a burst count of 25 for your input card. Upvote 0 Downvote
Apr 16, 2008 #3 SriSudha Programmer Joined Dec 17, 2007 Messages 3 Location 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 Joined Feb 1, 2006 Messages 2 Location US Thanks to both responders. Both solutions worked. Much appreciated. Upvote 0 Downvote