I have a question regarding records. Currently, our database integrates a list of new users every year, and we have a list of records that we have to update periodically. The developer before me had made this database, without thinking of updates in the future to the list of users.
Currently, we import a file that has, among many other attributes, a transaction flag attribute: "A", "D", or "U". "A" means to Add the customer, "D" means to delete the customer, and "U" means update the customer information.
I have a list of records with all "A" on them, and many of these customers are already in the database, however, there is no other check to verify that you're not adding a duplicate. I am trying to figure out if it is possible to perform a find in the master Customers.fp5 file, to compare to the records in this Import List.
I would be performing this script from within the Imports.fp5 file, and would like to find records matching a key value in the Customers.fp5 file. I don't know if it is possible, and wouldn't know how to do it if it were. I would be most likely performing this script as a loop, so could I pull out of the script to perform a find in the other file, and then return to where I left off in the loop?
Any help would be appreciated.
Also, if anything is unclear, let me know.
-Nick