DBA Data[Home] [Help]

APPS.HZ_DQM_SYNC dependencies on FND_CONC_GLOBAL

Line 2139: req_data := fnd_conc_global.request_data;

2135: log ('Entering procedure sync_parties');
2136: log ('p_num_of_workers = ' || p_num_of_workers);
2137: log('p_indexes_only = '|| p_indexes_only);
2138:
2139: req_data := fnd_conc_global.request_data;
2140:
2141: log(' req_data = ' || req_data);
2142:
2143: l_indexes_only := nvl(p_indexes_only, 'N');

Line 2322: fnd_conc_global.set_req_globals(conc_status => 'PAUSED',

2318: END IF;
2319: END LOOP;
2320:
2321: -- be in paused status until all the concurrent requests submitted have completed
2322: fnd_conc_global.set_req_globals(conc_status => 'PAUSED',
2323: request_data => 'END') ;
2324: err := 'Concurrent Workers submitted.';
2325: retcode := 0;
2326:

Line 2891: req_data := fnd_conc_global.request_data;

2887: l_workers_completed boolean ;
2888:
2889: BEGIN
2890: -- req_data will be null the first time, by default
2891: req_data := fnd_conc_global.request_data;
2892:
2893: -- First Phase
2894: -- Submit the Parallel Sync Index Child Concurrent Progarm for each one of the indexes
2895: IF (req_data IS NULL)

Line 2942: fnd_conc_global.set_req_globals(conc_status => 'PAUSED', request_data => 'END') ;

2938: EXIT when l_sub_requests(i) = 0;
2939: END LOOP;
2940:
2941: -- This will make sure that the parent is waits until the above requests complete
2942: fnd_conc_global.set_req_globals(conc_status => 'PAUSED', request_data => 'END') ;
2943: return;
2944:
2945:
2946: END IF;