DBA Data[Home] [Help]

APPS.OTA_ELIG_PROFILE_UTIL dependencies on FND_CONCURRENT_REQUESTS

Line 846: from fnd_concurrent_requests

842: function conc_parent_request_id(p_conc_request_id number) return number is
843:
844: cursor get_parent_request_id is
845: select decode(PARENT_REQUEST_ID,-1,REQUEST_ID,PARENT_REQUEST_ID)
846: from fnd_concurrent_requests
847: where REQUEST_ID = p_conc_request_id;
848:
849: l_parent_request_id number := -1;
850: begin

Line 1582: From fnd_concurrent_requests fnd

1578: l_actn varchar2(80);
1579: --
1580: Cursor c_slaves(p_request_id number) is
1581: Select null
1582: From fnd_concurrent_requests fnd
1583: Where fnd.phase_code <> 'C'
1584: And fnd.request_id = p_request_id;
1585: Begin
1586: hr_utility.set_location ('Entering '||l_proc,5);