Oracle EBS R12.1.3 , Oracle 11.2.0.3
系统是从 EBS 11i + Oracle 10.2.0.4 升级而来的, 在切换某个职责时候报错如下:
Oracle error -6550: ORA-06550 : line 1, column 7:
PLS-00306: wrong number or types of arguments in call to 'INIT'
ORA-06550 : line 1, column 7:
PL/SQL: Statement ignored
has been detected in fnd_global.initialize[fnd_init_sql].
解决方法如下:
delete from apps.fnd_profile_option_values where
profile_option_id = (
select profile_option_id from apps.fnd_profile_options
where profile_option_name = 'FND_INIT_SQL' );
参考:Doc ID 577753.1
本文转自ITPUB博客tolywang的博客,原文链接:ORA-06550 ,has been detected in fnd_global.initialize[fnd_init_sql].,如需转载请自行联系原博主。