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
23 replies
Subscribers
6 subscribers
Views
10049 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
AI and Rules
How does contextProcessModels property of a!queryProcessAnalytics() function wor
greggl
over 8 years ago
How does contextProcessModels property of a!queryProcessAnalytics() function work?
My a!queryProcessAnalytics() function works great below when using contextProcessModels, but when I try and switch to contextProcessIds to display just the current process, it returns nothing. So then I backed up and just tried to hard-code the process ID that I want which is 6400, and that doesn't work. I tried using the processId variable and toInteger(6400) but no luck. What gives?
How is the contextProcessIds used correctly to return just those process IDs (pp!id) and can you show an example?
Thanks much!
local!report: a!queryProcessAnalytics(
report:cons!eOff_TASKS_GRID,
/* contextProcessModels: cons!EOB_MAIN_PROCESS_MODEL, */
contextProcessIds:{tointeger(6400)}
/*
contextProcessIds:
contextProcessModels:cons!eOFF_MAIN_PROCESS_MODEL
contextProcessIds:6400,
ri!processId,*/
/*
OriginalPostID-201423
OriginalPostID-201423
Discussion posts and replies are publicly visible
Parents
0
sikhivahans
over 8 years ago
@greggl Here are two ways of doing it:
Ex 1:
a!queryProcessAnalytics(
report: cons!eOff_TASKS_GRID,
contextProcessModels: cons!EOB_MAIN_PROCESS_MODEL,
query: a!query(
pagingInfo: a!pagingInfo(startIndex: 1, batchSize: -1),
logicalExpression: a!queryLogicalExpression(
operator: "AND",
filters: {
a!queryFilter(field: "cx", operator: "in", value: tointeger(ri!processId))
\ t/* Replace 'cx' with a value that holds process id in the Report, for instance: c2 */
}
)
)
)
Ex 2:
a!queryProcessAnalytics(
report: cons!eOff_TASKS_GRID,
contextProcessModels: cons!EOB_MAIN_PROCESS_MODEL,
query: a!query(
pagingInfo: a!pagingInfo(startIndex: 1, batchSize: -1),
filter: a!queryFilter(field: "cx", operator: "in", value: tointeger(ri!processId))
\t/* Replace 'cx' with a value that holds process id in the Report, for instance: c2 */
)
)
Please do let me know in case if you have any follow up questions.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Reply
0
sikhivahans
over 8 years ago
@greggl Here are two ways of doing it:
Ex 1:
a!queryProcessAnalytics(
report: cons!eOff_TASKS_GRID,
contextProcessModels: cons!EOB_MAIN_PROCESS_MODEL,
query: a!query(
pagingInfo: a!pagingInfo(startIndex: 1, batchSize: -1),
logicalExpression: a!queryLogicalExpression(
operator: "AND",
filters: {
a!queryFilter(field: "cx", operator: "in", value: tointeger(ri!processId))
\ t/* Replace 'cx' with a value that holds process id in the Report, for instance: c2 */
}
)
)
)
Ex 2:
a!queryProcessAnalytics(
report: cons!eOff_TASKS_GRID,
contextProcessModels: cons!EOB_MAIN_PROCESS_MODEL,
query: a!query(
pagingInfo: a!pagingInfo(startIndex: 1, batchSize: -1),
filter: a!queryFilter(field: "cx", operator: "in", value: tointeger(ri!processId))
\t/* Replace 'cx' with a value that holds process id in the Report, for instance: c2 */
)
)
Please do let me know in case if you have any follow up questions.
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Children
No Data