How to run a specific report.
Hi there,
I'm trying to run a run report to find which users have a specific model laptop in specific. In more detail, the report should have all the users that use a Lattitude e6420 and e6430 in our Boston Laptops Smart Label. Is that possible?
I'm trying to run a run report to find which users have a specific model laptop in specific. In more detail, the report should have all the users that use a Lattitude e6420 and e6430 in our Boston Laptops Smart Label. Is that possible?
2 Comments
[ + ] Show comments
Answers (0)
Please log in to answer
Be the first to answer this question
You could start with this. I used the wizard to get the user full name and user name along with the models as a regex
SELECT USER_FULLNAME, MACHINE.USER_NAME, CS_MODEL FROM MACHINE WHERE ((CS_MODEL rlike 'e6420|e6430') AND (CHASSIS_TYPE like '%laptop%') AND (( exists (select 1 from LABEL, MACHINE_LABEL_JT where MACHINE.ID = MACHINE_LABEL_JT.MACHINE_ID AND MACHINE_LABEL_JT.LABEL_ID = LABEL.ID AND LABEL.TYPE <> 'hidden' and LABEL.NAME like '%Boston%')) )) ORDER BY CS_MODEL - nshah 8 years ago