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.7 2012/02/23 02:20:48 alsosa ship $ */
3:
4: TYPE MIME_SUBTYPE_EXT_MAP_T is table of varchar2(8) index by varchar2(255);
5: g_mime_subtype_ext_mappings MIME_SUBTYPE_EXT_MAP_T ;

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

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

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

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

Line 317: end WF_MAIL_UTIL;

313: g_mime_subtype_ext_mappings('vnd.openxmlformats-officedocument.presentationml.slide') := 'sldx';
314: g_mime_subtype_ext_mappings('vnd.ms-powerpoint.slide.macroEnabled.12') := 'sldm';
315:
316:
317: end WF_MAIL_UTIL;