DBA Data[Home] [Help]

APPS.JTF_EC_WORKFLOW_PKG dependencies on WF_CORE

Line 1720: wf_core.get_error(l_errname, l_errmsg, l_errstack);

1716: THEN
1717: ROLLBACK TO Start_Resc_Workflow;
1718:
1719: -- get the WF error stack
1720: wf_core.get_error(l_errname, l_errmsg, l_errstack);
1721:
1722: -- If no wf error look for a native Oracle error
1723:
1724: if ((l_errname is null) and (sqlcode <> 0)) then

Line 1818: wf_core.context (

1814: --
1815: exception
1816: when others then
1817:
1818: wf_core.context (
1819: G_PKG_NAME,
1820: 'Check_Event',
1821: itemtype,
1822: itemkey,

Line 1916: wf_core.context (

1912: --
1913: exception
1914: when others then
1915:
1916: wf_core.context (
1917: G_PKG_NAME,
1918: 'Set_Notif_Message',
1919: itemtype,
1920: itemkey,

Line 2004: wf_core.context (

2000: end if;
2001: --
2002: exception
2003: when others then
2004: wf_core.context (
2005: G_PKG_NAME,
2006: 'Set_Notif_Performer',
2007: itemtype,
2008: itemkey,

Line 2148: wf_core.CONTEXT('jtf_ec_workflow_pkg', 'create_esc_notif_subs', p_event.event_name, p_subscription_guid);

2144: x_notif_not_sent =>l_notif_not_sent,
2145: X_WF_PROCESS_ID =>l_wf_process_id);
2146:
2147: IF NOT(x_return_status = fnd_api.g_ret_sts_success) THEN
2148: wf_core.CONTEXT('jtf_ec_workflow_pkg', 'create_esc_notif_subs', p_event.event_name, p_subscription_guid);
2149: wf_event.seterrorinfo(p_event, 'WARNING');
2150: RETURN 'WARNING';
2151: END IF;
2152:

Line 2156: wf_core.CONTEXT('jtf_ec_workflow_pkg', 'create_esc_notif_subs', p_event.event_name, p_subscription_guid);

2152:
2153: RETURN 'SUCCESS';
2154: EXCEPTION
2155: WHEN OTHERS THEN
2156: wf_core.CONTEXT('jtf_ec_workflow_pkg', 'create_esc_notif_subs', p_event.event_name, p_subscription_guid);
2157: wf_event.seterrorinfo(p_event, 'WARNING');
2158: RETURN 'WARNING';
2159: END create_esc_notif_subs;
2160:

Line 2209: wf_core.CONTEXT('jtf_ec_workflow_pkg', 'update_esc_notif_subs', p_event.event_name, p_subscription_guid);

2205: x_notif_not_sent =>l_notif_not_sent,
2206: X_WF_PROCESS_ID =>l_wf_process_id);
2207:
2208: IF NOT(x_return_status = fnd_api.g_ret_sts_success) THEN
2209: wf_core.CONTEXT('jtf_ec_workflow_pkg', 'update_esc_notif_subs', p_event.event_name, p_subscription_guid);
2210: wf_event.seterrorinfo(p_event, 'WARNING');
2211: RETURN 'WARNING';
2212: END IF;
2213:

Line 2217: wf_core.CONTEXT('jtf_ec_workflow_pkg', 'update_esc_notif_subs', p_event.event_name, p_subscription_guid);

2213:
2214: RETURN 'SUCCESS';
2215: EXCEPTION
2216: WHEN OTHERS THEN
2217: wf_core.CONTEXT('jtf_ec_workflow_pkg', 'update_esc_notif_subs', p_event.event_name, p_subscription_guid);
2218: wf_event.seterrorinfo(p_event, 'WARNING');
2219: RETURN 'WARNING';
2220: END update_esc_notif_subs;
2221: