Enable Print Jobsheet for all Status tickets

Enable Print Jobsheet for all Status tickets

 
By default Print Jobsheet option is available for only Closed status tickets from Request's detailed view-> Actions.

If you want to enable the same for all statuses, then you need to update an entry in the Globalconfig table.

Make sure to take at least a trimmed Backup of the application (or a SQL Backup or a Server Snapshot) before performing the update operation.

Connect to the database and execute the below query,

 update globalconfig set paramvalue = 'true' where category like 'jobsheet' and parameter like '%Allow_AnyStatus%';

Restart the application for the changes to be effective.

Now navigate to any NOT closed request and check under Actions, you will see the Print Timesheet option.

                  New to ADSelfService Plus?

                    • Related Articles

                    • Query to show Timesheet details (MSSQL & PGSQL)

                      Tested in build PGSQL (14300) and MSSQL (14306) MSSQL: select ts.id "TimeSheet ID", sdu.firstname "Technician Name", LONGTODATE(ts.starttime) "Timesheet Start Date", LONGTODATE(ts.endtime) "Timesheet End Date", CONVERT(varchar, ((ts.totaltime)/1000) ...
                    • Status Change on new reply.

                      The status do not automatically switch from "OnHold" to "Open" when a response from the Requester arrives. Enable below configuration to automate the same. Go to Admin >> Self Service Portal >> Enable the below option   Also, it does not switch from ...
                    • Forgot password option missing

                      If Forgot password option missing in the login page, then please check the below option under Admin->Self-Service Portal Settings. If this option is disabled, then the Forgot password option will not be visible in the login page. Allow users to login ...
                    • Blank screen while opening timesheet

                      Issue : While opening a timesheet, the page appears blank like the below screenshot Cause : The issue occurs if the date format is set to dd.mm.yyyy Solution : Please login as the user, click on the user badge on the top right corner, click on ...
                    • No Managed Connections. Steps to enable Read Committed Snapshot Isolation- MSSQL

                      Enabling Read Committed Snapshot Isolation in MS SQL server In MS SQL environments enabling 'Read committed Snapshot isolation (RCSI)' is the first step in handling application server performance and crash issues. What is RCSI?   Since databases ...