JHew
I have two BOs; One called Parts list and the other Validation. The users are in separate departments so cant use the same BO's as they're designed for different thing. One aspect however, is that the Validation team needs to update the records on the parts list to keep the information accurate. So I need to do two things that can be run from a process from the validation side.
First check if the record in the validation list is present in the Parts list using the Primary Key, if not create the record in the Parts List. Second if a record is in the parts list and not in the validation list remove it from the Parts list BO.
Does anyone have a process written to do this?
The closest I’ve got is:
Find ALL PartsList
Find ALL Validation
if PartsList.PKEY <> Validation.PKEY
Create PartList With PartsList.PKEY = Validation.PKEY,... and so on
All this does is create the same record multiple times. Haven’t even attempted to delete records yet as I can’t get past this first bit.
Thanks.