cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Zacs
Engaged Sweeper III
Is there a way to run a report on the calendar to see what event types have been added?

1 ACCEPTED SOLUTION
Nick_VDB
Champion Sweeper III
Calendar event information is stored in the htblschedule table. We added an example report below.

Instructions for adding this report to your Lansweeper installation can be found here. If you are interested in building or modifying reports, we do recommend:
  • Reviewing some SQL tutorials, as the Lansweeper report builder is a standard SQL editor. If you know SQL, you know how to build Lansweeper reports as well. This seems like a good tutorial.
  • Making use of our database dictionary, which explains in great detail what each database table and field stores. More information on the dictionary can be found here.


Select Top 1000000 htblschedule.title,
htblscheduletypes.name As Type,
htblusers.name As CreateBy,
htblschedule.date,
htblschedule.enddate,
htblschedule.description
From htblschedule
Inner Join htblscheduletypes On htblscheduletypes.typeid = htblschedule.typeid
Inner Join htblusers On htblschedule.createdby = htblusers.userid
Order By htblschedule.date Desc

View solution in original post

1 REPLY 1
Nick_VDB
Champion Sweeper III
Calendar event information is stored in the htblschedule table. We added an example report below.

Instructions for adding this report to your Lansweeper installation can be found here. If you are interested in building or modifying reports, we do recommend:
  • Reviewing some SQL tutorials, as the Lansweeper report builder is a standard SQL editor. If you know SQL, you know how to build Lansweeper reports as well. This seems like a good tutorial.
  • Making use of our database dictionary, which explains in great detail what each database table and field stores. More information on the dictionary can be found here.


Select Top 1000000 htblschedule.title,
htblscheduletypes.name As Type,
htblusers.name As CreateBy,
htblschedule.date,
htblschedule.enddate,
htblschedule.description
From htblschedule
Inner Join htblscheduletypes On htblscheduletypes.typeid = htblschedule.typeid
Inner Join htblusers On htblschedule.createdby = htblusers.userid
Order By htblschedule.date Desc