Hello
We have 100s of rules that are migrated from Infor CPM that have arithmetic divides. In CPM, dividing by zero would cause system issues and and to prevent this,
a check would be done on the divisor before dividing by it.
e.g.
if y <> 0 then
x/y
endif
On EPM, best practice is NOT to check when multiplying by a possible zero or #na. (according to the Infor instruction videos)
What is the best practice when it comes to division?
Is the check still required or is the engine clever enough to ignore it?
By omitting the divisor check, will there be a performance benefit?
Thanks,
Bilal