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 2113: wf_core.CONTEXT('jtf_ec_workflow_pkg', 'create_esc_notif_subs', p_event.event_name, p_subscription_guid);

2109: x_notif_not_sent =>l_notif_not_sent,
2110: X_WF_PROCESS_ID =>l_wf_process_id);
2111:
2112: IF NOT(x_return_status = fnd_api.g_ret_sts_success) THEN
2113: wf_core.CONTEXT('jtf_ec_workflow_pkg', 'create_esc_notif_subs', p_event.event_name, p_subscription_guid);
2114: wf_event.seterrorinfo(p_event, 'WARNING');
2115: RETURN 'WARNING';
2116: END IF;
2117:

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

2117:
2118: RETURN 'SUCCESS';
2119: EXCEPTION
2120: WHEN OTHERS THEN
2121: wf_core.CONTEXT('jtf_ec_workflow_pkg', 'create_esc_notif_subs', p_event.event_name, p_subscription_guid);
2122: wf_event.seterrorinfo(p_event, 'WARNING');
2123: RETURN 'WARNING';
2124: END create_esc_notif_subs;
2125:

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

2170: x_notif_not_sent =>l_notif_not_sent,
2171: X_WF_PROCESS_ID =>l_wf_process_id);
2172:
2173: IF NOT(x_return_status = fnd_api.g_ret_sts_success) THEN
2174: wf_core.CONTEXT('jtf_ec_workflow_pkg', 'update_esc_notif_subs', p_event.event_name, p_subscription_guid);
2175: wf_event.seterrorinfo(p_event, 'WARNING');
2176: RETURN 'WARNING';
2177: END IF;
2178:

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

2178:
2179: RETURN 'SUCCESS';
2180: EXCEPTION
2181: WHEN OTHERS THEN
2182: wf_core.CONTEXT('jtf_ec_workflow_pkg', 'update_esc_notif_subs', p_event.event_name, p_subscription_guid);
2183: wf_event.seterrorinfo(p_event, 'WARNING');
2184: RETURN 'WARNING';
2185: END update_esc_notif_subs;
2186: