Thanks Alisa,
But this is not working. The output recs are now starting from position 1 (instead of 3) and its truncating the first position data as well.
On further investigating the reqmt, there are some add into the earlier reqmt:
The length of the file is 130. Currently all the fileds in the i/p file are seperated by one space. Now I want to have two spaces b/w all the fields records.
i.e. the i/p file is like below: (Te first rec is starting from position 2)
----+----1----+----2----+----3----+----4----+----5----+----6----+----7--
********************************* Top of Data **************************
00001 1111111111 2222222222 3333333333 4444444444 5555555555 6666666666
00001 7777777777 8888888888 9999999999 0000000000 1111111111 2222222222
Now I want the o/p in this format (All the fields should be seperated by two spaces):
----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8
********************************* Top of Data **********************************
00001 1111111111 2222222222 3333333333 4444444444 5555555555 6666666666
00001 7777777777 8888888888 9999999999 0000000000 1111111111 2222222222
Please advice if it can be done with the sort card.