Suppose I have a process which write a VSAM file (KSDS).
Now I want that after say every 30 minutes another transaction should get initiated which uses this VSAM file as input and processes the records.
How many ways I there to achieve this??
===============
What I beleive is I can code a transaction like
START
EXEC CICS START
TRANSID (AAAAA)
TERMID (BBBBB)
FROM (CCCCC)
LENGTH (LENGTH OF CCCCC)
INTERVAL(003000)
RESP (WS-RESP)
END-EXEC.
Here Interval would be 30 minutes between this transaction is initiated. This could be one way. Any other??
================
Secondly when the next time the transaction pick up the VSAM file it will again process the records which it already processed during the first processing.
how can I ensure that the next time when the transaction gets initiated it should start processing only the new records which got added to the file in teh duration between 2 transactions??