Appian Community and Appian Academy are being upgraded. As a part of the upgrade, Appian Community is currently in read-only mode, and user registration is disabled until August 3. We apologize for any inconvenience this may cause, but a more secure, stable, and performant Community experience is coming soon!

The new Appian Community launches August 3, followed by Appian Academy on August 7. During the migration, Appian Community Edition, Appian Academy, Documentation, Certifications, Instructor-led Customer Training, Partner Sales Training & Accreditation, and Forum (for Appian Partners and Customers only) will remain available.

Call a process model using a button, is it possible?

a!richTextDisplayField(
value: {
a!richTextItem(
text: "Create New Ticket",
link: a!startProcessLink(
label: "Create New Ticket",
processModel: cons!PM_TESTPTS, <-- Able to call process model
bannerMessage: "Updated details for "
),
style: "STRONG",
color: "POSITIVE"
)
}
)

I think its impossible in appian to call process model ? but still there can be way

  Discussion posts and replies are publicly visible

Parents Reply
  • 0
    Certified Lead Developer
    in reply to Deepak Shinde

    If you're wanting the user to flow into a task in the process instance you're starting from this action, you must use a link and a!startProcessLink.  A button can not do this.  However if you're just trying to kick off a process that runs in the background, you can use a!startProcess (as pointed out already by Stefan) in either a button OR a (Dynamic) Link, basically interchangeably.  You haven't really clarified what your use case and desired User Experiences are.

Children