I have added a new field to Mass Issues to Manufacturing; the field information is saved in the database when we click the Ok button. However, the dilemma I face is that I don’t know how to clear it after clicking Ok.
How to access the OnClick event of the button? Or what alternatives do I have?
the quick way is to clear the field CallContextBpmData after you update the parttrans UD field in the BPM/Data Method.
The CallContextBpmData doesn’t clear out by itself until the client is closed. It is best to make sure the CallContextBpmData field is also cleared when the form opens, so that there isn’t any data artifacts laying around.
Hi Mario,
When you are saving you should be able to set CallContextBpmData.ShortChar01 = “” (you mentioned this data was getting saved to the DB, I’m supposing something in the business logic saves this del reference).
The OK button, you won’t be able to add click event as it is not a user custom defined button.
Hope this helps