5598: p_report_url IN VARCHAR2
5599: )
5600: RETURN CLOB
5601: IS
5602: vHTMLPieces utl_http.html_pieces;
5603: l_html_pieces VARCHAR2(32000);
5604: report_html CLOB;
5605: BEGIN
5606:
5603: l_html_pieces VARCHAR2(32000);
5604: report_html CLOB;
5605: BEGIN
5606:
5607: vHTMLPieces := utl_http.request_pieces(url => p_report_url,
5608: max_pieces => 32000);
5609:
5610: FOR i IN 1 .. vHTMLPieces.count loop
5611: l_html_pieces := vHTMLpieces(i);