
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-07-2018 08:35 AM
Is there a possibility to create a time chart to be used in the time chart widget?
I noticed this is not working the same as with the chart report widget for which you can create a report which name starts with Chart:
This doesn't work for time charts (I created a report with the name starting with Time chart: but that didn't work).
how can I create a time chart myself?
I noticed this is not working the same as with the chart report widget for which you can create a report which name starts with Chart:
This doesn't work for time charts (I created a report with the name starting with Time chart: but that didn't work).
how can I create a time chart myself?
Labels:
- Labels:
-
Report Center
2 REPLIES 2
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-15-2024 11:53 AM
When I will can use my own custom Time Chart?

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-11-2018 02:36 PM
Unfortunately, there is no built-in option to create a time chart. However, with some SQL knowledge it is possible to get in into your Lansweeper installation.
All charts are stored in tsysDBobjects in your Lansweeper database. Using the following query, you can view all the chart reports in the database.
I recommend creating a backup of your Lansweeper installation before executing any scripts. Backup instructions can be found here: https://www.lansweeper.com/kb/94/backing-up-your-installation.html
To insert a report into Lansweeper you can run the following insert script after modifying the highlighted fields:
All charts are stored in tsysDBobjects in your Lansweeper database. Using the following query, you can view all the chart reports in the database.
Select * from tsysDBobjectsIf you have a time chart that you want to add, you will have to use an insert script to insert the report into the database.
Where tsysDBobjects.DBobjName Like '%TimeChart%';
I recommend creating a backup of your Lansweeper installation before executing any scripts. Backup instructions can be found here: https://www.lansweeper.com/kb/94/backing-up-your-installation.html
To insert a report into Lansweeper you can run the following insert script after modifying the highlighted fields:
Insert into tsysDBobjects (DBobjName,Query, Comment, DisplayName, HDOverseerOnly)
Values ('web50reptimechartYourReportName ','Report Query here ', NULL,'Time Chart:Report Name Here ',0)
