Hi All,
I'm trying to find a way to pass data from my 'tempory' business object, used for checking for duplicates and my main BO.
I have created a tempory BO where the data is uploaded via a CSV file. what i tried next was:
Process 1
FIND TempBO WHERE TempBO.PrimaryKey <> MainBO.PrimaryKey IN BATCHES OF 1
Process 2
CREATE MainBO FOR EACH TempBO With MainBO.Att1 = TempBO.att1, MainBO.Att2 = TempBO.att2,... MainBO.AttX = TempBO.attX
I've tried this as a standalone process and wirtten it in the update rules but have had no luck.
Does anyone know why this hasnt worked? Or have a soloution to what im trying to achieve?
Thanks!