DBA Data[Home] [Help]

APPS.WIP_OSP_SHP_I_WF dependencies on FND_CONCURRENT

Line 1773: wait := FND_CONCURRENT.WAIT_FOR_REQUEST

1769: , itemkey
1770: , 'REQIMPORT_REQUEST_ID');
1771:
1772: IF l_parent_id <> 0 THEN
1773: wait := FND_CONCURRENT.WAIT_FOR_REQUEST
1774: (l_parent_id, 10, 3600, phase, status, devphase,
1775: devstatus, message);
1776:
1777: --PO: Release During ReqImport is launched inside REQIMPORT, we need to wait for it to finish before we continue in the workflow

Line 1782: from fnd_concurrent_requests

1778: IF(fnd_profile.value('REQIMP_AUTORELEASE') = 'Y') THEN
1779: BEGIN
1780: select request_id
1781: into l_child_id
1782: from fnd_concurrent_requests
1783: where parent_request_id = l_parent_id;
1784:
1785: IF l_child_id <> 0 THEN
1786: wait := FND_CONCURRENT.WAIT_FOR_REQUEST

Line 1786: wait := FND_CONCURRENT.WAIT_FOR_REQUEST

1782: from fnd_concurrent_requests
1783: where parent_request_id = l_parent_id;
1784:
1785: IF l_child_id <> 0 THEN
1786: wait := FND_CONCURRENT.WAIT_FOR_REQUEST
1787: (l_child_id, 10, 3600, phase, status, devphase,
1788: devstatus, message);
1789: END IF;
1790: EXCEPTION