Skip to main content
July 12, 2022
Solved

two interface and multiple form

  • July 12, 2022
  • 2 replies
  • 0 views


Hi!

I have a question, well, I have to make a CRUD type system, which allows to register two data type, I have two interfaces, in the first one assuming, I add supplier data, and in the other interface I add employee data, when I fill the first interface, everything is filled ok, but it skips the second interface and ends the process, then in my global database, the forms of the second interface remain as null, what could I do to make that as soon as I finish filling the first form, automatically go to the second? I am a newbie in appian, excuse me, thank you very much!

Best answer by nareshs945

You need to update your submit button configuration. There are multiple ways to achieve your requirement

  1. show both suppler and employee data in a same form, after submitting the form first write supplier data and then write employee data
  2. You can use widget/step approach  
    1. https://docs.appian.com/suite/help/22.2/form-steps-pattern.html

2 replies

Inspiring
July 12, 2022

You need to update your submit button configuration. There are multiple ways to achieve your requirement

  1. show both suppler and employee data in a same form, after submitting the form first write supplier data and then write employee data
  2. You can use widget/step approach  
    1. https://docs.appian.com/suite/help/22.2/form-steps-pattern.html
July 12, 2022

Thanks you!!