/build/static/layout/Breadcrumb_cap_w.png

Pass values from multiselect custom fields in helpdesk tickets to child ticket

I have seen some excellent post here regarding passing information from the parent ticket to the child.

But, and it may just be my lack of full understanding of the queries already posted, I could not seem to find an example of passing the values of a mulitselect custom field to a child ticket.

Let's say I have 5 items in a multiselect custom field. The submitter chooses items 1,3, and 5. How would I pass those values to the child ticket (preferably in the comments section)?

Thank you for your help,

Jeremy


0 Comments   [ + ] Show comments

Answers (1)

Posted by: scarpent 11 years ago
6th Degree Black Belt
2
Jeremy you will need to use mysql to connect to the database to determine what value the information you want to copy has in Kbox. If you see below I am pulling custom fields that I created into the child tickets from the parent.  The reason you need to look in my sql is because Kbox shows my custom field numbers as different values than when I use my sql to look at what the value is stored in the database. 
 
SELECT PARENT.CUSTOM_FIELD_VALUE1, HD_TICKET.CUSTOM_FIELD_VALUE1, PARENT.CUSTOM_FIELD_VALUE2, HD_TICKET.CUSTOM_FIELD_VALUE2, PARENT.CUSTOM_FIELD_VALUE3, HD_TICKET.CUSTOM_FIELD_VALUE3, 

PARENT.CUSTOM_FIELD_VALUE0, HD_TICKET.CUSTOM_FIELD_VALUE0, HD_TICKET.ID

FROM HD_TICKET PARENT, HD_TICKET

WHERE PARENT.ID = HD_TICKET.PARENT_ID

Comments:
  • Thank you for the reply.
    Your answer assumes I know what the user selected, correct?
    However, if this was the initial ticket, I would not know what the user selcted.
    So, I couldn't query the specific values.

    Now that I'm thinking about this even more, maybe the multiselect field would pass the values exactly the same as a single select or text. There would just be more values.

    Thank you again, I think your answer put my mind on the right track. - jvleigh 11 years ago
  • Once you get started feel free to post your SQL code if it isn't working. I believe you're correct though, that the KBOX just stores the multiple selections as comma delimited values in the database. - chucksteel 11 years ago

Don't be a Stranger!

Sign up today to participate, stay informed, earn points and establish a reputation for yourself!

Sign up! or login

Share

 
This website uses cookies. By continuing to use this site and/or clicking the "Accept" button you are providing consent Quest Software and its affiliates do NOT sell the Personal Data you provide to us either when you register on our websites or when you do business with us. For more information about our Privacy Policy and our data protection efforts, please visit GDPR-HQ