Initialization SQL Statement – Custom 配置错误,导致无法加载FORM

修改了配置文件,退出系统后,重新登录,点击网页菜单,加载条加载完后没任何反应,也不会打开Java插件,更不会打开FORM.

想想是刚修改完配置文件,就发生此等故障,就由此入手吧。

System  > profile

Initialization SQL Statement - Custom,输入 begin null; end

-- begin null; end 是错误的,正确语句应该是: begin null; end;

找到相关的表,直接修改为null
SELECT * FROM applsys.fnd_profile_option_values where profile_option_id = '3157';


update applsys.fnd_profile_option_values
set profile_option_value = null
where profile_option_id = '3157' ;

原文地址:https://www.cnblogs.com/quanweiru/p/3010401.html