I’m converting old E9 ABL BPMs to E10.
Now i found this bit of code:
for each IMPart
where IMPart.Company = Company.Company
and IMPart.PartNum = ttRcvDtl.PartNum no-lock :
find updIMPart where rowid(updIMPart) = rowid(IMPart) exclusive no-error.
if available updIMPart then assign updIMPart.NetWeight = ttRcvDtl.Number01.
release updIMPart.
end.
So in Epicor10 i want to use the IM table aswell. But I can’t refer to the IM tables from the Db.
How can i make use of the IM tables in Epicor 10?
Thank you for your responses! I’m not exactly sure what the purpose of the BPM is. I’m just doing the conversion and stumbled upon this. I’ll try to find a workaround.