Skip to main content
New Participant
September 5, 2026
Solved

User Input Task does not save Rule Input value back to Process Variable

  • September 5, 2026
  • 2 replies
  • 41 views


Hi I’m new for Appian,  I have a simple test case:

Process Variable:
pv!test (Text)
Default Value = "ABC"

Interface Rule Input:
ri!test (Text)

Interface:

- The form displays ri!test.
- User changes the value from "ABC" to "HELLO".
- A debug field confirms that ri!test contains "HELLO".

User Input Task Forms mapping:

ri!test = pv!test

Continue button:

submit: true

Issue:

After clicking Continue and completing the User Input Task, the process variable pv!test still contains the original value "ABC".

The Rule Input (ri!test) is updated correctly inside the form, but the Process Variable (pv!test) is not updated.

My expectation was that the updated Rule Input value would automatically be written back to the mapped Process Variable when the task is submitted.

Am I missing an additional configuration step?

Do I need to configure something in the Data > Outputs tab, or should the Forms mapping handle this automatically?

Any advice would be appreciated.

Thanks!

 

    Best answer by stefanhelzle0001

    Ist this a process start form, or a user input task? For the first option, did you check that the PV is defined a parameter in process variables?

    For user input tasks, you need to map the data on the forms-tab, and make sure to select the “Save into” on data-inputs. Do not add another save operation on data-outputs.

    2 replies

    stefanhelzle0001
    Brainy
    September 5, 2026

    Ist this a process start form, or a user input task? For the first option, did you check that the PV is defined a parameter in process variables?

    For user input tasks, you need to map the data on the forms-tab, and make sure to select the “Save into” on data-inputs. Do not add another save operation on data-outputs.

    New Participant
    September 5, 2026

    yep , you are right , I forgot to add the “save into” on the data-inputs , it’s fixed now ,thank you very much .