- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2024 11:47 AM
I have a request to add a variable to the end of our Short Description variable.
I'm looking for something like Short Description: I want to add additional software to my laptop - Joe Jones
Joe Jones is a variable called "Requested For"
This is what I'm playing with to no avail.
current.short_description = "I want to add additional software to my laptop - " + producer.requested_for;
Solved! Go to Solution.
- Labels:
-
Service Desk
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2024 11:54 AM
Hi @John H1,
Try the below script and check
current.short_description = "I want to add additional software to my laptop - " + producer.requested_for.name;
Mark the response correct and helpful if the answer assisted your question.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2024 11:51 AM
@John H1 Did you try the following.
current.short_description = "I want to add additional software to my laptop - " + producer.requested_for.first_name+' ' producer.requested_for.last_name;

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-16-2024 12:23 AM
@John H1 I suggested the same solution, but it wasn't marked as an accepted solution. May I know the reason?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2024 11:54 AM
Hi @John H1,
Try the below script and check
current.short_description = "I want to add additional software to my laptop - " + producer.requested_for.name;
Mark the response correct and helpful if the answer assisted your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2024 11:56 AM
Thanks for the quick response, where would I I add this, I tried a couple of places with no luck