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
4 replies
Subscribers
5 subscribers
Views
4363 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
Process
Process Model UUID Capture
yagyadeepk
over 8 years ago
I want to capture the process model UUID at run time via only the out of the box functionalities. The Process Model properties expose the pm!id which is the numeric id specific to the environment and not the universal 32 bit UUID. Any suggestions to capture the UUID at run time?
Thanks in advance
OriginalPostID-257283
Discussion posts and replies are publicly visible
Top Replies
Mike Schmitt
over 8 years ago
+1
Certified Lead Developer
As far as I can tell, pm!uuid is a valid process model property despite not being listed with the others. You might have luck just using that.
Parents
0
raghunandanj3904
Certified Lead Developer
over 8 years ago
There is an OOTB function called getprocessmodeldetailsbyuuid(). You can pass the PM!ID as well to this and this returns the details of the process model as a string. And you can split the string with "," and then pull the 4th element in the array which is UUID.
split(getprocessmodeldetailsbyuuid("yourPmIDGoesHere"),",")[4]
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Reply
0
raghunandanj3904
Certified Lead Developer
over 8 years ago
There is an OOTB function called getprocessmodeldetailsbyuuid(). You can pass the PM!ID as well to this and this returns the details of the process model as a string. And you can split the string with "," and then pull the 4th element in the array which is UUID.
split(getprocessmodeldetailsbyuuid("yourPmIDGoesHere"),",")[4]
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Children
No Data