If you're adding records to an indexed file, it's a common practice to check
for the existence of a key before you attempt to add a new record. If you're
also processing the same file sequentially by key, the routine that checks for
the existence of a key can cause your program to loose the record pointer used
to process the file sequentially.
I've created a solution for this type of situation. It works by defining the
file twice in the program. For instance, if the file that you want to process
is called FILE1 and the HLL is RPG, do the following.
On a command line or using a CL program, override a file name such as FILE2 to
FILE1. In the RPG program, specify FILE1 as you normally would and add a second
F-spec with file name FILE2. If FILE1 is externally described, add an F-spec
continuation specification to rename the record format of FILE2 to something
like NEWFMT. As you read FILE1, check for the existence of the new record in
FILE2. If it doesn't exist, delete the record from FILE1 and write a record to
FILE2 (record format NEWFMT). Both input and output will be happening to the
same file. Since you're using two different access paths to the same data, you
don't have to worry about the file pointer being affected. (You must override
FILE2 to FILE1 before you can compile the program.)
--Mike Midkiff
Business users want new applications now. Market and regulatory pressures require faster application updates and delivery into production. Your IBM i developers may be approaching retirement, and you see no sure way to fill their positions with experienced developers. In addition, you may be caught between maintaining your existing applications and the uncertainty of moving to something new.
IT managers hoping to find new IBM i talent are discovering that the pool of experienced RPG programmers and operators or administrators with intimate knowledge of the operating system and the applications that run on it is small. This begs the question: How will you manage the platform that supports such a big part of your business? This guide offers strategies and software suggestions to help you plan IT staffing and resources and smooth the transition after your AS/400 talent retires. Read on to learn:
LATEST COMMENTS
MC Press Online