How can I add record to Job Audit table through BPM execute code by referencing object?
You didn’t tell us what BPM you want to use. When you add a record, it usually goes like this:
- call GetNew
- set your fields
- call Update
The above are slightly different depending on where your BPM is. Below is a quick JobEntry.Update.PRE BPM which adds a record in JobAudit every time you update a job. Because it is Update.PRE, I don’t need to call the Update.
1 Like