修改了配置文件,退出系统后,重新登录,点击网页菜单,加载条加载完后没任何反应,也不会打开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' ;

相关文章:

  • 2022-01-05
  • 2022-12-23
  • 2022-12-23
  • 2021-12-03
  • 2021-08-04
  • 2021-06-26
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-06-22
  • 2022-12-23
  • 2021-09-18
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案