Appian Community
Site
Search
Sign In/Register
Site
Search
User
DISCUSS
LEARN
SUCCESS
SUPPORT
Documentation
AppMarket
More
Cancel
I'm looking for ...
State
Not Answered
Replies
6 replies
Subscribers
9 subscribers
Views
4851 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
General
Do we have an option to invoke a process model from SAIL Code?
Navajith K
over 9 years ago
Do we have an option to invoke a process model from SAIL Code?
OriginalPostID-154018
OriginalPostID-154018
Discussion posts and replies are publicly visible
Parents
0
siddharthm
over 9 years ago
Yes.. We can invoke a process model from the SAIL using the function 'startprocesswrite' with the 'bind' function
Eg: local!invokeProcess:bind(
{
valueToBePassedToProcess:null
},
startprocesswrite(
processModelId: ## /* Process Model Id of the process that has to be invoked */,
processParameters: _
)
)
You can use this local variable(local!invokeProcess) to invoke the process model from the SAIL. Say you want to pass a 'Name' field from the SAIL to the process model on clicking a button, the sample code will be like below :
a!buttonWidget(
label: "Submit",
style: "PRIMARY",
value: {
valueToBePassedToProcess:ri!name
},
saveInto: {
local!invokeProcess << _,
)
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Reply
0
siddharthm
over 9 years ago
Yes.. We can invoke a process model from the SAIL using the function 'startprocesswrite' with the 'bind' function
Eg: local!invokeProcess:bind(
{
valueToBePassedToProcess:null
},
startprocesswrite(
processModelId: ## /* Process Model Id of the process that has to be invoked */,
processParameters: _
)
)
You can use this local variable(local!invokeProcess) to invoke the process model from the SAIL. Say you want to pass a 'Name' field from the SAIL to the process model on clicking a button, the sample code will be like below :
a!buttonWidget(
label: "Submit",
style: "PRIMARY",
value: {
valueToBePassedToProcess:ri!name
},
saveInto: {
local!invokeProcess << _,
)
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Children
No Data