DBA Data[Home] [Help]

APPS.ERROR_HANDLER dependencies on FND_FILE

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

2308: THEN
2309:
2310: IF G_IS_BOM_OI then
2311: IF FND_PROFILE.VALUE('MRP_DEBUG') = 'Y' then
2312: Fnd_File.Put_Line ( which => Fnd_File.LOG,
2313: buff => p_debug_message );
2314: Fnd_File.New_Line ( which => Fnd_File.LOG );
2315: END IF;
2316: ELSE

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

2310: IF G_IS_BOM_OI then
2311: IF FND_PROFILE.VALUE('MRP_DEBUG') = 'Y' then
2312: Fnd_File.Put_Line ( which => Fnd_File.LOG,
2313: buff => p_debug_message );
2314: Fnd_File.New_Line ( which => Fnd_File.LOG );
2315: END IF;
2316: ELSE
2317: utl_file.put_line(Error_Handler.Debug_File,p_debug_message);
2318: END IF;

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

2463:
2464: FOR l_idx IN 1..G_Error_Table.COUNT
2465: LOOP
2466:
2467: Fnd_File.Put( which => Fnd_File.LOG,
2468: buff => 'Entity: '||G_Error_Table(l_idx).entity_id||'. ');
2469:
2470: IF G_Error_Table(l_idx).row_identifier IS NOT NULL
2471: THEN

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

2468: buff => 'Entity: '||G_Error_Table(l_idx).entity_id||'. ');
2469:
2470: IF G_Error_Table(l_idx).row_identifier IS NOT NULL
2471: THEN
2472: Fnd_File.Put( which => Fnd_File.LOG,
2473: buff => 'Row Identifier: '||G_Error_Table(l_idx).row_identifier||'. ');
2474: END IF;
2475:
2476: IF G_Error_Table(l_idx).entity_index IS NOT NULL

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

2474: END IF;
2475:
2476: IF G_Error_Table(l_idx).entity_index IS NOT NULL
2477: THEN
2478: Fnd_File.Put( which => Fnd_File.LOG,
2479: buff => 'Entity index: '||G_Error_Table(l_idx).entity_index||'. ');
2480: END IF;
2481:
2482: IF G_Error_Table(l_idx).table_name IS NOT NULL

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

2480: END IF;
2481:
2482: IF G_Error_Table(l_idx).table_name IS NOT NULL
2483: THEN
2484: Fnd_File.Put( which => Fnd_File.LOG,
2485: buff => 'Table Name: '||G_Error_Table(l_idx).table_name||'.');
2486: END IF;
2487:
2488: Fnd_File.New_Line ( which => Fnd_File.LOG );

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

2484: Fnd_File.Put( which => Fnd_File.LOG,
2485: buff => 'Table Name: '||G_Error_Table(l_idx).table_name||'.');
2486: END IF;
2487:
2488: Fnd_File.New_Line ( which => Fnd_File.LOG );
2489:
2490: Fnd_File.Put_Line( which => Fnd_File.LOG,
2491: buff => G_Error_Table(l_idx).message_text );
2492:

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

2486: END IF;
2487:
2488: Fnd_File.New_Line ( which => Fnd_File.LOG );
2489:
2490: Fnd_File.Put_Line( which => Fnd_File.LOG,
2491: buff => G_Error_Table(l_idx).message_text );
2492:
2493: Fnd_File.New_Line ( which => Fnd_File.LOG );
2494:

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

2489:
2490: Fnd_File.Put_Line( which => Fnd_File.LOG,
2491: buff => G_Error_Table(l_idx).message_text );
2492:
2493: Fnd_File.New_Line ( which => Fnd_File.LOG );
2494:
2495: END LOOP;
2496:
2497: END;