Form Fillability ServiceNow Error Guide

This guide contains information on the errors you might encounter with Form Filling with the Moveworks bot on your ServiceNow instance.

ServiceNow Errors

Why isn’t my form fillable in Moveworks?

There could be a few reasons why a form is not fillable in Moveworks. We have outlined some of the most common issues we’ve seen across our customers and have put together guidance on how to overcome such issues. You can refer to the specific error message to help you figure out why your form is not fillable in your bot. As always you can also check with your Customer Success team for more specific details pertaining to your bot/ServiceNow instance.

  1. Moveworks is unable to retrieve all the information about the form
    1. Reference/Choice Field Options
      1. The Moveworks account doesn’t have access to a field’s reference table
      2. Moveworks has access to a reference table, but is unable to find the display column from that table because it lacks access to the sys_dictionary table.
      3. Moveworks has access to the reference table / display column, but the table has too many rows to process (over 100,000)
    2. UI Policies / Actions
      1. Moveworks doesn’t have access to read the UI policies/actions on the form (access to the catalog_ui_policy and catalog_ui_policy_action tables)
  2. The form isn’t supported (and unlikely to ever be)
    1. Unsupported field type
      1. There are some older/deprecated field types that cannot be rendered within the chat UI. Moveworks can usually help you find alternative field types to replace these.
    2. Unsupported UI policy
    3. Has Client Scripts or a UI policy that contains JavaScript
      1. If the client script is not active in the Service Portal view (also called catalog item view), the form will still be supported.
  3. Form is blocked from filling by controls set by your Customer Success team
    1. There could be a myriad of reasons, so please work with your CS counterparts.

Unsupported script: Client Script / Variable Set

Example error messages:

  • Form contains unsupported (variable set) client script named {script_name} with script ID {script_id}

Explanation:

Moveworks does not support client scripts.

Solution:

Please either remove the script on associated with the form, we recommend moving the logic to a business rule running on the sc_req_item table, or moving the logic to the workflow associated with your catalog item. Additionally, you can work with Moveworks’ Customer Success team to ignore the script.

Unsupported script: UI Policy Script

Example error message:

UI policy {policy_name} contains scripts

Explanation:

Basic UI policies are supported given that they (1) contain no JavaScript & (2) are not applied to any container-like field types (including CheckBox containers). Moveworks’ Customer Success team can work with you to ensure your UI policies fit into our supported dynamic form behavior.
No client UI scripts are supported. Make sure to disable them on any forms that you want fillable in bot.

Note: Unlike unsupported Client Scripts, UI Policy scripts cannot be ignored by Moveworks.

Solution:

Please either remove the script on associated with the UI Policy, we recommend moving the logic to UI Policy actions, moving the logic to a business rule running on the sc_req_item table, or moving the logic to the workflow associated with your catalog item.

Unsupported Form Type: Order guide

Example error message:

  • Order guide forms are not supported for in-chat filling

Explanation:

Moveworks does not support order guides (which are collections of forms) for filling in-chat, though we do allow displaying links to these forms. However, Moveworks does support showing individual forms that make up an order guide as fillable in-chat.

Unsupported Form Type: Manual forms

Example error message:

  • Forms manually defined by the Moveworks customer success team are not fillable

Explanation:

Moveworks supports showing forms that are links to customer-defined webpages. These forms are added manually by Moveworks Customer Success team. Since these are not ServiceNow forms, they are not fillable in chat.

Record Producer

Example error message:

Record producer forms must be manually verified to be working correctly

Explanation

Moveworks only supports record producers if the record producer meets the following criteria:

  1. The record producer must create a ticket that is available in Moveworks Concierge. You can work with your customer success team to configure your ticket table for Concierge.
  2. The record producer must be built with Generated Record Data from Variables only, not from a Template.
  3. The record producer script must not use gs.getUserId() or any other GlideSession APIs functions. This can lead to strange behavior where the caller field on the resulting ticket belongs to the service account rather than the employee that filled out the record producer. Instead, Moveworks recommends adding a field on the Record Producer for the requesting user e.g: requested_for .

Solution:

Please work with Moveworks’ Customer Success team to get your record producer supported.

Unsupported field type

Example error message:

Field type {field_type_name} is unsupported

Explanation:

Certain field types are not supported by Moveworks due to limitation of your chat application.

Solution:

Please see the supported form filling behaviors by chat platform chart below. Please consider remove or update those fields.

Form Field Type Conversion

SystemExternal Field TypeMoveworks Type
ServiceNowGroupSupported: No experience implications
ServiceNowYes/NoDropdown: Single
ServiceNowMulti Line TextText: Multi-line
ServiceNowMultiple ChoiceDropdown: Single
ServiceNowNumeric ScaleDropdown: Single
ServiceNowSelect BoxDropdown: Single
ServiceNowSingle Line TextText: Single line
ServiceNowCheckboxCheckbox: Single
ServiceNowReferenceDropdown: Single
ServiceNowDateDate
ServiceNowDatetimeDatetime
ServiceNowLabelSupported: No experience implications
ServiceNowBreakUnsupported
ServiceNowMacroUnsupported
ServiceNowUI PageUnsupported
ServiceNowWide Single Line TextText: Single line
ServiceNowMacro with LabelUnsupported
ServiceNowLookup Select BoxDropdown: Single
ServiceNowContainer StartSupported: No experience implications
ServiceNowList CollectorDropdown: Multiple
ServiceNowLookup Multiple ChoiceDropdown: Single
ServiceNowHTMLText: Single line
ServiceNowContainer SplitUnsupported
ServiceNowMaskedUnsupported
ServiceNowEmailText: Single line
ServiceNowURLText: Single line
ServiceNowIPUnsupported
ServiceNowDurationUnsupported
ServiceNowRequested ForDropdown: Single
ServiceNowAttachmentUnsupported

Missing field options

Example error message:

Only simple reference qualifiers are supported but field used qualifier {javascript_code}

Explanation:

Moveworks only supports ingesting field options filtered by a simple reference qualifiers.

Solution:

Please consider remove the dynamic / advanced reference qualifiers. Dynamic or advanced reference qualifiers are generally used to control the users options - it may be possible to remove this field entirely, and make the choice programmatically within the workflow (or a business rule) based on other options the user selects.

Simple reference qualifiers example:

Too many field options

Example error message:

The filtered reference table {table_name} contains more than 150000 rows

Explanation:

Any dropdown can only contain less than 150,000 rows.

Solution:

Please consider adding a simple reference qualifier or removing the dropdown field.

Insufficient api access

Example error message:

Insufficient API access to table_name and/or script columns of sc_cat_item_producer

Explanation:

Table API access issues.

  • API used: {servicenow_url}/api/now/v2/table/{table_name}
  • Moveworks needs access to certain tables for our forms integration. The error message will mention the table to which we don’t have access. It is possible that we have access to the table, but not the columns in the table that we need.

Catalog API access issues.

  • API used: {servicenow_url}/api/sn_sc/v1/servicecatalog/items/{id_of_form}
  • Moveworks needs access to this endpoint for all form ID’s you would like to display in-chat. Sometimes, customer access control may limit API access to specific forms at this endpoint.
  • To mitigate, check the “Available for” section for this specific catalog item and ensure our service account is included in the criteria

Solution:

Please consider providing the appropriate access for the appropriate Table API table or the Catalog API.

Chat App specific Issues

Slack Issues

Field options Text length too long

Example error message:

'Form field option is longer than 75 characters’: {field_option_value}

Explanation:

Slack only supports displaying field option value less than 75 characters.

Solution:

Please consider shorten the field option value on your ITSM. In certain cases, Moveworks will truncate the field option value when displaying. Please work with Moveworks Customer Success team if this is not expected.

Read only fields

Example error message:

Form contains read only fields

Explanation:

Slack block-it API does not support rendering a read-only field.

Solution:

Please consider remove the UI policy that marks a field as read-only or convert the field to a label.

Form contains a field whose label is empty

Example error message:

Form contains a field whose label is empty

Explanation:

We require that the question text of a field is non-empty.

Solution:

To solve this issue, add a question text (eg: “What date are you requesting?).