I have a deluge function that looks like this
- void AddToRecents(int EmployeeId, int CaseId)
- {
- [...snip...]
- // no hits, insert new record
- rvId = insert into Recently_Viewed
- [
- Last_Accessed = now
- Employee = input.EmployeeId
- Case = input.CaseId
- ViewingUser = zoho.loginuser
- ];
- }
But every time I save it and go back, a line is inserted (line 11 below). That line, of course, is invalid and the function doesn't work. Does anyone know why and what to do about it?
- void AddToRecents(int EmployeeId, int CaseId)
- {
- [...snip...]
- // no hits, insert new record
- rvId = insert into Recently_Viewed
- [
- Last_Accessed = now
- Employee = input.EmployeeId
- Case = input.CaseId
- ViewingUser = zoho.loginuser
- null = zoho.loginuser
- ];
- }
Thanks.