DBA Data[Home] [Help]

APPS.EGO_ITEM_ORG_BULKLOAD_PVT dependencies on ERROR_HANDLER

Line 80: --Debug Profile option used to write Error_Handler.Write_Debug

76:
77: -- Used for Developer debugging
78: G_MSG_LINE_NUM NUMBER := 1;
79:
80: --Debug Profile option used to write Error_Handler.Write_Debug
81: --Profile option name = INV_DEBUG_TRACE ; User Profile Option Name = INV: Debug Trace
82: --Value: 1 (True) ; 0 (False)
83: G_DEBUG CONSTANT VARCHAR2(10) := NVL(FND_PROFILE.VALUE('INV_DEBUG_TRACE'),0);
84:

Line 90: Error_Handler.Write_Debug(p_msg);

86: BEGIN
87:
88: --If Profile set to TRUE
89: IF (G_DEBUG = 1) THEN
90: Error_Handler.Write_Debug(p_msg);
91: END IF;
92:
93: END;
94:

Line 144: Error_Handler.Open_Debug_Session(

140:
141: -------------------------------------------------------------------------
142: -- Opening the Debug file, to write log information --
143: -------------------------------------------------------------------------
144: Error_Handler.Open_Debug_Session(
145: p_debug_filename => G_ERROR_FILE_NAME
146: ,p_output_dir => l_log_output_dir
147: ,x_return_status => l_log_return_status
148: ,x_error_mesg => l_errbuff

Line 329: Write_Conc_Log_Debug('Before Error_Handler.initialize');

325:
326: -------------------------------------------------------------------------
327: -- Opening the Debug file, to write log information --
328: -------------------------------------------------------------------------
329: Write_Conc_Log_Debug('Before Error_Handler.initialize');
330: Error_Handler.initialize();
331: Error_Handler.set_bo_identifier(G_BO_IDENTIFIER);
332: --Commented on 12/17/2003 (PPEDDAMA). Open_Debug_Session should set the value
333: --appropriately, so that when the Debug Session is successfully opened :

Line 330: Error_Handler.initialize();

326: -------------------------------------------------------------------------
327: -- Opening the Debug file, to write log information --
328: -------------------------------------------------------------------------
329: Write_Conc_Log_Debug('Before Error_Handler.initialize');
330: Error_Handler.initialize();
331: Error_Handler.set_bo_identifier(G_BO_IDENTIFIER);
332: --Commented on 12/17/2003 (PPEDDAMA). Open_Debug_Session should set the value
333: --appropriately, so that when the Debug Session is successfully opened :
334: --will return Error_Handler.Get_Debug = 'Y', else Error_Handler.Get_Debug = 'N'

Line 331: Error_Handler.set_bo_identifier(G_BO_IDENTIFIER);

327: -- Opening the Debug file, to write log information --
328: -------------------------------------------------------------------------
329: Write_Conc_Log_Debug('Before Error_Handler.initialize');
330: Error_Handler.initialize();
331: Error_Handler.set_bo_identifier(G_BO_IDENTIFIER);
332: --Commented on 12/17/2003 (PPEDDAMA). Open_Debug_Session should set the value
333: --appropriately, so that when the Debug Session is successfully opened :
334: --will return Error_Handler.Get_Debug = 'Y', else Error_Handler.Get_Debug = 'N'
335: --Error_Handler.Set_Debug('Y');

Line 334: --will return Error_Handler.Get_Debug = 'Y', else Error_Handler.Get_Debug = 'N'

330: Error_Handler.initialize();
331: Error_Handler.set_bo_identifier(G_BO_IDENTIFIER);
332: --Commented on 12/17/2003 (PPEDDAMA). Open_Debug_Session should set the value
333: --appropriately, so that when the Debug Session is successfully opened :
334: --will return Error_Handler.Get_Debug = 'Y', else Error_Handler.Get_Debug = 'N'
335: --Error_Handler.Set_Debug('Y');
336:
337: --Opens Error_Handler debug session
338: Open_Debug_Session;

Line 335: --Error_Handler.Set_Debug('Y');

331: Error_Handler.set_bo_identifier(G_BO_IDENTIFIER);
332: --Commented on 12/17/2003 (PPEDDAMA). Open_Debug_Session should set the value
333: --appropriately, so that when the Debug Session is successfully opened :
334: --will return Error_Handler.Get_Debug = 'Y', else Error_Handler.Get_Debug = 'N'
335: --Error_Handler.Set_Debug('Y');
336:
337: --Opens Error_Handler debug session
338: Open_Debug_Session;
339: Write_Conc_Log_Debug('After Open_Debug_Session');

Line 337: --Opens Error_Handler debug session

333: --appropriately, so that when the Debug Session is successfully opened :
334: --will return Error_Handler.Get_Debug = 'Y', else Error_Handler.Get_Debug = 'N'
335: --Error_Handler.Set_Debug('Y');
336:
337: --Opens Error_Handler debug session
338: Open_Debug_Session;
339: Write_Conc_Log_Debug('After Open_Debug_Session');
340:
341: --After Open_Debug_Session, can log using Write_Debug()

Line 399: -- Calling Error Handler API to report errors encountered --

395: COMMIT;
396: END IF;
397:
398: -------------------------------------------------------------------------
399: -- Calling Error Handler API to report errors encountered --
400: -------------------------------------------------------------------------
401:
402: --Log Errors to MTL_INTERFACE_ERRORS table and Debug file.
403: Error_Handler.Log_Error(

Line 403: Error_Handler.Log_Error(

399: -- Calling Error Handler API to report errors encountered --
400: -------------------------------------------------------------------------
401:
402: --Log Errors to MTL_INTERFACE_ERRORS table and Debug file.
403: Error_Handler.Log_Error(
404: p_write_err_to_inttable => 'Y',
405: p_write_err_to_debugfile => 'Y'
406: );
407:

Line 408: Error_Handler.Close_Debug_Session;

404: p_write_err_to_inttable => 'Y',
405: p_write_err_to_debugfile => 'Y'
406: );
407:
408: Error_Handler.Close_Debug_Session;
409:
410: --5259908
411: INV_EGO_REVISION_VALIDATE.set_Process_Control(NULL);
412:

Line 424: RETCODE := Error_Handler.G_STATUS_ERROR;

420: Write_Debug('WHEN OTHERS Exception.');
421: Write_Debug('error code : '|| to_char(SQLCODE));
422: Write_Debug('error text : '|| SQLERRM);
423: ERRBUF := 'Error : '||to_char(SQLCODE)||'---'||SQLERRM;
424: RETCODE := Error_Handler.G_STATUS_ERROR;
425: Error_Handler.Close_Debug_Session;
426: ----------------Exception block ends.
427:
428: END process_item_org_assignments;

Line 425: Error_Handler.Close_Debug_Session;

421: Write_Debug('error code : '|| to_char(SQLCODE));
422: Write_Debug('error text : '|| SQLERRM);
423: ERRBUF := 'Error : '||to_char(SQLCODE)||'---'||SQLERRM;
424: RETCODE := Error_Handler.G_STATUS_ERROR;
425: Error_Handler.Close_Debug_Session;
426: ----------------Exception block ends.
427:
428: END process_item_org_assignments;
429: