- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2022 07:50 AM
I have a catalog item with a field called 'ritm' that references the 'sc_req_item' table in order for a user to "attach" a previous requested item to their new request. There is also a field on this catalog item called 'software_name' where the user can type in the name of software.
When searching in the reference field, I want the 'ritm' reference field to show the 'number', 'opened_at', and 'software_name'. I am currently using 'ref_ac_columns=number;opened_at;' to display 'number' and 'opened_at', but I can't figure out how to show variables of this specific catalog item--I can only figure out how to display the columns directly on 'sc_req_item'. I'm assuming I will have to dot-walk to the 'software_name' variable on my catalog item somehow, but I can't figure it out.
'ritm' variable:
Dictionary Entry on 'sc_req_item':
Current Service Portal view:
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2022 09:37 AM
Hello,
Can you try the below in variable attribute:-
ref_ac_columns=number;opened_at;variables.variablename;
if the above does not work you can make the field as select box instead of reference and follow the steps mentioned in the below thread by Bernd7
Please mark my answer as correct based on Impact.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2022 09:37 AM
Hello,
Can you try the below in variable attribute:-
ref_ac_columns=number;opened_at;variables.variablename;
if the above does not work you can make the field as select box instead of reference and follow the steps mentioned in the below thread by Bernd7
Please mark my answer as correct based on Impact.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2022 10:59 AM
Adding 'variables.software_name' to ref_ac_columns did not work, so I switched it to a Lookup Select Box which achieved what I wanted.
Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2024 07:14 PM
Excellent