DBA Data[Home] [Help]

APPS.ERROR_HANDLER dependencies on FND_FILE

Line 2324: Fnd_File.Put_Line ( which => Fnd_File.LOG,

2320: THEN
2321:
2322: IF G_IS_BOM_OI then
2323: IF FND_PROFILE.VALUE('MRP_DEBUG') = 'Y' then
2324: Fnd_File.Put_Line ( which => Fnd_File.LOG,
2325: buff => p_debug_message );
2326: Fnd_File.New_Line ( which => Fnd_File.LOG );
2327: END IF;
2328: ELSE

Line 2326: Fnd_File.New_Line ( which => Fnd_File.LOG );

2322: IF G_IS_BOM_OI then
2323: IF FND_PROFILE.VALUE('MRP_DEBUG') = 'Y' then
2324: Fnd_File.Put_Line ( which => Fnd_File.LOG,
2325: buff => p_debug_message );
2326: Fnd_File.New_Line ( which => Fnd_File.LOG );
2327: END IF;
2328: ELSE
2329: utl_file.put_line(Error_Handler.Debug_File,p_debug_message);
2330: END IF;

Line 2479: Fnd_File.Put( which => Fnd_File.LOG,

2475:
2476: FOR l_idx IN 1..G_Error_Table.COUNT
2477: LOOP
2478:
2479: Fnd_File.Put( which => Fnd_File.LOG,
2480: buff => 'Entity: '||G_Error_Table(l_idx).entity_id||'. ');
2481:
2482: IF G_Error_Table(l_idx).row_identifier IS NOT NULL
2483: THEN

Line 2484: Fnd_File.Put( which => Fnd_File.LOG,

2480: buff => 'Entity: '||G_Error_Table(l_idx).entity_id||'. ');
2481:
2482: IF G_Error_Table(l_idx).row_identifier IS NOT NULL
2483: THEN
2484: Fnd_File.Put( which => Fnd_File.LOG,
2485: buff => 'Row Identifier: '||G_Error_Table(l_idx).row_identifier||'. ');
2486: END IF;
2487:
2488: IF G_Error_Table(l_idx).entity_index IS NOT NULL

Line 2490: Fnd_File.Put( which => Fnd_File.LOG,

2486: END IF;
2487:
2488: IF G_Error_Table(l_idx).entity_index IS NOT NULL
2489: THEN
2490: Fnd_File.Put( which => Fnd_File.LOG,
2491: buff => 'Entity index: '||G_Error_Table(l_idx).entity_index||'. ');
2492: END IF;
2493:
2494: IF G_Error_Table(l_idx).table_name IS NOT NULL

Line 2496: Fnd_File.Put( which => Fnd_File.LOG,

2492: END IF;
2493:
2494: IF G_Error_Table(l_idx).table_name IS NOT NULL
2495: THEN
2496: Fnd_File.Put( which => Fnd_File.LOG,
2497: buff => 'Table Name: '||G_Error_Table(l_idx).table_name||'.');
2498: END IF;
2499:
2500: Fnd_File.New_Line ( which => Fnd_File.LOG );

Line 2500: Fnd_File.New_Line ( which => Fnd_File.LOG );

2496: Fnd_File.Put( which => Fnd_File.LOG,
2497: buff => 'Table Name: '||G_Error_Table(l_idx).table_name||'.');
2498: END IF;
2499:
2500: Fnd_File.New_Line ( which => Fnd_File.LOG );
2501:
2502: Fnd_File.Put_Line( which => Fnd_File.LOG,
2503: buff => G_Error_Table(l_idx).message_text );
2504:

Line 2502: Fnd_File.Put_Line( which => Fnd_File.LOG,

2498: END IF;
2499:
2500: Fnd_File.New_Line ( which => Fnd_File.LOG );
2501:
2502: Fnd_File.Put_Line( which => Fnd_File.LOG,
2503: buff => G_Error_Table(l_idx).message_text );
2504:
2505: Fnd_File.New_Line ( which => Fnd_File.LOG );
2506:

Line 2505: Fnd_File.New_Line ( which => Fnd_File.LOG );

2501:
2502: Fnd_File.Put_Line( which => Fnd_File.LOG,
2503: buff => G_Error_Table(l_idx).message_text );
2504:
2505: Fnd_File.New_Line ( which => Fnd_File.LOG );
2506:
2507: END LOOP;
2508:
2509: END;