Hi All,
Anyone came across this error when opening "Data Maintenance" option in Forms version 11.0.2201.20436.
All other options are opening with no error.
TIA
Hi All,
Anyone came across this error when opening "Data Maintenance" option in Forms version 11.0.2201.20436.
All other options are opening with no error.
TIA
Hello everyone,
I have exactly the same error ([LFF502-UnexpectedError]) when I try to access the “Data Maintenance” page.
In my case, on MSSQL, the compatibility level of the LF_Forms database was at level 100.
Here's the SQL code to display the levels of all your databases.
SELECT name AS DatabaseName, compatibility_level FROM sys.databases;
After setting it to level 120, everything went back to normal.
Here's the SQL code to change the level. (remember to indicate the name of your database)
ALTER DATABASE LFForm SET COMPATIBILITY_LEVEL = 120;
I hope I've provided you with some additional information.