Joyce Posted June 20, 2017 Posted June 20, 2017 Hi, which field on h_sys_tasks table are the columns seen on 'Activities view' linked with? I am after columns 'Assigned to', and 'Status' . I am trying to create a widget for count of open/active task by team (assigned to a team). Thanks. Regards, JOyce
Guest Ehsan Posted June 20, 2017 Posted June 20, 2017 Hi @Joyce, The column "h_sys_tasks.h_assigned_to" stores the assigned-to detail of an Activity. The column "h_sys_tasks.h_state" stores the status of an Activity. Statuses include: 1 for assigned 10 for cancelled 4 for completed You can find more information on reporting on Activities, in the following post. Hope this helps. Ehsan
Joyce Posted June 20, 2017 Author Posted June 20, 2017 Thanks @Ehsan. The value i have on 'Assign to' from running select query on database direct is something like urn:sys:group:Instance/company/department/team/. I am interested on filtering by Team. So if I say: h_sys_tasks.h_assigned_to like '%department%' I am not getting any data returned, but sql error. Thanks. Regards, Joyce
Guest Ehsan Posted June 20, 2017 Posted June 20, 2017 @Joyce, That's strange. The following statement works for me. SELECT * FROM h_sys_tasks WHERE h_assigned_to LIKE '%SecondLineSupport%'. You can also use the Reports feature (Admin Tool > "Hornbill Service Manager" Tile > "Reports" Tile > Create a Report and select "SQL Schema Designer" option under "Reporting Using" field). Below, I've added a filter to report on h_sys_tasks -> Assigned To field. Please refer to this as an example.
Joyce Posted June 20, 2017 Author Posted June 20, 2017 Need to do it as, a widget, as part of a daily dashboard.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now