For the 1st image, you can search for the lookup named "Activity results" and set the "Available in business process only" column to true/Yes for the values which you don't want to see in the dropdown:
For the 2nd image, you can search for the lookup named "Activity statuses" and delete/add the values which you want to see in the dropdown:
For the 1st image, you can search for the lookup named "Activity results" and set the "Available in business process only" column to true/Yes for the values which you don't want to see in the dropdown:
For the 2nd image, you can search for the lookup named "Activity statuses" and delete/add the values which you want to see in the dropdown:
I am using perform task inside section cases. The task updates the entity stage. After the stage is updated from the task I want to catch this event and reload the entity from the client side. I tried using the following approach but nothing happens
The below script is called only when the stage is updated directly from the client side and not from a task or a business process. Is there a way to catch this event from the client side?
Since the automatic changing of a stage happens outside of the context of a page, you won't receive any events from the change on the page itself.
The only option is to either use a process, entity subprocess or entity event listener class (and starts with a signal of case modified in stage field) and if it's changed to the appropriate stage you send a signal to the client. You can see how to send a message from the server (such as from a process) to the client here: https://customerfx.com/article/sending-a-message-from-server-side-c-to-…
You'll add code to the page to listen for this message and then reloadEntity to refresh the page.
Since the automatic changing of a stage happens outside of the context of a page, you won't receive any events from the change on the page itself.
The only option is to either use a process, entity subprocess or entity event listener class (and starts with a signal of case modified in stage field) and if it's changed to the appropriate stage you send a signal to the client. You can see how to send a message from the server (such as from a process) to the client here: https://customerfx.com/article/sending-a-message-from-server-side-c-to-…
You'll add code to the page to listen for this message and then reloadEntity to refresh the page.
I'm working with a business process, I have added a "Perfom Task" element, but I need to be able to set a custom parameter to it. The field already exists in the activity, but I'm not able to set it from them "Perfom Task" element.