Hi -
I've added some Javascript to the insert note dialog to cause the contact lookup to show up by default, to be followed by the regarding picklist to be dropped-down, to be followed by the completed time date time picker to show up. As crazy as that sounds, it is working. However, the second time I add a note and go through this process, I get the following error:
Execution of user code in the .NET Framework is disabled. Enable "clr enabled" configuration option.
Google searches have turned up that this is a database issue, but that doesn't seem right. Does anyone know how to fix this or have any suggestions?
Thanks in advance
Very strange! And if you remove your JavaScript and add two Notes in a row it DEFINITELY does not return the same error? Rule out whether its the Notes area or your JavaScript that is definitely causing the problem. Cannot see how JavaScript could cause that error message!
Cheers,
Nick
Do you have any Managed Code (.Net) running on your SQL Server?
That is where the CLR error seems to be coming from. A Store Procedure or a Function that is being invoked relies on Managed Code from an Assembly loaded into the DB, but the Server is not allowing its execution.
You could query your SLX DB (and maybe every related DB on your Server) to find out What Assemblies are installed and/or how it is being used (e.g. a Store Proc, Function, Trigger):
select * from sys.assemblies
select * from sys.assembly_modules