

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Help including the catalog bundle name in the SD title on Submit
I've been asked to add the bundle name to the SD title when we submit a request with an approval. I'm struggling to figure out how to do this.
I've found the relationship between the cart and SD, but the SD ticket number is not yet assigned at this point so that does not work. I've searched everywhere to find a variable that contains the part number or bundle name, but I'm continuing to come up empty.
Has anyone else done something like this?
SM 7.11

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
You can put the following expression in the Catalog Connector expressions to move the Item Description (typically that one is filled with the displayName in the catalog item) into a field of your choosing in the final file (if your connector opens a change, $L.file will be cm3r)
YourField in $L.file=item.description in $L.item
The cart item info itself can be seen directly from the interaction via a virtual join. If you want to have it be part of the SD title, you will have to add the displayName from the svcCartItem to the title, maybe as a pre-add trigger JavaScript on the interaction (incidents) record.
I hope this helps?


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Thanks Iris. This does not really help though. This connector opens a request and I'm trying to include the description in the SD ticket. I know we can create a join on the SD to display it once it is approved and the quote is created, but we're actually trying to get the value in the SD title on add.
With the approval step, the quote is not added until after the approval. The cartItem is also not accessible until the SD is created and has a number assigned. This is where the problem has been, trying to get the description or part.no to pass from the cart to the SD on creation.