DBA Data[Home] [Help]

APPS.EGO_WF_WRAPPER_PVT dependencies on ERROR_HANDLER

Line 221: l_token_table ERROR_HANDLER.Token_Tbl_Type;

217: -- Bug 6376745 #commenting out the below check
218: -- IF p_pre_event_flag IS NOT NULL THEN
219: --for pre event only we expect the user to have a Synchronous subscriptions (phase 0-99)
220: DECLARE
221: l_token_table ERROR_HANDLER.Token_Tbl_Type;
222: BEGIN
223: -- Uncommenting the below block as part of fix
224: l_token_table(1).TOKEN_NAME := 'PKG_NAME';
225: l_token_table(1).TOKEN_VALUE := G_PKG_NAME;

Line 231: ERROR_HANDLER.Add_Error_Message(

227: l_token_table(2).TOKEN_VALUE := l_api_name;
228: l_token_table(3).TOKEN_NAME := 'SQL_ERR_MSG';
229: l_token_table(3).TOKEN_VALUE := SQLERRM;
230:
231: ERROR_HANDLER.Add_Error_Message(
232: p_message_name => 'EGO_EVENT_SUBSCR'
233: ,p_application_id => 'EGO'
234: --,p_token_tbl => l_token_table ---parameters Commented for bug 6518941
235: ,p_message_type => FND_API.G_RET_STS_ERROR

Line 261: l_token_table ERROR_HANDLER.Token_Tbl_Type;

257: ---for unexpected exceptions-
258: -----------------------------------------------------------
259: WHEN OTHERS THEN
260: DECLARE
261: l_token_table ERROR_HANDLER.Token_Tbl_Type;
262: BEGIN
263: l_token_table(1).TOKEN_NAME := 'PKG_NAME';
264: l_token_table(1).TOKEN_VALUE := G_PKG_NAME;
265: l_token_table(2).TOKEN_NAME := 'API_NAME';

Line 270: ERROR_HANDLER.Add_Error_Message(

266: l_token_table(2).TOKEN_VALUE := l_api_name;
267: l_token_table(3).TOKEN_NAME := 'SQL_ERR_MSG';
268: l_token_table(3).TOKEN_VALUE := SQLERRM;
269:
270: ERROR_HANDLER.Add_Error_Message(
271: p_message_name => 'EGO_PLSQL_ERR'
272: ,p_application_id => 'EGO'
273: ,p_token_tbl => l_token_table
274: ,p_message_type => FND_API.G_RET_STS_ERROR