DBA Data[Home] [Help]

APPS.AHL_PRD_PRINT_PVT dependencies on UTL_HTTP

Line 4012: http_req utl_http.req;

4008: l_conc_request_id NUMBER;
4009: -- for invocation of asynchronous BPEL process AhlJCGHandlerService
4010: soap_request varchar2(3000);
4011: soap_respond varchar2(300);
4012: http_req utl_http.req;
4013: http_resp utl_http.resp;
4014: l_bpel_process_end_point varchar2(2000);
4015:
4016: CURSOR get_jcg_details(p_jcg_id IN NUMBER) IS

Line 4013: http_resp utl_http.resp;

4009: -- for invocation of asynchronous BPEL process AhlJCGHandlerService
4010: soap_request varchar2(3000);
4011: soap_respond varchar2(300);
4012: http_req utl_http.req;
4013: http_resp utl_http.resp;
4014: l_bpel_process_end_point varchar2(2000);
4015:
4016: CURSOR get_jcg_details(p_jcg_id IN NUMBER) IS
4017: SELECT JCG_REQUEST_ID,OBJECT_TYPE_CODE,OBJECT_ID,SPLIT_FLAG

Line 4183: http_req:= utl_http.begin_request( l_bpel_process_end_point, 'POST', 'HTTP/1.1');

4179:
4180: fnd_file.put_line(FND_FILE.LOG,'BPEL process Address:' || l_bpel_process_end_point);
4181: fnd_file.put_line(FND_FILE.LOG,'XML file name for printing: :' || l_xml_file_name);
4182: fnd_file.put_line(FND_FILE.LOG,'initiating BPEL process:' || to_char(sysdate, 'Month DD, YYYY HH24:MI:SS'));
4183: http_req:= utl_http.begin_request( l_bpel_process_end_point, 'POST', 'HTTP/1.1');
4184: utl_http.set_header(http_req, 'Content-Type', 'text/xml');
4185: utl_http.set_header(http_req, 'Content-Length', length(soap_request));
4186: utl_http.set_header(http_req, 'SOAPAction', 'initiate');
4187: utl_http.write_text(http_req, soap_request);

Line 4184: utl_http.set_header(http_req, 'Content-Type', 'text/xml');

4180: fnd_file.put_line(FND_FILE.LOG,'BPEL process Address:' || l_bpel_process_end_point);
4181: fnd_file.put_line(FND_FILE.LOG,'XML file name for printing: :' || l_xml_file_name);
4182: fnd_file.put_line(FND_FILE.LOG,'initiating BPEL process:' || to_char(sysdate, 'Month DD, YYYY HH24:MI:SS'));
4183: http_req:= utl_http.begin_request( l_bpel_process_end_point, 'POST', 'HTTP/1.1');
4184: utl_http.set_header(http_req, 'Content-Type', 'text/xml');
4185: utl_http.set_header(http_req, 'Content-Length', length(soap_request));
4186: utl_http.set_header(http_req, 'SOAPAction', 'initiate');
4187: utl_http.write_text(http_req, soap_request);
4188: http_resp:= utl_http.get_response(http_req);-- do not try to read response

Line 4185: utl_http.set_header(http_req, 'Content-Length', length(soap_request));

4181: fnd_file.put_line(FND_FILE.LOG,'XML file name for printing: :' || l_xml_file_name);
4182: fnd_file.put_line(FND_FILE.LOG,'initiating BPEL process:' || to_char(sysdate, 'Month DD, YYYY HH24:MI:SS'));
4183: http_req:= utl_http.begin_request( l_bpel_process_end_point, 'POST', 'HTTP/1.1');
4184: utl_http.set_header(http_req, 'Content-Type', 'text/xml');
4185: utl_http.set_header(http_req, 'Content-Length', length(soap_request));
4186: utl_http.set_header(http_req, 'SOAPAction', 'initiate');
4187: utl_http.write_text(http_req, soap_request);
4188: http_resp:= utl_http.get_response(http_req);-- do not try to read response
4189: utl_http.end_response(http_resp);

Line 4186: utl_http.set_header(http_req, 'SOAPAction', 'initiate');

4182: fnd_file.put_line(FND_FILE.LOG,'initiating BPEL process:' || to_char(sysdate, 'Month DD, YYYY HH24:MI:SS'));
4183: http_req:= utl_http.begin_request( l_bpel_process_end_point, 'POST', 'HTTP/1.1');
4184: utl_http.set_header(http_req, 'Content-Type', 'text/xml');
4185: utl_http.set_header(http_req, 'Content-Length', length(soap_request));
4186: utl_http.set_header(http_req, 'SOAPAction', 'initiate');
4187: utl_http.write_text(http_req, soap_request);
4188: http_resp:= utl_http.get_response(http_req);-- do not try to read response
4189: utl_http.end_response(http_resp);
4190: fnd_file.put_line(FND_FILE.LOG,'Done initiating BPEL process:' || to_char(sysdate, 'Month DD, YYYY HH24:MI:SS'));

Line 4187: utl_http.write_text(http_req, soap_request);

4183: http_req:= utl_http.begin_request( l_bpel_process_end_point, 'POST', 'HTTP/1.1');
4184: utl_http.set_header(http_req, 'Content-Type', 'text/xml');
4185: utl_http.set_header(http_req, 'Content-Length', length(soap_request));
4186: utl_http.set_header(http_req, 'SOAPAction', 'initiate');
4187: utl_http.write_text(http_req, soap_request);
4188: http_resp:= utl_http.get_response(http_req);-- do not try to read response
4189: utl_http.end_response(http_resp);
4190: fnd_file.put_line(FND_FILE.LOG,'Done initiating BPEL process:' || to_char(sysdate, 'Month DD, YYYY HH24:MI:SS'));
4191: fnd_file.new_line(FND_FILE.LOG,1);

Line 4188: http_resp:= utl_http.get_response(http_req);-- do not try to read response

4184: utl_http.set_header(http_req, 'Content-Type', 'text/xml');
4185: utl_http.set_header(http_req, 'Content-Length', length(soap_request));
4186: utl_http.set_header(http_req, 'SOAPAction', 'initiate');
4187: utl_http.write_text(http_req, soap_request);
4188: http_resp:= utl_http.get_response(http_req);-- do not try to read response
4189: utl_http.end_response(http_resp);
4190: fnd_file.put_line(FND_FILE.LOG,'Done initiating BPEL process:' || to_char(sysdate, 'Month DD, YYYY HH24:MI:SS'));
4191: fnd_file.new_line(FND_FILE.LOG,1);
4192: commit;

Line 4189: utl_http.end_response(http_resp);

4185: utl_http.set_header(http_req, 'Content-Length', length(soap_request));
4186: utl_http.set_header(http_req, 'SOAPAction', 'initiate');
4187: utl_http.write_text(http_req, soap_request);
4188: http_resp:= utl_http.get_response(http_req);-- do not try to read response
4189: utl_http.end_response(http_resp);
4190: fnd_file.put_line(FND_FILE.LOG,'Done initiating BPEL process:' || to_char(sysdate, 'Month DD, YYYY HH24:MI:SS'));
4191: fnd_file.new_line(FND_FILE.LOG,1);
4192: commit;
4193: fnd_file.put_line(FND_FILE.LOG,'End time:CC:' || to_char(sysdate, 'Month DD, YYYY HH24:MI:SS'));