DBA Data[Home] [Help]

APPS.BIS_RG_SEND_NOTIFICATIONS_PVT dependencies on BIS_PMV_UTIL

Line 209: l_html_pieces BIS_PMV_UTIL.lob_varchar_pieces;

205: IS
206: l_Document VARCHAR2(32000);
207: l_img_html VARCHAR2(32000);
208: --l_html_pieces UTL_HTTP.HTML_PIECES;
209: l_html_pieces BIS_PMV_UTIL.lob_varchar_pieces;
210: l_count NUMBER;
211: l_length NUMBER := 1;
212:
213: BEGIN

Line 224: l_html_pieces := BIS_PMV_UTIL.readfndlobs(document_id);

220: from fnd_lobs
221: where file_id = document_id;
222:
223: if l_count > 0 then
224: l_html_pieces := BIS_PMV_UTIL.readfndlobs(document_id);
225: FOR l_count IN 1..l_html_pieces.COUNT LOOP
226: -- mdamle 05/16/01 - Changing document to clob - no longer a 32K limitation
227: l_document := l_html_pieces(l_count);
228: wf_notification.writetoclob(document, l_document);