DBA Data[Home] [Help]

APPS.FND_OAM_COLLECTION dependencies on FND_REQUEST

Line 2190: retval := fnd_request.set_repeat_options(repeat_interval => 10,

2186: -- Now initialize the environment for SYSADMIN
2187: fnd_global.apps_initialize(user_id, resp_id, appl_id);
2188:
2189: -- Set the repeat options
2190: retval := fnd_request.set_repeat_options(repeat_interval => 10,
2191: repeat_unit => 'MINUTES',
2192: repeat_type => 'END');
2193:
2194: -- Submit the request.

Line 2195: retcode := fnd_request.submit_request(application=>'FND', program=>'FNDOAMCOL');

2191: repeat_unit => 'MINUTES',
2192: repeat_type => 'END');
2193:
2194: -- Submit the request.
2195: retcode := fnd_request.submit_request(application=>'FND', program=>'FNDOAMCOL');
2196:
2197: end if;
2198: commit;
2199: EXCEPTION

Line 2324: retval := fnd_request.set_repeat_options(

2320: end;
2321: end loop;
2322:
2323: -- Set the repeat options
2324: retval := fnd_request.set_repeat_options(
2325: repeat_interval => p_repeat_interval,
2326: repeat_unit => p_repeat_interval_unit_code,
2327: repeat_type => 'END');
2328: -- Submit the request.

Line 2329: p_ret_code := fnd_request.submit_request(application=>'FND', program=>'FNDOAMCOL');

2325: repeat_interval => p_repeat_interval,
2326: repeat_unit => p_repeat_interval_unit_code,
2327: repeat_type => 'END');
2328: -- Submit the request.
2329: p_ret_code := fnd_request.submit_request(application=>'FND', program=>'FNDOAMCOL');
2330: p_ret_msg := ret_msg;
2331:
2332: -- check for any errors in the request submission
2333: if (p_ret_code = 0) then