|
麻烦在你12.1.1上执行下面的查询:
select t.PROFILE_OPTION_ID ID,
z.USER_PROFILE_OPTION_NAME Profile,
nvl(v.PROFILE_OPTION_VALUE,'Replace with non-virtual URL') Value
from fnd_profile_options t, fnd_profile_option_values v, fnd_profile_options_tl z
where (v.PROFILE_OPTION_ID (+) = t.PROFILE_OPTION_ID)
and (z.PROFILE_OPTION_NAME = t.PROFILE_OPTION_NAME)
and z.PROFILE_OPTION_NAME = 'GUEST_USER_PWD';
TNND, 在打7303030的时候客户端重起了, 结果继续apply的时候就有下面的错误:
FAILED: file afgstusr.sql on worker 1
adworker.log报下面的错误:
ERROR: The Profile "Guest User Password" is not properly defined or
the data associated with this profile is out of configuration.
CORRECTIVE ACTION: Please contact Oracle Applications Support for
assistance in validating the configuration of this profile
The "GUEST_USER_PWD" in vault has been validated as : "GUEST/ORACLE"
DECLARE
*
ERROR at line 1:
ORA-06510: PL/SQL: unhandled user-defined exception
ORA-06512: at line 15
但是通过上面sql竟然已经没有这个参数的, 12.0.6是肯定有的. |
|