Q: Duplicating List Attributes to Different Objects

If you have questions or if you want to share your opinion about Aware IM post your message on this forum
Post Reply
PointsWell
Posts: 1457
Joined: Tue Jan 24, 2017 5:51 am
Location: 'Stralya

Q: Duplicating List Attributes to Different Objects

Post by PointsWell »

I have a complex object that I need to build in steps. I have to use a separate object to control filters to build part 1 which then is duplicated into a second similar but different object.

PreObject
FinalObject

Both objects have a field pmLanguages.

I define the Languages in the PreObject then pass them to the FinalObject and never touch them again.

Is it sufficient to say

Code: Select all

FinalObject.pmLanguages=PreObject.pmLanguages
Or do I have to

Code: Select all

FIND Language Where Language IN PreObject.pmLanguages
SubProcess
INSERT Language INTO FinalObject.pmLanguages
nb the PreObject FinalObject is the least worst way to do this as I need to use BOGroups and then transform them into different BOGroups and the filtering required appears to be too much for AIM to deal with.
Post Reply