DBA Data[Home] [Help]

APPS.AP_WEB_INFRASTRUCTURE_PKG dependencies on WF_CORE

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

150: 'ORG_ID');
151:
152: exception
153: when others then
154: if (wf_core.error_name = 'WFENG_ITEM_ATTR') then
155: -- ORG_ID item attribute doesn't exist, need to add it
156: WF_ENGINE.AddItemAttr(l_item_type, p_id, 'ORG_ID');
157: IF (AP_WEB_DB_EXPRPT_PKG.GetOrgIdByReportHeaderId(
158: p_id,

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

178: p_id,
179: 'SUBMIT_FROM_OIE');
180: exception
181: when others then
182: if (wf_core.error_name = 'WFENG_ITEM_ATTR') then
183: -- SUBMIT_FROM_OIE item attribute doesn't exist, need to add it
184: WF_ENGINE.AddItemAttr(l_item_type, p_id, 'SUBMIT_FROM_OIE');
185: else
186: raise;

Line 257: Wf_Core.Context('AP_WEB_INFRASTRUCTURE_PKG', 'JumpIntoFunction',

253: end if;
254:
255: EXCEPTION
256: WHEN OTHERS THEN
257: Wf_Core.Context('AP_WEB_INFRASTRUCTURE_PKG', 'JumpIntoFunction',
258: 'APEXP', to_char(p_id), to_char(0), l_debug_info);
259: raise;
260: END JumpIntoFunction;
261:

Line 274: Wf_Core.Context('AP_WEB_INFRASTRUCTURE_PKG', 'ICXGetOrgContext',

270: icx_sec.set_org_context(p_session_id, icx_call.decrypt(p_org_id));
271:
272: EXCEPTION
273: WHEN OTHERS THEN
274: Wf_Core.Context('AP_WEB_INFRASTRUCTURE_PKG', 'ICXGetOrgContext',
275: 'APEXP', null , to_char(0), l_debug_info);
276: raise;
277: END ICXSetOrgContext;
278: