I have 2 files that can contain the same client_id but have different statuses. They will come from different business areas.
List 1 List 2
------ ------
ABC 1 JKL 1
DEF G MNO 2
EFG X HIJ 2
HIJ 1 NOP X
In the scenario client HIJ comes in from 2 data sources but only 1 value gets uploaded. Since the HIJ with the 1 is the highest rated status, that record gets written to the upload file.
What is the best approach to use here. I want only 1 client record.
List 1 List 2
------ ------
ABC 1 JKL 1
DEF G MNO 2
EFG X HIJ 2
HIJ 1 NOP X
In the scenario client HIJ comes in from 2 data sources but only 1 value gets uploaded. Since the HIJ with the 1 is the highest rated status, that record gets written to the upload file.
What is the best approach to use here. I want only 1 client record.