DBA Data[Home] [Help]

APPS.WF_RENDER dependencies on WF_CORE

Line 133: wf_core.raise('WFE_DEFAULT_RENDER');

129: -- for text only profile
130: if (l_sig_text = 'Y') then
131: if (l_txslt_name is NULL) then
132: -- render XML content without transformation
133: wf_core.raise('WFE_DEFAULT_RENDER');
134: end if;
135: ecx_standard.perform_xslt_transformation
136: (I_XML_FILE => l_data,
137: I_XSLT_FILE_NAME => l_txslt_name,

Line 144: wf_core.raise('WFE_DEFAULT_RENDER');

140: I_RETCODE => l_retcode,
141: I_RETMSG => l_retmsg);
142: if (l_retcode > 0) then
143: -- render XML content without transformation
144: wf_core.raise('WFE_DEFAULT_RENDER');
145: end if;
146: dbms_lob.append(document, l_data);
147: return;
148: end if;

Line 153: wf_core.raise('WFE_DEFAULT_RENDER');

149: if (display_type = WF_NOTIFICATION.doc_text) then
150: if (l_txslt_name is NULL) then
151: if (l_hxslt_name is NULL) then
152: -- render XML content without transformation
153: wf_core.raise('WFE_DEFAULT_RENDER');
154: else
155: -- use html stylesheet if no text style sheet available
156: l_txslt_name := l_hxslt_name;
157: l_txslt_ver := l_hxslt_ver;

Line 171: wf_core.raise('WFE_DEFAULT_RENDER');

167: I_RETCODE => l_retcode,
168: I_RETMSG => l_retmsg);
169: if (l_retcode > 0) then
170: -- render XML content without transformation
171: wf_core.raise('WFE_DEFAULT_RENDER');
172: end if;
173: dbms_lob.append(document, l_data);
174: return;
175: end if;

Line 181: wf_core.raise('WFE_DEFAULT_RENDER');

177: if (display_type = WF_NOTIFICATION.doc_html) then
178: if (l_hxslt_name is NULL) then
179: if( l_txslt_name is NULL) then
180: -- render XML content without transformation
181: wf_core.raise('WFE_DEFAULT_RENDER');
182: else
183: -- use text stylesheet if no html style sheet available
184: l_hxslt_name := l_txslt_name;
185: l_hxslt_ver := l_txslt_ver;

Line 199: wf_core.raise('WFE_DEFAULT_RENDER');

195: I_RETCODE => l_retcode,
196: I_RETMSG => l_retmsg);
197: if (l_retcode > 0) then
198: -- render XML content without transformation
199: wf_core.raise('WFE_DEFAULT_RENDER');
200: end if;
201: dbms_lob.append(document, l_data);
202: return;
203: end if;