Is it possible to create list type field as dependent field in servicenow task table
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-27-2020 01:44 PM
Field 1 is list type field and field 2 is also list type field dependent on field1 ,is it possible to create such dependency?
- Labels:
-
Instance Configuration

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-27-2020 02:37 PM
Hi,
This dependency on Lists can be created with reference qualifier, lists are references to tables that can save multiple values. If you want to make the relationship with 'dependent' functionality, I suggest use a String with choices instead List.
Hope it help,
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-28-2020 06:06 AM
Field1: Choices T1,T2,T3
Field2:choices T1_1,T1_2,T1_3,T2_1,T2_2,T2_3,T2_4,T3_2,T3_3
here all T1_* depend on Field1 choice T1
here all T2_* depend on Field1 choice T2
here all T3_* depend on Field1 choice T3,this is sample example i need to reflect it on 2000 choices in fields 2

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-28-2020 09:19 AM
Hi,
Sure, just a question, are you using lists because you want to be able to select multiple values?
I mean, on Field1 you can select T1 and T2 at the same time?
Same for the Field2, you want to be able to select T1_1,T1_2,T1_3,T2_1,T2_2,T2_3 at same time?
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-28-2020 11:44 AM
Yes, Since both field need multi selects i'm using List type.
As in previous example,If Field 1 selects T1&T2
Field 2 should have choices T1_1,T1_2,T1_3,T2_1,T2_2,T2_3,T2_4 and it should give multi select option to select T1_1,T2_2,T2_3