How do I permit users to remove requests?

With most business systems, it is best to never delete requests, but instead have them cancelled, and then optionally hidden to effectively delete them from the end-users view (as such, to the average user they are deleted, but an administrator never loses any data that might be needed for security or other tracking needs).  After a data retention period has passed, the Cancelled (deleted) requests can be purged in batch.

The method to do this hides the request from the grid view by:
  •  Adding a hidden Boolean field "Cancelled" to all requests
  •  Leveraging a workflow action named "Cancel" to set the Cancelled field to True
  • Setting the column filter for the Cancelled field to contain "false", so only those records that have not been Cancelled will be shown

Step-by-step guide


  1. To begin we need declare a hidden Boolean field.
  2.  Select Module in the top left banner then select the appropriate module name link.
  3.  Select the Forms tab then select the Field List button "Create/Update Fields".
  4.  Using the search filter in the upper left type "customBool".
  5.  Select the Edit pencil icon  on one of the Boolean fields that is not being used.
  6.  Type "Cancelled" into the Name field, enable Hide in form, and clear the text within the Column Header field.
  7.  Select "Update", and then Save in the upper right.
    (Copy or write down the Internal Name of the variable selected, as it will be needed later.)
  8.  Then we need to add the Boolean field we defined in the Field List to the form.
  9.  Select Module in the top left banner then select the appropriate module name link.
  10.  Select the Forms tab then select the  name link.
  11.  Select the drop down to the right of Palette, and select Check.
  12.  Drag and Drop the Cancelled Boolean field from the Palette on the right to the form Canvas on the left.
    (This adds the hidden Boolean field to the form, requests, and grid view.)
  13.  Select Save in the upper right.
  14.  Next we must define the action, state, and sub-action.
  15.  Select Module in the top left banner then select the appropriate module name link.
  16. Now within the module properties select the Workflows tab then select the appropriate workflow name link. 
  17.  Select Next.
  18.  Select +Add in the upper left.
  19.  Type "Cancelled" into the action Name field.
  20.  Set the Step Type to "Finish", then select OK.
  21.  Select Next.
  22.  Select +Add in the upper right.
  23.  Type "Cancel" into the Name and Display Name fields.
  24.  Select the Start states drop down, and select the action states you would like the Cancel action to be available on.
  25.  Select the End states drop down, and select Cancelled.
  26.  Select the Permissions tab, and enable access to the action based on the Roles here.
    (Only enabling permission to the Admins, and not any of the defined User roles would reserve the action to only be performed by Administrators.)
  27.  Select the Subactions tab, and click on the blue box to add a new sub-action.
  28.  Paste if copied from step five above, or type "customBool#" into the Field on the left, and type "true" in the Value on the right.
    (The name of the Boolean variable will vary depending on the Internal Name of the Boolean field you selected to define as "Cancelled" within the Field List.)
    (There should be an "=" sign in between the Field and the Value.)
  29.  Select OK, then select Save.
  30.  Return to the grid view type "false" into the text filter under the Cancelled column field.
  31.  Now set the view to not show the Cancelled field by selecting the grid filter in the upper right  and un-checking it within the drop down by selecting "Cancelled".
  32.  Lastly, it is important that this configuration of the text filter under the Cancelled column field, and hiding of the column in the grid filter be Saved into the Layouts to function properly.
  33.  This is done by selecting the View drop down in the upper right, then Save Layout.


  • Once Configured the Cancel action is only available to those states as it was defined to be in the workflow.
  • To take a request out of this Cancelled state an action would need to be defined in the workflow as available on this Cancelled state with a resulting previous state, and with a sub-action inversely setting the Cancelled field of the request back to the default "false" value. 
  • You are able to set the text filter under the Cancelled field column to "true" to view only the those records which have been Cancelled.
  • The action, resulting state, and field names are not reserved terms and may all be customized as the Administrator sees fit.