DBA Data[Home] [Help]

APPS.ECX_ERRORLOG dependencies on WF_CORE

Line 480: i_random_value := wf_core.random;

476: if(l_statementEnabled) then
477: ecx_debug.log(l_statement,'Raising the Customized event', i_event_name,
478: i_method_name);
479: end if;
480: i_random_value := wf_core.random;
481: i_event_key := i_event_key||i_random_value;
482: wf_event.raise(i_event_name, i_event_key, null, i_params);
483:
484: end if;

Line 494: wf_core.error_name := i_command;

490: else
491: i_command := 'ERROR';
492: end if;
493:
494: wf_core.error_name := i_command;
495: wf_core.error_message := i_text_val;
496:
497: if(l_statementEnabled) then
498: ecx_debug.log(l_statement,'i_command',i_command,i_method_name);

Line 495: wf_core.error_message := i_text_val;

491: i_command := 'ERROR';
492: end if;
493:
494: wf_core.error_name := i_command;
495: wf_core.error_message := i_text_val;
496:
497: if(l_statementEnabled) then
498: ecx_debug.log(l_statement,'i_command',i_command,i_method_name);
499: ecx_debug.log(l_statement,'i_errmsg',i_errmsg,i_method_name);

Line 516: ecx_debug.log(l_statement,'wf error_name',wf_core.error_name,

512: number_value => i_num_val,
513: date_value => i_date);
514:
515: if(l_statementEnabled) then
516: ecx_debug.log(l_statement,'wf error_name',wf_core.error_name,
517: i_method_name);
518: ecx_debug.log(l_statement,'wf error_message',wf_core.error_message,
519: i_method_name);
520: ecx_debug.log(l_statement,'ecx_errorlog.external_system Callback DONE ',

Line 518: ecx_debug.log(l_statement,'wf error_message',wf_core.error_message,

514:
515: if(l_statementEnabled) then
516: ecx_debug.log(l_statement,'wf error_name',wf_core.error_name,
517: i_method_name);
518: ecx_debug.log(l_statement,'wf error_message',wf_core.error_message,
519: i_method_name);
520: ecx_debug.log(l_statement,'ecx_errorlog.external_system Callback DONE ',
521: i_method_name);
522: end if;

Line 1820: if (wf_core.error_name = 'WFENG_ITEM_ATTR') then

1816: exception
1817: when others then
1818: -- If attr is not already defined, add a runtime attribute
1819: -- with this name, then try the set again.
1820: if (wf_core.error_name = 'WFENG_ITEM_ATTR') then
1821: wf_core.clear;
1822: wf_engine.AddItemAttr(itemtype => l_item_type,
1823: itemkey => l_item_key,
1824: aname => 'ECX_MSGID_ATTR',

Line 1821: wf_core.clear;

1817: when others then
1818: -- If attr is not already defined, add a runtime attribute
1819: -- with this name, then try the set again.
1820: if (wf_core.error_name = 'WFENG_ITEM_ATTR') then
1821: wf_core.clear;
1822: wf_engine.AddItemAttr(itemtype => l_item_type,
1823: itemkey => l_item_key,
1824: aname => 'ECX_MSGID_ATTR',
1825: text_value => l_out_msgid);

Line 1826: WF_CORE.Clear;

1822: wf_engine.AddItemAttr(itemtype => l_item_type,
1823: itemkey => l_item_key,
1824: aname => 'ECX_MSGID_ATTR',
1825: text_value => l_out_msgid);
1826: WF_CORE.Clear;
1827: else
1828: raise;
1829: end if;
1830: end;