DBA Data[Home] [Help]

APPS.WF_MAIL_UTIL dependencies on WF_CORE

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

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

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

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

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

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

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

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

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

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

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

288: end parseContentType;
289:
290: BEGIN
291: -- GLOBAL Package level variables that contain static data.
292: g_install := wf_core.translate('WF_INSTALL');
293: g_timezoneName := '';
294: g_gmt_offset := '';
295: g_ntfDocText := wf_notification.doc_text;
296: