Can assets in a ticket field be pulled from a PC name or user in another field?
I would like to select a PC and have the location and other information pre populate in the ticket, im not sure how to accomplish this
4 Comments
[ + ] Show comments
Answers (0)
Please log in to answer
Be the first to answer this question
query: select NAME from ASSET A JOIN HD_TICKET T on (A.OWNER_ID = T.SUBMITTER_ID) where A.OWNER_ID=T.SUBMITTER_ID - agrossman 11 years ago
If you are trying to define a custom field as a query, that will not work as the query will not have access to the required parameters at run time. - grayematter 11 years ago
query: SELECT ASSET.NAME AS ASSET_NAME FROM ASSET_DATA_1 LEFT JOIN ASSET ON ASSET_DATA_1.ID = ASSET.ASSET_DATA_ID AND ASSET.ASSET_TYPE_ID=1 WHERE (ASSET.NAME like 'Building%') ORDER BY ASSET_NAME - agrossman 11 years ago