DBA Data[Home] [Help]

APPS.ECX_ERRORLOG dependencies on WF_ENGINE

Line 508: wf_engine.CB(command => i_command,

504: ecx_debug.log(l_statement,'i_item_key',i_item_key,i_method_name);
505: ecx_debug.log(l_statement,'i_activity_id',i_activity_id,i_method_name);
506: end if;
507:
508: wf_engine.CB(command => i_command,
509: context => i_item_type || ':' || i_item_key ||
510: ':' || i_activity_id,
511: text_value => i_err_code,
512: number_value => i_num_val,

Line 1815: wf_engine.SetItemAttrText(l_item_type, l_item_key, 'ECX_MSGID_ATTR', l_out_msgid);

1811:
1812: if (UPPER(l_direction) = 'OUT') then
1813: if (l_activity_id is not null) then
1814: begin
1815: wf_engine.SetItemAttrText(l_item_type, l_item_key, 'ECX_MSGID_ATTR', l_out_msgid);
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.

Line 1822: wf_engine.AddItemAttr(itemtype => l_item_type,

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);
1826: WF_CORE.Clear;