DBA Data[Home] [Help]

APPS.FND_ADG_UTILITY dependencies on FND_ADG_SUPPORT

Line 1361: if ( fnd_adg_support.is_true_standby )

1357: -- Cannot do DML if on standby - but we can't just check
1358: -- is_standby as in simulation mode it will return true on primary.
1359: -- Use is_true_standby
1360:
1361: if ( fnd_adg_support.is_true_standby )
1362: then
1363: return;
1364: end if;
1365:

Line 1486: fnd_adg_support.handle_standby_error

1482: if ( l_adg_violations > get_simulation_error_threshold )
1483: then
1484: if ( p_logoff )
1485: then
1486: fnd_adg_support.handle_standby_error
1487: (l_request_id,true,p_logoff,
1488: l_adg_violations - get_simulation_error_threshold);
1489: else
1490: fnd_adg_support.handle_standby_error

Line 1490: fnd_adg_support.handle_standby_error

1486: fnd_adg_support.handle_standby_error
1487: (l_request_id,true,p_logoff,
1488: l_adg_violations - get_simulation_error_threshold);
1489: else
1490: fnd_adg_support.handle_standby_error
1491: (p_application_id,p_concurrent_program_id,true,p_logoff,
1492: l_adg_violations - get_simulation_error_threshold);
1493: end if;
1494: end if;

Line 2526: -- Finally one extra case - FND_ADG_SUPPORT - which has a

2522: end if;
2523:
2524: fnd_adg_object.compile_rpc_dependents;
2525:
2526: -- Finally one extra case - FND_ADG_SUPPORT - which has a
2527: -- compile directive dependency.
2528:
2529: execute immediate 'alter package FND_ADG_SUPPORT compile body';
2530:

Line 2529: execute immediate 'alter package FND_ADG_SUPPORT compile body';

2525:
2526: -- Finally one extra case - FND_ADG_SUPPORT - which has a
2527: -- compile directive dependency.
2528:
2529: execute immediate 'alter package FND_ADG_SUPPORT compile body';
2530:
2531: end;
2532:
2533: /*==========================================================================*/

Line 2606: fnd_adg_support.handle_concurrent_program

2602: l_code := G_CONC_PROGRAM_ACCESS_CODE; -- use global as get_ method
2603: -- resets code - i.e. use once by
2604: -- client.
2605:
2606: fnd_adg_support.handle_concurrent_program
2607: (l_code,
2608: p_application_id ,
2609: p_concurrent_program_id ,
2610: p_has_run_on_primary ,