List Collectors Are the Pits

List collectors try so very hard to be helpful.

I have used them, but I don't like them and here's why;

The list isn't that long, but it merits a conversation about what you're trying to collect.

Before London, there was no good out of box alternative. With London we got the Multi-Row Variable Sets, and sure they also have their flaws, they are not as bad as List collectors.

In my past the most common use for List collectors is to grant access or to modify a number of things in different ways. The problem with that is, you can't specify after you've selected all the things what you want to do individually. So in practice, it would be a User Access form. You pick the users you want to change access for, but then you are only allowed to add one role, or group.

Covestic's workaround

This is a great way to do the options without a whole table.. but then someone still has to manage these options.3

  1. On your catalog item, create a new multiple choice or select box variable (either will work, we are after the "Choices" related list here), give it a name and some question text and then submit.
  2. Add any choices your variable needs.
  3. Switch the variable type over to a list collector. You will notice that we cannot save until we give ServiceNow a table to reference so pick Question Choice [question_choice]
  4. Add a reference qualifier of "question=XXXX" where XXXX is the question’s sys_id.
  5. (Optional) You may want to deactivate the "Question Choice Related List" client script or modify the if statement in the script to be if (newValue == "3" || newValue == "5" || newValue == "21") to show the Question Choice related list on list collector variables.
  6. You now have a list collector variable without having to create a whole new table.
  7. (Optional) You can now think about adding variable attributes such as no_filter or glide_list to alter the variable’s appearance on the form.

Comments

CheriEmm commented on Jan 2, 2020

Only admins can see question_choice so this is useless for your end users. You could create an ACL but would have to think on the reason question_choice is only available to admin, etc.

jacebenson commented on Jan 2, 2020

It is a workaround. It does make them a little better.