DBA Data[Home] [Help]

APPS.WF_FWKMON dependencies on WF_CORE

Line 23: 'LOOKUP', wf_core.activity_result(ma.format, na.text_value),

19: SELECT decode(ma.type,
20: 'NUMBER', to_char(na.number_value),
21: 'DATE', to_char(na.date_value,
22: nvl(ma.format, 'DD/MON/YYYY HH24:MI:SS')),
23: 'LOOKUP', wf_core.activity_result(ma.format, na.text_value),
24: na.text_value) result
25: FROM wf_notification_attributes na,
26: wf_message_attributes_vl ma,
27: wf_notifications n

Line 262: l_adminRole := wf_core.translate('WF_ADMIN_ROLE');

258: l_isAdmin varchar2(1) := 'N';
259:
260: BEGIN
261:
262: l_adminRole := wf_core.translate('WF_ADMIN_ROLE');
263:
264: if (l_adminRole = '*') then
265:
266: l_isAdmin := 'Y';

Line 571: wf_core.context('wf_fwkmon', 'GetNtfResponderName', to_char(p_notification_id));

567: exception
568: when no_data_found then
569: return null;
570: when others then
571: wf_core.context('wf_fwkmon', 'GetNtfResponderName', to_char(p_notification_id));
572: raise;
573: end GetNtfResponderName;
574:
575: end wf_fwkmon;