I created the following BPM to bring AVG cost to a custom field
find first ttQuoteDtl where ttQuoteDtl.RowMod = “A” or ttQuoteDtl.RowMod = “U” exclusive-lock no-error.
if avail ttQuoteDtl then
do:
find first PartCost where PartCost.Company = Cur-Comp and PartCost.PartNum = ttQuotedtl.PartNum no-lock no-error.
if avail PartCost then
do:
ttQuotedtl.Number19 = (PartCost.AVGLaborCost + PartCost.AVGBurdenCost + PartCost.AVGMaterialCost + PartCost.AVGMtlBurCost + PartCost.AVGSubContCost).
end.
end.
It works fine but when I add the field to the Quote Screen it will not let me format to have comma’s.
I have tried adding with the extended properties and no luck
Thank you
Epcior 9
9.05.702A