0 Attendance & Main Campus 2 Jeremy Turgeon posted 9 Years Ago We're having several problems with check-in and they seem to revolve around it not being associated with the main campus. All our check-in configurations work properly but when we want to view live check-in (checkin manager) or view past attendance (attendance analysis) it selects the main campus but doesn't display anything. I can manually uncheck main campus for attendance analysis and data will come up but not in the checkin manager. Is there some setting to specify what campus different check-in events should use? In SQL the demo site defaults to Campus = 1 but any new check-in configurations are listed as NULL.
Jeremy Turgeon 9 years ago When copying over the following, I get: Cannot insert the value NULL into column 'Name', table 'Rock.dbo.Campus'; column does not allow nulls.INSERT INTO [Campus] (Name, LocationId, IsSystem, Guid)SELECT Name, Id, 0, NEWID()FROM [dbo].[Location]WHERE Location.Id = 1
Arran France 9 years ago Are you sure your location Id is right? That error message suggests your location has no name which I'm certain your named location campus does?It might be worth taking a look through your location table or changing the last line to something likeWHERE Location.Name = 'Bel Air Campus'
Arran France 9 years ago Right you want the location ID listed in Named Locations, the campus where all your attendance is. Not the default Main Campus there.