Hello All,
New here so I apologize if similar has been asked before. I have the following ABL code in Epicor 9 to update the the RcvDtl.ShortChar10 and ShortChar09 in the table RcvDtl to match what is in the coresponding parts table:
For each ttRcvDtl where ttRcvDtl.RowMod = βaβ No-Lock.
Find Part where Part.Company = ttRcvDtl.Company and
Part.PartNum = ttRcvDtl.PartNum No-Lock.
If available Part then do:
Assign ttRcvDtl.ShortChar10 = Part.ShortChar10.
Assign ttRcvDtl.ShortChar09 = Part.ShortChar09.
End.
End.
What is the best way to handle this in E10? Is there a C# code template equivalent for this procedure or should it be done through BPM βsettersβ?