DBA Data[Home] [Help]

APPS.JAI_RCV_TRX_PROCESSING_PKG dependencies on FND_CONCURRENT

Line 290: Called the fnd_concurrent.wait_for_request_id .

286: Forward porting of 11i BUG 5343848
287: Added two input parameters p_request_id,p_group_id to the procedure process_batch.
288: Added a parameter request_id Default null
289: If the request_id is not null
290: Called the fnd_concurrent.wait_for_request_id .
291: This call will wait till the RVCTP concurrent is completed.
292:
293: Added a parameter group_id Default null
294: If the group_id is not null

Line 2049: ln_req_status := fnd_concurrent.wait_for_request

2045: /*
2046: || ssumaith - for Iprocurement Bug#4281841 added the -1 in the above condition to ensure that the program does not
2047: || return in case of a call from Iprocurement.
2048: */
2049: ln_req_status := fnd_concurrent.wait_for_request
2050: (request_id => p_request_id,
2051: interval => 1,
2052: max_wait => 0,
2053: phase => lv_phase,

Line 2071: FND_FILE.put_line(FND_FILE.log, 'Error in the Call to The fnd_concurrent.wait_for_request for Request Id ' || p_request_id || '. Returning... ');

2067: EXCEPTION
2068: WHEN OTHERS THEN
2069: FND_FILE.put_line(FND_FILE.log, 'Phase : ' || lv_phase || 'Status : ' || lv_status || 'Dev Phase : ' || lv_dev_phase ||
2070: ' Dev Status : ' || lv_dev_status || ' Message : ' || lv_message );
2071: FND_FILE.put_line(FND_FILE.log, 'Error in the Call to The fnd_concurrent.wait_for_request for Request Id ' || p_request_id || '. Returning... ');
2072: RETURN ;
2073: END;
2074:
2075: