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