Change Implementation Query Report
This report extracts Change, Task, and Worklog details specifically for changes in the Implementation stage.
It provides a consolidated view to track:
- Change progress
- Task execution
- Ownership and priorities
- Worklog activity
The report includes the following columns:
- Change ID
- Change Title
- Task Title
- Task Status
- Priority
- Task Owner
- Scheduled Start Time
- Scheduled End Time
- Percentage of Completion
- Task Order
- Worklog description
- Worklog start time
- Worklog end time

Database: PostgreSQL
Please find the query below:
- SELECT chdt.changeid "Change ID",
- chdt.title "Change Title",
- td.title "Task Title",
- sd.statusname "Task Status",
- pd.priorityname "Priority",
- own.first_name "Task Owner",
- longtodate(td.SCHEDULEDSTARTTIME) "Scheduled Start Time",
- longtodate(td.SCHEDULEDENDTIME) "Scheduled End Time",
- td.PER_OF_COMPLETION "Percentage of Completion",
- td.taskindex "Task Order",
- chargeTable.description as "Worklog description",
- chargeTable.ts_starttime as "Worklog start time",
- chargeTable.ts_endtime as "Worklog end time" FROM changedetails chdt
- LEFT JOIN changetotaskdetails chgtotd ON chdt.changeid = chgtotd.changeid
- LEFT JOIN taskdetails td ON chgtotd.taskid = td.taskid
- LEFT JOIN statusdefinition sd on td.statusid = sd.statusid
- LEFT JOIN prioritydefinition pd on pd.PRIORITYID = td.PRIORITYID
- LEFT JOIN aaauser own on td.ownerid = own.user_id
- LEFT JOIN ChangeToCharge changeCharge ON chdt.CHANGEID=changeCharge.CHANGEID
- LEFT JOIN ChargesTable chargeTable ON changeCharge.CHARGEID=chargeTable.CHARGEID left join change_Stagedefinition chg_Stg on chg_Stg.wfstageid = chdt.wfstageid where chg_Stg.name like '%Implementation%'
- order by chdt.changeid
Related Articles
Project Details (Milestone and Task Tracking) Query Report
Purpose This report extracts project-level details to provide a comprehensive overview of project performance and tracking. It helps monitor: Project progress Schedule adherence Cost performance Effort estimation vs actuals The report includes the ...
List of Services Template Report
Tthe below Query to list all service catalog in the system Database : PostgreSQL Server - Version: 10.5 SELECT serd.Name "Service Category", reqtl.templatename "Service catalog", sla.slaname "SLA" , sdo.name "Site", array_to_string(array_agg(CASE ...
Error while saving the email server details : Duplicate entry for key
This Problem may happen when the application is holding to different mail server details. 1- So go to Reports > New query report and execute the following query : select * from IncomingMailServer 2- If you see multiple mail server configured in this, ...
Change Postgres Password
Problem :- Need to change the default password for postgres. Solution :- 1- connect to the database. 2- execute the below steps. servicedesk=# \password Enter new password : Enter it again : 3- Once execute it, do the below. - Open ...
Time Elapsed not avavilble on the Matrix report || Known issue at 15130 build || SD-136533
Dear Team, Our client GCA is encountering an issue regarding the matrix reports, where the Time Elapsed column is not fetching and is not available as a selection when you try to create, so we referred to the support team, and after investigation, ...