BPM with BpmFunc.Today don't always capture date

All,

I have a simple BPM that uses BpmFunc.Today to capture today’s date and writes it to the JobMtl.DateAdded_c field I created for it for each added row. 99% of the time it works fine. 1% of the time it doesn’t and I am left with a NULL value. Other Mtls in the assembly have correct dates.

Anyone seen this behavior or know how to prevent this?

Thanks!

Paul

Try changing your logic to look for ADDED or UPDATED records that have a blank (null) date field. I know that I had problems with the Job tables specifically because for some reason, there is a call that does the ADD, and then the record gets completely replaces during an UPDATE.

2 Likes

Hmmmm; interesting. I will do that. See if it happens again going forward.

Thanks for the suggestion!