DBA Data[Home] [Help]

APPS.WF_MAIL_UTIL dependencies on WF_CORE

Line 40: dbms_lob.WriteAppend(pODoc, 1, wf_core.newline);

36: cBuffer := utl_raw.cast_to_varchar2(base64Raw);
37: dbms_lob.writeAppend(pODoc, length(cBuffer), cBuffer);
38: position := position + chunksize;
39: end loop;
40: dbms_lob.WriteAppend(pODoc, 1, wf_core.newline);
41:
42: exception
43: when others then
44: wf_core.context('WF_MAIL_UTIL', 'EncodeBLOB');

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 113: wf_core.token('TIMEZONE', g_gmt_offset);

109: g_gmt_offset := getGMTDeviation(g_timezoneName);
110:
111: if length(g_gmt_offset) > 0 then
112: if contentType = g_ntfDocText then
113: wf_core.token('TIMEZONE', g_gmt_offset);
114: timezone := wf_core.Substitute('WFTKN','WFNTF_TIMEZONE');
115: else
116: wf_core.token('TIMEZONE', ''||
117: g_gmt_offset||'
');

Line 114: timezone := wf_core.Substitute('WFTKN','WFNTF_TIMEZONE');

110:
111: if length(g_gmt_offset) > 0 then
112: if contentType = g_ntfDocText then
113: wf_core.token('TIMEZONE', g_gmt_offset);
114: timezone := wf_core.Substitute('WFTKN','WFNTF_TIMEZONE');
115: else
116: wf_core.token('TIMEZONE', ''||
117: g_gmt_offset||'
');
118: timezone := wf_core.Substitute('WFTKN','WFNTF_TIMEZONE');

Line 116: wf_core.token('TIMEZONE', ''||

112: if contentType = g_ntfDocText then
113: wf_core.token('TIMEZONE', g_gmt_offset);
114: timezone := wf_core.Substitute('WFTKN','WFNTF_TIMEZONE');
115: else
116: wf_core.token('TIMEZONE', ''||
117: g_gmt_offset||'');
118: timezone := wf_core.Substitute('WFTKN','WFNTF_TIMEZONE');
119: end if;
120: else

Line 118: timezone := wf_core.Substitute('WFTKN','WFNTF_TIMEZONE');

114: timezone := wf_core.Substitute('WFTKN','WFNTF_TIMEZONE');
115: else
116: wf_core.token('TIMEZONE', ''||
117: g_gmt_offset||'
');
118: timezone := wf_core.Substitute('WFTKN','WFNTF_TIMEZONE');
119: end if;
120: else
121: timezone := '';
122: end if;

Line 276: g_install := wf_core.translate('WF_INSTALL');

272: end parseContentType;
273:
274: BEGIN
275: -- GLOBAL Package level variables that contain static data.
276: g_install := wf_core.translate('WF_INSTALL');
277: g_timezoneName := '';
278: g_gmt_offset := '';
279: g_ntfDocText := wf_notification.doc_text;
280: