I have this new project and for first time i am using oracle with llbgen now I have having a problem on saviong a record i getting the error
ORA-00936: missing expression
this is my save code
mysickline.IsNew = True
mysickline.PersonalId = userId
mysickline.SickleaveType = leave
mysickline.StartDate = start
mysickline.EndDate = endDt
mysickline.Reason = reasonStr
mysickline.SubmittedBy = subBy
mysickline.Comments = comms
mysickline.AuthUser = ntid()
If leave <> "LTS" Then
mysickline.LtsMoveDate = lts
End If
mysickline.LastModified = Convert.ToDateTime(System.DateTime.Now())
mysickline.LastModifiedBy = ntid()
mysickline.WebDate = Convert.ToDateTime(System.DateTime.Now())
mysickline.Save()