DBA Data[Home] [Help]

APPS.WF_MAIL_UTIL dependencies on WF_MAIL_UTIL

Line 1: package body WF_MAIL_UTIL as

1: package body WF_MAIL_UTIL as
2: /* $Header: wfmlutb.pls 120.5 2006/04/17 07:06:06 sstomar ship $ */
3:
4: -- EncodeBLOB
5: -- Receives a BLOB input and encodes it to Base64 CLOB

Line 41: wf_core.context('WF_MAIL_UTIL', 'EncodeBLOB');

37: dbms_lob.WriteAppend(pODoc, 1, wf_core.newline);
38:
39: exception
40: when others then
41: wf_core.context('WF_MAIL_UTIL', 'EncodeBLOB');
42: raise;
43: end EncodeBLOB;
44:
45: -- DecodeBLOB

Line 83: wf_core.context('WF_MAIL_UTIL','DecodeBLOB');

79: end loop;
80:
81: exception
82: when others then
83: wf_core.context('WF_MAIL_UTIL','DecodeBLOB');
84: raise;
85: end DecodeBLOB;
86:
87: -- getTimezone (PRIVATE)

Line 297: end WF_MAIL_UTIL;

293: g_timezoneName := '';
294: g_gmt_offset := '';
295: g_ntfDocText := wf_notification.doc_text;
296:
297: end WF_MAIL_UTIL;