Forum Discussion
reinke_patrick_smc_com
28 days agoIdeator II
I agree with little_legend and what to add something.
It is faster to add parts in one AML statement than to have one AML per objet.
For example:
Do this:
<AML>
<Item type='Part' action='add'></Item>
<Item type='Part' action='add'></Item>
<Item type='Part' action='add'></Item>
(...)
</AML>instaed of this:
<AML>
<Item type='Part' action='add'></Item>
</AML>
<AML>
<Item type='Part' action='add'></Item>
</AML>
<AML>
<Item type='Part' action='add'></Item>
</AML>After you have added all your parts, than proceed with your relationships.
If you want to have it even faster than this than you have to work with Aras Batchloader. This tool can do process batches paralell. But I don't have experience with this.
Another option would be to customize a proper worker with job queue which is able to parallize such jobs. But this is heavy customizig.
Regards
Patrick