DBA Data[Home] [Help]

APPS.AME_MIGRATE_PARALLEL_CONFIG dependencies on AME_EXCEPTIONS_LOG

Line 11: select ame_exceptions_log_s.nextval

7: ,p_errorcode integer default -20002
8: ) as
9: l_log_id integer;
10: begin
11: select ame_exceptions_log_s.nextval
12: into l_log_id
13: from dual;
14:
15: insert into ame_exceptions_log

Line 15: insert into ame_exceptions_log

11: select ame_exceptions_log_s.nextval
12: into l_log_id
13: from dual;
14:
15: insert into ame_exceptions_log
16: (log_id,package_name,routine_name,transaction_id,application_id,exception_number,exception_string)
17: values
18: (l_log_id,p_package,p_routine,'','',p_errorcode,to_char(sysdate, 'YYYY:MM:DD:HH24:MI:SS')|| p_message);
19: end log_message;