I have a button on an interface that is used to start Process using a!startProcess in the background. Now I want the values of the field to be retained. Once the process the completed, all the local variables are refreshed to empty or null values. How do I retain these values.
For other fields I am using ri! but for a particular values that I am having operations on in the interace I am bound to use local variable here. Am I missing something here? I tried using rule inputs, but the usecase requires me use a local variable here. Also tried saving this to an ri! and onSuccess saving back to local! but that didn't help. Any help or direction that I should be looking towards to solve this?
Discussion posts and replies are publicly visible
I would assume that you can save to the local variable via the onSuccess.
I found the issue, it was with my definition of local Variable. Thanks for helping me pin point this. I was assuming it's some kinda behaviour of startProcess to revert the values.