I have several Pre-Processing BPM's(ABL code) on an UPDATE method. If there is an issue such as a missing piece of information when retrieving a record, it appears not only does the BPM not work but also the record does not update/save as well.
I have used things like the following like using "leave" and "return"
Examples:
find first ttTableName where (conditions....)
if not available ttTableName then leave.
if not available ttTableName then return.
Does anyone know how to exit out of the BPM (using ABL) "gracefully" and allowing the Method (in this case UPDATE) to still process?
I have used things like the following like using "leave" and "return"
Examples:
find first ttTableName where (conditions....)
if not available ttTableName then leave.
if not available ttTableName then return.
Does anyone know how to exit out of the BPM (using ABL) "gracefully" and allowing the Method (in this case UPDATE) to still process?