how to call two script includes in reference qualifier field of service catalog variable
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-25-2016 07:56 AM
I have a script include written to get users of a particular country and another script include to get user of different country according to which user of country is logged in. I get a list of users of that particular country.
I have been successful in calling two script includes in a reference qualifier for normal incident variable caller_id
Now I want to call these two script include in service catalog variable "Request for " to get users according to the logged in user of that particular country.
I tried this but isn't working.
Kindly help me with this issue.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-26-2017 10:08 AM
javascript: 'sys_idIN' + new testing_location().checkloc() +'^NQ'+ new check_location_list().check_location();
I tried in this way.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-26-2017 04:04 PM
i have also tried
javascript: 'sys_idIN' + new testing_location().checkloc() || javascript: new check_location_list().check_location();
but it's still not working?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-27-2017 05:55 AM
Are you able to test those in scripts background?
Example:
gs.debug('sys_idIN' + new testing_location().checkloc() +'^NQ'+ new check_location_list().check_location());
What is the output? Are there any errors?