DBA Data[Home] [Help]

APPS.HZ_LOCATION_SERVICES_PUB dependencies on WF_CORE

Line 2125: Wf_Core.Context('ECX_RULE', 'GENERATEXML', p_event.getEventName(), p_subscription_guid);

2121: RETURN 'SUCCESS';
2122: EXCEPTION
2123: WHEN FND_API.G_EXC_ERROR THEN
2124: log('Expected Error: Aborting Location Service for this batch');
2125: Wf_Core.Context('ECX_RULE', 'GENERATEXML', p_event.getEventName(), p_subscription_guid);
2126: WF_EVENT.setErrorInfo(p_event, 'ERROR');
2127: --return 'ERROR';
2128: RAISE FND_API.G_EXC_ERROR;
2129: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN

Line 2131: Wf_Core.Context('ECX_RULE', 'GENERATEXML', p_event.getEventName(), p_subscription_guid);

2127: --return 'ERROR';
2128: RAISE FND_API.G_EXC_ERROR;
2129: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
2130: log('Unexpected Error: Aborting Location Service for this batch');
2131: Wf_Core.Context('ECX_RULE', 'GENERATEXML', p_event.getEventName(), p_subscription_guid);
2132: WF_EVENT.setErrorInfo(p_event, 'ERROR');
2133: --return 'ERROR';
2134: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
2135: WHEN OTHERS THEN

Line 2138: Wf_Core.Context('ECX_RULE', 'GENERATEXML', p_event.getEventName(), p_subscription_guid);

2134: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
2135: WHEN OTHERS THEN
2136: log('Others Error: Aborting Location Service for this batch');
2137: log('SQL Error: '||SQLERRM);
2138: Wf_Core.Context('ECX_RULE', 'GENERATEXML', p_event.getEventName(), p_subscription_guid);
2139: wf_event.setErrorInfo(p_event, 'ERROR');
2140: --return 'ERROR';
2141: RAISE;
2142: END outdoc_rule;