DBA Data[Home] [Help]

APPS.AME_UTIL dependencies on AME_EXCEPTIONS_LOG

Line 1519: select ame_exceptions_log_s.nextval into tempLogId from dual;

1515: attributeIdOut := tempAttributeId;
1516: exception
1517: when others then
1518: attributeIdOut := null;
1519: select ame_exceptions_log_s.nextval into tempLogId from dual;
1520: autonomousLog(logIdIn => tempLogId,
1521: packageNameIn => 'ame_util',
1522: routineNameIn => 'getAttributeId',
1523: exceptionNumberIn => sqlcode,

Line 1548: select ame_exceptions_log_s.nextval into tempLogId from dual;

1544: queryStringOut := temQueryString;
1545: exception
1546: when others then
1547: queryStringOut := null;
1548: select ame_exceptions_log_s.nextval into tempLogId from dual;
1549: autonomousLog(logIdIn => tempLogId,
1550: packageNameIn => 'ame_util',
1551: routineNameIn => 'getQueryString',
1552: exceptionNumberIn => sqlcode,

Line 1576: select ame_exceptions_log_s.nextval into tempLogId from dual;

1572: isSaticUsage := tempIsSatic;
1573: exception
1574: when others then
1575: isSaticUsage := null;
1576: select ame_exceptions_log_s.nextval into tempLogId from dual;
1577: autonomousLog(logIdIn => tempLogId,
1578: packageNameIn => 'ame_util',
1579: routineNameIn => 'checkSaticUsage',
1580: exceptionNumberIn => sqlcode,

Line 2273: insert into ame_exceptions_log(

2269: transactionIdIn in varchar2 default null,
2270: applicationIdIn in integer default null) as
2271: pragma autonomous_transaction;
2272: begin
2273: insert into ame_exceptions_log(
2274: log_id,
2275: package_name,
2276: routine_name,
2277: transaction_id,

Line 3646: insert into ame_exceptions_log(

3642: exceptionStringIn in varchar2,
3643: transactionIdIn in varchar2 default null,
3644: applicationIdIn in integer default null) as
3645: begin
3646: insert into ame_exceptions_log(
3647: log_id,
3648: package_name,
3649: routine_name,
3650: transaction_id,

Line 4055: select ame_exceptions_log_s.nextval into logId from dual;

4051: end;
4052: distributedEnvironment := getConfigVar(variableNameIn => ame_util.distEnvConfigVar);
4053: useWorkflow := ame_util.useWorkflow(transactionIdIn => transactionId,
4054: applicationIdIn => applicationId);
4055: select ame_exceptions_log_s.nextval into logId from dual;
4056: /*
4057: Log the following exceptions locally:
4058: 1. Local (pseudo-runtime, test) transactions (from the test tab).
4059: 2. Transactions not using Workflow.