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 1680: ln_req_status := fnd_concurrent.wait_for_request

1676: /*
1677: || ssumaith - for Iprocurement Bug#4281841 added the -1 in the above condition to ensure that the program does not
1678: || return in case of a call from Iprocurement.
1679: */
1680: ln_req_status := fnd_concurrent.wait_for_request
1681: (request_id => p_request_id,
1682: interval => 1,
1683: max_wait => 0,
1684: phase => lv_phase,

Line 1702: 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... ');

1698: EXCEPTION
1699: WHEN OTHERS THEN
1700: FND_FILE.put_line(FND_FILE.log, 'Phase : ' || lv_phase || 'Status : ' || lv_status || 'Dev Phase : ' || lv_dev_phase ||
1701: ' Dev Status : ' || lv_dev_status || ' Message : ' || lv_message );
1702: 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... ');
1703: RETURN ;
1704: END;
1705:
1706: