I'm using Sync Tool to copy first 100 records and last 500 records of a file to a output file.
I have the folowing code:
//S1 EXEC PGM=SYNCTOOL
//TOOLMSG DD SYSOUT=*
//DFSMSG DD SYSOUT=*
//IN1 DD DISP=SHR,DSN=---
//OUT1 DD DISP=SHR,DSN=----
//TOOLIN DD *
SUBSET FROM(IN1) TO(OUT1) OUTPUT KEEP FIRST(100) LAST(500)
/*
but this code is not working.
I would like to know an alternative for SUBSET command.
sireesha.