Hi team,
There are two interfaces, namely interfaceA and interfaceB, and interfaceB is a sub-interface of interfaceA.
In the sub interfaceB, two localVariables are defined, namely b1 and b2.
In the parent interfaceA, there is a button. I want to implement a function. When the button in interfaceA is clicked, b1 and b2 in interfaceB can be operated.
How to achieve it?
Is there a recommended solution?
Thanks a lot!
Discussion posts and replies are publicly visible
Not sure what you mean with "operating a variable".
Read my blog post to understand data flow in interfaces: appian.rocks/.../
For example, save the value of b2 to b1, can we do it in interfaceA?
Like I describe in my blog post, you do not have access to local variables in sub-interfaces.
Variables have to be created on top and can be passed down through rule inputs.