DBA Data[Home] [Help]

APPS.QPR_WKFL_UTIL dependencies on WF_NOTIFICATION

Line 399: Wf_notification.WriteToClob(p_blob, l_document);

395: l_document := l_document || get_table_cell(l_description) || '' || NL;
396: l_document := l_document ||'';
397: l_document := l_document ||'

';
398:
399: Wf_notification.WriteToClob(p_blob, l_document);
400:
401: l_document := '';
402:
403: fnd_currency.get_info(l_hdr_curr, l_std_precision, l_extnd_precision,

Line 439: Wf_notification.WriteToClob(p_blob, l_document);

435: l_document := l_document || get_table_header(fnd_message.get_String('QPR','QPR_MAR_PERC'))|| NL;
436: l_document := l_document || get_table_header(fnd_message.get_String('QPR','QPR_LINE_SCORE'))|| NL;
437: l_document := l_document || '';
438:
439: Wf_notification.WriteToClob(p_blob, l_document);
440: b_first := false;
441: l_document := '';
442: end if;
443:

Line 467: Wf_notification.WriteToClob(p_blob, l_document);

463: l_document := l_document || get_table_cell(t_line_det.MARGIN_PERC(i), true) || NL;
464: l_document := l_document || get_table_cell(t_line_det.LINE_SCORE(i), true) || NL;
465: l_document := l_document || '';
466:
467: Wf_notification.WriteToClob(p_blob, l_document);
468: end loop;
469:
470: t_line_det.LINE_NUM.delete;
471: t_line_det.PR_SEG_DESC.delete;

Line 493: Wf_notification.WriteToClob(p_blob, '');

489:
490: -- if line was never executed then b_first will be true
491: -- we need not add closing tag
492: if not b_first then
493: Wf_notification.WriteToClob(p_blob, '');
494: end if;
495: end form_deal_doc;
496:
497: procedure show_deal_details(document_id in varchar2,

Line 623: document_type := Wf_Notification.doc_html;

619: filename varchar2(300);
620: begin
621: lob_id := to_number(document_id);
622:
623: document_type := Wf_Notification.doc_html;
624:
625: form_deal_doc(lob_id, document);
626:
627: exception