Skip to main content
March 4, 2022
Question

In Process model & interface

  • March 4, 2022
  • 10 replies
  • 1 view

I created interface from Appian exercise which is in read only format and display's data in Test when default values are set

but when running the process model, there's no data displayed in the read only section.

What could be done in order to display data?

    10 replies

    stefanhelzle0001
    Brainy
    March 4, 2022
    andrewh0007
    March 5, 2022

    What Stefan said and you could also use a!defaultValue() too.

    https://docs.appian.com/suite/help/22.1/fnc_informational_a_defaultvalue.html

    Depending on your use case this could be either on the Process Start Form tab of the start node or in the interface. AFAIK you can't use process variables in the Variables tab of the process model.

    a!defaultValue(
      value: pv!car.make,
      default: "Ford"
    )

    a!defaultValue(
      value: pv!car.make,
      default: "No make input recieved"
    )

    March 5, 2022

    I tried both link suggested above I didn't get how to proceed

    I have made use of default values in the interface during test but when I run process model there are no values(as shown in 3rd image).

    Could you please suggest