The following script will help you launch an oracle e-business concurrent program from the commandline. DECLARE l_req_id NUMBER; BEGIN --< Fnd_Global.apps_initialize (user_id, resp_id, resp_application_id, 0);> fnd_global.apps_initialize(1134, 20634, 401, 0); l_req_id := fnd_request.submit_request(application = 'XXGIL', program = 'XXGIL_BOUNCE_APPACHE'); dbms_output.put_line('REQUEST_ID =' || l_req_id); COMMIT; END; |
Technical > Concurrent Programs >