DBA Data[Home] [Help]

APPS.FA_ASSET_TRACE_PUB dependencies on FND_CONCURRENT

Line 78: while (FND_CONCURRENT.CHILDREN_DONE(Parent_Request_ID => l_request_id,

74: FOR i IN g_req_tbl.first .. g_req_tbl.last LOOP
75: l_request_id := g_req_tbl(i);
76: if l_request_id not in (0,-1) then
77: log(l_calling_fn,'Waiting for request '||to_char(l_request_id));
78: while (FND_CONCURRENT.CHILDREN_DONE(Parent_Request_ID => l_request_id,
79: Interval => 20,
80: Max_Wait => 120) = FALSE) loop
81: LOG(l_calling_fn, 'Waiting for all sub-requests to complete.');
82: end loop; --children_done

Line 85: l_req_status := FND_CONCURRENT.wait_for_request(

81: LOG(l_calling_fn, 'Waiting for all sub-requests to complete.');
82: end loop; --children_done
83:
84: LOOP
85: l_req_status := FND_CONCURRENT.wait_for_request(
86: request_id => l_request_id, interval => 60,
87: max_wait => 60, phase => l_phase,
88: status => l_status, dev_phase => l_dev_phase,
89: dev_status => l_dev_status, message => l_message);