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
7 replies
Subscribers
5 subscribers
Views
3688 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
Plug-Ins
I am using the startprocesswriter function in a bind and I can not get it to wor
mpontius
over 10 years ago
I am using the startprocesswriter function in a bind and I can not get it to work with Appian 7.6 or 7.7. It is always making it to the List of Variant portion of code in the plugin. Below is my sail code trying to use the plugin.
load(
local!testBool: bind(get: ri!testBool, set: fn!startprocesswrite(processModelId: 54, processParameters: {{param1:"yes"}})),
a!sectionLayout(
label: "Lorem Ipsum",
firstColumnContents: {
a!buttonLayout(
primaryButtons: {
a!buttonWidget(
label: "Start Process",
value: true,
saveInto: local!testBool
)
}
)
},
secondColumnContents: {
/* Add components here for a two-column section */
}
)
)
This calls a very simple start and end node only process with one parameter called param1. Looking at the code I was thinking this should work fine, but it does not and the expression is returning null. I get the following er...
OriginalPostID-135572
OriginalPostID-135572
Discussion posts and replies are publicly visible
Parents
0
Mike James
Certified Lead Developer
over 10 years ago
load(
local!testBool: bind(get: ri!testBool, set: startprocesswrite(processModelId: 54, processParameters:_)),
a!sectionLayout(
label: "Lorem Ipsum",
firstColumnContents: {
a!buttonLayout(
primaryButtons: {
a!buttonWidget(
label: "Start Process",
value: {param1:"yes"},
saveInto: local!testBool
)})}))
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Reply
0
Mike James
Certified Lead Developer
over 10 years ago
load(
local!testBool: bind(get: ri!testBool, set: startprocesswrite(processModelId: 54, processParameters:_)),
a!sectionLayout(
label: "Lorem Ipsum",
firstColumnContents: {
a!buttonLayout(
primaryButtons: {
a!buttonWidget(
label: "Start Process",
value: {param1:"yes"},
saveInto: local!testBool
)})}))
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Children
No Data