DBA Data[Home] [Help]

APPS.FND_ADG_MANAGE dependencies on FND_ADG_UTILITY

Line 120: if ( fnd_adg_utility.is_session_simulated_standby and not p_is_true_standby )

116: -- We also use this flag to determine where we are in simulated standby,
117: -- to ensure that the real call [ under SV_* ] returns is_standby as
118: -- false but the originator [ on primary also ] returns true.
119:
120: if ( fnd_adg_utility.is_session_simulated_standby and not p_is_true_standby )
121: -- originator could be standby or primary.
122: -- only care when not true standby.
123: then
124:

Line 223: if ( fnd_adg_utility.is_session_simulated_standby and

219:
220: -- If simulated standby and we're really primary, need to
221: -- pass sid,serial, audsid to make sure slave is not a loopback.
222:
223: if ( fnd_adg_utility.is_session_simulated_standby and
224: fnd_adg_support.is_primary )
225: then
226: for f_rec in c2 loop
227:

Line 312: if ( not fnd_adg_utility.is_runtime_validate_timestamp )

308: and to_date(b.timestamp,'YYYY-MM-DD:HH24:MI:SS') >=
309: to_date(a.timestamp,'YYYY-MM-DD:HH24:MI:SS') ;
310: begin
311:
312: if ( not fnd_adg_utility.is_runtime_validate_timestamp )
313: then
314: return true;
315: end if;
316:

Line 366: fnd_adg_utility.get_rpc_debug(l_debug_rpc,l_debug_slave_rpc);

362: l_debug_rpc number;
363: l_debug_slave_rpc number;
364: begin
365:
366: fnd_adg_utility.get_rpc_debug(l_debug_rpc,l_debug_slave_rpc);
367:
368: if ( p_is_slave and bitand(l_debug_slave_rpc,C_DEBUG_TRACE) <> 0 )
369: then
370: execute immediate 'alter session set sql_trace true';

Line 486: G_SESS_MAX_COMMIT_WAIT_TIME := fnd_adg_utility.get_max_commit_wait_time;

482: begin
483:
484: G_SESS_MAX_COMMIT_WAIT_TIME := -1;
485:
486: G_SESS_MAX_COMMIT_WAIT_TIME := fnd_adg_utility.get_max_commit_wait_time;
487:
488: end;
489:
490: /*==========================================================================*/

Line 518: if ( G_SESS_MAX_COMMIT_WAIT_TIME > fnd_adg_utility.C_MAX_COMMIT_WAIT_TIME )

514: raise_rpc_exec_error(p_rpcDescriptor,'wait_for_commit_count',
515: 'commit count is -ve!');
516: end if;
517:
518: if ( G_SESS_MAX_COMMIT_WAIT_TIME > fnd_adg_utility.C_MAX_COMMIT_WAIT_TIME )
519: then
520: l_commit_wait_time := fnd_adg_utility.C_MAX_COMMIT_WAIT_TIME;
521: else
522: l_commit_wait_time := G_SESS_MAX_COMMIT_WAIT_TIME;

Line 520: l_commit_wait_time := fnd_adg_utility.C_MAX_COMMIT_WAIT_TIME;

516: end if;
517:
518: if ( G_SESS_MAX_COMMIT_WAIT_TIME > fnd_adg_utility.C_MAX_COMMIT_WAIT_TIME )
519: then
520: l_commit_wait_time := fnd_adg_utility.C_MAX_COMMIT_WAIT_TIME;
521: else
522: l_commit_wait_time := G_SESS_MAX_COMMIT_WAIT_TIME;
523: end if;
524: