DBA Data[Home] [Help]

APPS.WF_RENDER dependencies on WF_NOTIFICATION

Line 117: -- get the event from wf_notification_attributes

113:
114: -- get profile value for WF_SIG_TEXT_ONLY
115: l_sig_text := fnd_profile.value('WF_SIG_TEXT_ONLY');
116:
117: -- get the event from wf_notification_attributes
118: dbms_lob.createtemporary(l_data, TRUE, DBMS_LOB.Session);
119: l_event := Wf_Notification_Util.GetAttrEvent(l_nid, l_evt_attr);
120: l_temp := l_event.GetEventData();
121: l_amount := dbms_lob.getLength(l_temp);

Line 119: l_event := Wf_Notification_Util.GetAttrEvent(l_nid, l_evt_attr);

115: l_sig_text := fnd_profile.value('WF_SIG_TEXT_ONLY');
116:
117: -- get the event from wf_notification_attributes
118: dbms_lob.createtemporary(l_data, TRUE, DBMS_LOB.Session);
119: l_event := Wf_Notification_Util.GetAttrEvent(l_nid, l_evt_attr);
120: l_temp := l_event.GetEventData();
121: l_amount := dbms_lob.getLength(l_temp);
122: dbms_lob.copy(l_data, l_temp, l_amount, 1, 1);
123:

Line 149: if (display_type = WF_NOTIFICATION.doc_text) then

145: end if;
146: dbms_lob.append(document, l_data);
147: return;
148: end if;
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');

Line 177: if (display_type = WF_NOTIFICATION.doc_html) then

173: dbms_lob.append(document, l_data);
174: return;
175: end if;
176:
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');

Line 210: if (display_type = Wf_Notification.doc_html) then

206: -- parse the XML and display the content after replaing < and > with
207: -- appropriate references
208: if (l_data IS NOT NULL) then
209: xmlparser.parseClob(l_parser, l_data);
210: if (display_type = Wf_Notification.doc_html) then
211: DefaultRender(l_data);
212: end if;
213: dbms_lob.append(document, l_data);
214: end if;