Hi Hana,
I have moved this question to customization. A member of the customization team should be able to answer this question.
Is it possible to set up a Custom Action (already created) on the portal page? If so, how would i get the URL for the custom action?
Please sign in to leave a comment.
Hi Hana,
I have moved this question to customization. A member of the customization team should be able to answer this question.
Hi Hana,
Sure you can! Use the GetCustomActionURL function which is documented here: http://usermanual.clarizen.com/clarizen-functions$GetCustomActionUrl_Function_Samples
Let me know if you need any additional help.
Good luck!
Tamir
Can you provide an updated link for the documentation on how to 'GetCustomActionURL'?
Hello Kristin,
Here's a link to the documentation: https://success.clarizen.com/hc/en-us/articles/205712048-Clarizen-Functions?search=functions
For example, GetCustomActionUrl('CustomActionName', GetRuntimeParameter(CurrentObject())) would call 'CustomActionName' custom action on CurrentObject() object.
I hope this helps.
I'm hoping someone can help even though the post is old... I am trying to copy a custom action URL as a link on my portal page but I'm at a loss of how to go about it. Thank you in advance!
Hello Eniola,
Adding the following to your custom page's HTML section will create a link to the custom action:
<a href="{GetCustomActionUrl("Some Custom Action Name")}">Click here to run the Custom Action</a>
I hope this helps.
Roland