DBA Data[Home] [Help]

APPS.WF_MAIL dependencies on WF_CORE

Line 48: g_newLine varchar2(1) := wf_core.newLine;

44:
45:
46:
47: -- Global variable to hold a static stylesheet definition
48: g_newLine varchar2(1) := wf_core.newLine;
49: g_template_style varchar2(32000) :=
50: 'body,html,td, p { top-margin:0; padding:0; font-family:Tahoma; font-size:9pt; color:#3c3c3c; }'||g_newline||
51: 'H2.OraHeader{ color:#343434; padding:0px 0px 0px 0px; font-family:Arial; font-weight:bold; font-size:9pt; vertical-align:middle; }'||g_newline||
52: '.OraHeaderSub,.x3w {margin-bottom:0px;color:#426ca7;font-family:Arial;font-weight:bold;font-size:92%;vertical-align:middle;border-bottom:1px solid #aabed5;margin:5px 0px 0px 0px}'||g_newline||

Line 96: -- error name (null if error is in WF_CORE)

92: -- Handle error.
93: -- IN
94: -- notification id
95: -- status
96: -- error name (null if error is in WF_CORE)
97: procedure UpdateStatus(
98: nid in number,
99: status in varchar2,
100: error_name in varchar2 default null);

Line 110: -- error name (null if error is in WF_CORE)

106: -- nid notification id
107: -- status Status to set the notification
108: -- autoclose Flag to specify whether the notification should be closed
109: -- automitically
110: -- error name (null if error is in WF_CORE)
111: -- external_error Any error message that can not be reflected or captured
112: -- through the wf_core.context facilty ie Java.
113: procedure UpdateStatus2(
114: nid in number,

Line 112: -- through the wf_core.context facilty ie Java.

108: -- autoclose Flag to specify whether the notification should be closed
109: -- automitically
110: -- error name (null if error is in WF_CORE)
111: -- external_error Any error message that can not be reflected or captured
112: -- through the wf_core.context facilty ie Java.
113: procedure UpdateStatus2(
114: nid in number,
115: status in varchar2,
116: autoclose in varchar2,

Line 130: -- error name (null if error is in WF_CORE)

126: -- HandleSendError
127: -- Call any callback in error mode if error occurs in sending mail.
128: -- IN
129: -- notification id
130: -- error name (null if error is in WF_CORE)
131: -- external_error Any error message that can not be reflected or captured
132: -- through the wf_core.context facilty ie Java.
133: procedure HandleSendError(
134: nid in number,

Line 132: -- through the wf_core.context facilty ie Java.

128: -- IN
129: -- notification id
130: -- error name (null if error is in WF_CORE)
131: -- external_error Any error message that can not be reflected or captured
132: -- through the wf_core.context facilty ie Java.
133: procedure HandleSendError(
134: nid in number,
135: status in varchar2,
136: error_name in varchar2 default null,