DBA Data[Home] [Help]

APPS.ECO_ERROR_HANDLER dependencies on BOM_GLOBALS

Line 58: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Setting substitute component records to ' ||

54: IS
55: l_idx NUMBER;
56: BEGIN
57:
58: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Setting substitute component records to ' ||
59: p_other_status);
60: END IF;
61:
62: IF p_error_scope = G_SCOPE_ALL

Line 86: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope=Children in Substitute Component'); END IF;

82:
83: ELSIF p_error_scope = G_SCOPE_CHILDREN AND
84: p_ri_idx <> 0
85: THEN
86: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope=Children in Substitute Component'); END IF;
87: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Revised Item index <> 0'); END IF;
88:
89: FOR l_idx IN 1..g_sub_component_tbl.COUNT
90: LOOP

Line 87: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Revised Item index <> 0'); END IF;

83: ELSIF p_error_scope = G_SCOPE_CHILDREN AND
84: p_ri_idx <> 0
85: THEN
86: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope=Children in Substitute Component'); END IF;
87: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Revised Item index <> 0'); END IF;
88:
89: FOR l_idx IN 1..g_sub_component_tbl.COUNT
90: LOOP
91: IF NVL(g_sub_component_tbl(l_idx).revised_item_name, ' ') =

Line 105: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Substitute Component at ' || to_char(l_idx) || ' set to status ' ||

101: NVL(g_revised_item_tbl(p_ri_idx).new_revised_item_revision, 'X')
102: THEN
103: g_sub_component_tbl(l_idx).return_status :=
104: p_other_status;
105: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Substitute Component at ' || to_char(l_idx) || ' set to status ' ||
106: p_other_status);
107: END IF;
108:
109: Error_Handler.Add_Message

Line 121: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope=Children in Substitute Component'); END IF;

117: ELSIF p_error_scope = G_SCOPE_CHILDREN AND
118: p_rc_idx <> 0
119: THEN
120:
121: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope=Children in Substitute Component'); END IF;
122: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Revised Component index <> 0'); END IF;
123:
124: FOR l_idx IN 1..g_sub_component_tbl.COUNT
125: LOOP

Line 122: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Revised Component index <> 0'); END IF;

118: p_rc_idx <> 0
119: THEN
120:
121: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope=Children in Substitute Component'); END IF;
122: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Revised Component index <> 0'); END IF;
123:
124: FOR l_idx IN 1..g_sub_component_tbl.COUNT
125: LOOP
126: IF NVL(g_sub_component_tbl(l_idx).component_item_name, ' ')=

Line 152: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug

148: --
149: -- Since bill sequence id is not available
150: -- match the revised item information also.
151: --
152: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug
153: ('Substitute Comp. at ' || to_char(l_idx) || ' set to '
154: || p_other_status);
155: END IF;
156:

Line 172: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope = Siblings in Sub. Components'); END IF;

168: ELSIF p_error_scope = G_SCOPE_SIBLINGS AND
169: p_rd_idx <> 0
170: THEN
171:
172: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope = Siblings in Sub. Components'); END IF;
173: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Reference Desg Index <> 0'); END IF;
174:
175: FOR l_idx IN 1..g_sub_component_tbl.COUNT
176: LOOP

Line 173: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Reference Desg Index <> 0'); END IF;

169: p_rd_idx <> 0
170: THEN
171:
172: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope = Siblings in Sub. Components'); END IF;
173: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Reference Desg Index <> 0'); END IF;
174:
175: FOR l_idx IN 1..g_sub_component_tbl.COUNT
176: LOOP
177: IF NVL(g_sub_component_tbl(l_idx).component_item_name,' ') =

Line 202: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Substitute Component at ' || to_char(l_idx) || ' set to status ' ||

198: -- match the revised item information also.
199: --
200: g_sub_component_tbl(l_idx).return_status :=
201: p_other_status;
202: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Substitute Component at ' || to_char(l_idx) || ' set to status ' ||
203: p_other_status);
204: END IF;
205: Error_Handler.Add_Message
206: ( p_mesg_text => p_other_mesg_text

Line 228: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope=Siblings in Substitute Component'); END IF;

224: -- Match the component key information at the entity index
225: -- location with rest of the records, all those that are found
226: -- will be siblings and should get an error.
227: --
228: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope=Siblings in Substitute Component'); END IF;
229: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('All entity indexes = 0'); END IF;
230:
231:
232: FOR l_idx IN (p_entity_index+1)..g_sub_component_tbl.COUNT

Line 229: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('All entity indexes = 0'); END IF;

225: -- location with rest of the records, all those that are found
226: -- will be siblings and should get an error.
227: --
228: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope=Siblings in Substitute Component'); END IF;
229: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('All entity indexes = 0'); END IF;
230:
231:
232: FOR l_idx IN (p_entity_index+1)..g_sub_component_tbl.COUNT
233: LOOP

Line 297: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Setting reference designator records to '

293: IS
294: l_idx NUMBER;
295: BEGIN
296:
297: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Setting reference designator records to '
298: || p_other_status);
299: END IF;
300:
301: IF p_error_scope = G_SCOPE_ALL

Line 334: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope=Children in Reference Designator'); END IF;

330: ELSIF p_error_scope = G_SCOPE_CHILDREN AND
331: p_ri_idx <> 0
332: THEN
333:
334: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope=Children in Reference Designator'); END IF;
335: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Revised Item index <> 0'); END IF;
336:
337:
338: FOR l_idx IN 1..g_ref_designator_tbl.COUNT

Line 335: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Revised Item index <> 0'); END IF;

331: p_ri_idx <> 0
332: THEN
333:
334: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope=Children in Reference Designator'); END IF;
335: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Revised Item index <> 0'); END IF;
336:
337:
338: FOR l_idx IN 1..g_ref_designator_tbl.COUNT
339: LOOP

Line 354: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Ref. Designator at ' || to_char(l_idx) || ' set to status ' ||

350: THEN
351: g_ref_designator_tbl(l_idx).return_status :=
352: p_other_status;
353:
354: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Ref. Designator at ' || to_char(l_idx) || ' set to status ' ||
355: p_other_status);
356: END IF;
357:
358: Error_Handler.Add_Message

Line 371: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope=Children in Reference Designator'); END IF;

367: ELSIF p_error_scope = G_SCOPE_CHILDREN AND
368: p_rc_idx <> 0
369: THEN
370:
371: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope=Children in Reference Designator'); END IF;
372: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Revised Component index <> 0'); END IF;
373:
374: FOR l_idx IN 1..g_ref_designator_tbl.COUNT
375: LOOP

Line 372: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Revised Component index <> 0'); END IF;

368: p_rc_idx <> 0
369: THEN
370:
371: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope=Children in Reference Designator'); END IF;
372: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Revised Component index <> 0'); END IF;
373:
374: FOR l_idx IN 1..g_ref_designator_tbl.COUNT
375: LOOP
376: IF NVL(g_ref_designator_tbl(l_idx).component_item_name, ' ') =

Line 397: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug

393: --
394: -- Since bill sequence id is not available
395: -- match the revised item information also.
396: --
397: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug
398: ('Refernce Desg. at ' || to_char(l_idx) || ' set to '
399: || p_other_status);
400: END IF;
401:

Line 425: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope=Siblings in Reference Designator'); END IF;

421: -- location with rest of the records, all those that are found
422: -- will be siblings and should get an error.
423: --
424:
425: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope=Siblings in Reference Designator'); END IF;
426: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('All Indexes = 0'); END IF;
427:
428: FOR l_idx IN (p_entity_index+1)..g_ref_designator_tbl.COUNT
429: LOOP

Line 426: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('All Indexes = 0'); END IF;

422: -- will be siblings and should get an error.
423: --
424:
425: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope=Siblings in Reference Designator'); END IF;
426: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('All Indexes = 0'); END IF;
427:
428: FOR l_idx IN (p_entity_index+1)..g_ref_designator_tbl.COUNT
429: LOOP
430: IF NVL(g_ref_designator_tbl(l_idx).component_item_name, ' ') =

Line 457: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Ref. Designator at ' || to_char(l_idx) || ' set to status ' ||

453: --
454: g_ref_designator_tbl(l_idx).return_status :=
455: p_other_status;
456:
457: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Ref. Designator at ' || to_char(l_idx) || ' set to status ' ||
458: p_other_status);
459: END IF;
460:
461: Error_Handler.Add_Message

Line 512: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Setting Revised component records to '

508: IS
509: l_Idx NUMBER;
510: BEGIN
511:
512: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Setting Revised component records to '
513: || p_other_status);
514: END IF;
515:
516: IF p_error_scope = G_SCOPE_CHILDREN AND

Line 520: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope=Children in Revised Component'); END IF;

516: IF p_error_scope = G_SCOPE_CHILDREN AND
517: p_ri_idx <> 0
518: THEN
519:
520: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope=Children in Revised Component'); END IF;
521: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Revised Item index <> 0'); END IF;
522:
523: FOR l_idx IN 1..g_rev_component_tbl.COUNT
524: LOOP

Line 521: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Revised Item index <> 0'); END IF;

517: p_ri_idx <> 0
518: THEN
519:
520: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope=Children in Revised Component'); END IF;
521: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Revised Item index <> 0'); END IF;
522:
523: FOR l_idx IN 1..g_rev_component_tbl.COUNT
524: LOOP
525: IF NVL(g_rev_component_tbl(l_Idx).eco_name, ' ') =

Line 544: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug

540: -- matches that of the revised item then
541: -- error that revised component too.
542: --
543:
544: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug
545: ('Comp. errored at index: '||to_char(l_idx));
546: END IF;
547:
548: g_rev_component_tbl(l_Idx).return_status :=

Line 582: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope=Siblings in Revised Component'); END IF;

578: , p_other_mesg_name => p_other_mesg_name --bug 5174203
579: );
580: ELSIF p_error_scope = G_SCOPE_SIBLINGS THEN
581:
582: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope=Siblings in Revised Component'); END IF;
583: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Entity Index: ' ||
584: to_char(p_entity_index));
585: END IF;
586:

Line 583: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Entity Index: ' ||

579: );
580: ELSIF p_error_scope = G_SCOPE_SIBLINGS THEN
581:
582: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope=Siblings in Revised Component'); END IF;
583: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Entity Index: ' ||
584: to_char(p_entity_index));
585: END IF;
586:
587: FOR l_idx IN 1..g_rev_component_tbl.COUNT

Line 617: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Revised Component at ' || to_char(l_idx) || ' set to status ' ||

613: --
614: g_rev_component_tbl(l_idx).return_status :=
615: p_other_status;
616:
617: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Revised Component at ' || to_char(l_idx) || ' set to status ' ||
618: p_other_status);
619: END IF;
620:
621: Error_Handler.Add_Message

Line 653: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope=All in Revised Component'); END IF;

649: END LOOP;
650: ELSIF p_error_scope = G_SCOPE_ALL
651: THEN
652:
653: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope=All in Revised Component'); END IF;
654:
655: FOR l_idx IN 1..g_rev_component_tbl.COUNT
656: LOOP
657: g_rev_component_tbl(l_idx).return_status :=

Line 721: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Setting Change Line records to ' || p_other_status); END IF;

717: IS
718: l_CurrentIndex NUMBER;
719: BEGIN
720:
721: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Setting Change Line records to ' || p_other_status); END IF;
722:
723: FOR l_CurrentIndex IN 1..g_change_line_tbl.COUNT
724: LOOP
725: g_change_line_tbl(l_CurrentIndex).return_status := p_other_status;

Line 760: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Setting ECO Revision records to ' || p_other_status); END IF;

756: IS
757: l_CurrentIndex NUMBER;
758: BEGIN
759:
760: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Setting ECO Revision records to ' || p_other_status); END IF;
761:
762: FOR l_CurrentIndex IN 1..g_eco_revision_tbl.COUNT
763: LOOP
764: g_eco_revision_tbl(l_CurrentIndex).return_status :=

Line 865: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Sub Op Resource at ' || to_char(l_idx) || ' set to status ' || p_other_status);

861: NVL(g_revised_item_tbl(p_ri_idx).new_revised_item_revision, 'X')
862: THEN
863: g_rev_sub_resource_tbl(l_idx).return_status := p_other_status;
864:
865: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Sub Op Resource at ' || to_char(l_idx) || ' set to status ' || p_other_status);
866: END IF;
867:
868: Error_Handler.Add_Message
869: ( p_mesg_text => p_other_mesg_text

Line 1311: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope=Siblings in Revised Operation'); END IF;

1307: );
1308:
1309: ELSIF p_error_scope = G_SCOPE_SIBLINGS THEN
1310:
1311: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope=Siblings in Revised Operation'); END IF;
1312: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Entity Index: ' ||
1313: to_char(p_entity_index));
1314: END IF;
1315:

Line 1312: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Entity Index: ' ||

1308:
1309: ELSIF p_error_scope = G_SCOPE_SIBLINGS THEN
1310:
1311: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope=Siblings in Revised Operation'); END IF;
1312: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Entity Index: ' ||
1313: to_char(p_entity_index));
1314: END IF;
1315:
1316: FOR l_idx IN 1..g_rev_component_tbl.COUNT

Line 1435: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Setting Revised Item records to ' || p_other_status); END IF;

1431: )
1432: IS
1433: l_CurrentIndex NUMBER;
1434: BEGIN
1435: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Setting Revised Item records to ' || p_other_status); END IF;
1436:
1437: FOR l_CurrentIndex IN 1..g_revised_item_tbl.COUNT
1438: LOOP
1439: g_revised_item_tbl(l_CurrentIndex).return_status :=

Line 1706: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Within the Log Error Procedure . . .'); END IF;

1702: -- Error Table.
1703: --
1704: **************************************************/
1705:
1706: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Within the Log Error Procedure . . .'); END IF;
1707: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope: ' || l_error_scope); END IF;
1708: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Entity Index: ' || to_char(p_entity_index)); END IF;
1709: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Error Level: ' || to_char(p_error_level)); END IF;
1710: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Error Status: ' || l_error_status); END IF;

Line 1707: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope: ' || l_error_scope); END IF;

1703: --
1704: **************************************************/
1705:
1706: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Within the Log Error Procedure . . .'); END IF;
1707: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope: ' || l_error_scope); END IF;
1708: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Entity Index: ' || to_char(p_entity_index)); END IF;
1709: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Error Level: ' || to_char(p_error_level)); END IF;
1710: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Error Status: ' || l_error_status); END IF;
1711: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Other Status: ' || p_other_status); END IF;

Line 1708: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Entity Index: ' || to_char(p_entity_index)); END IF;

1704: **************************************************/
1705:
1706: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Within the Log Error Procedure . . .'); END IF;
1707: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope: ' || l_error_scope); END IF;
1708: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Entity Index: ' || to_char(p_entity_index)); END IF;
1709: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Error Level: ' || to_char(p_error_level)); END IF;
1710: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Error Status: ' || l_error_status); END IF;
1711: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Other Status: ' || p_other_status); END IF;
1712: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Other Message: ' || p_other_message); END IF;

Line 1709: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Error Level: ' || to_char(p_error_level)); END IF;

1705:
1706: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Within the Log Error Procedure . . .'); END IF;
1707: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope: ' || l_error_scope); END IF;
1708: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Entity Index: ' || to_char(p_entity_index)); END IF;
1709: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Error Level: ' || to_char(p_error_level)); END IF;
1710: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Error Status: ' || l_error_status); END IF;
1711: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Other Status: ' || p_other_status); END IF;
1712: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Other Message: ' || p_other_message); END IF;
1713: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Business Object: ' || Bom_Globals.Get_Bo_Identifier); END IF;

Line 1710: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Error Status: ' || l_error_status); END IF;

1706: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Within the Log Error Procedure . . .'); END IF;
1707: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope: ' || l_error_scope); END IF;
1708: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Entity Index: ' || to_char(p_entity_index)); END IF;
1709: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Error Level: ' || to_char(p_error_level)); END IF;
1710: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Error Status: ' || l_error_status); END IF;
1711: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Other Status: ' || p_other_status); END IF;
1712: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Other Message: ' || p_other_message); END IF;
1713: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Business Object: ' || Bom_Globals.Get_Bo_Identifier); END IF;
1714:

Line 1711: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Other Status: ' || p_other_status); END IF;

1707: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Scope: ' || l_error_scope); END IF;
1708: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Entity Index: ' || to_char(p_entity_index)); END IF;
1709: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Error Level: ' || to_char(p_error_level)); END IF;
1710: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Error Status: ' || l_error_status); END IF;
1711: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Other Status: ' || p_other_status); END IF;
1712: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Other Message: ' || p_other_message); END IF;
1713: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Business Object: ' || Bom_Globals.Get_Bo_Identifier); END IF;
1714:
1715: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Translating and Inserting Messages . . . '); END IF;

Line 1712: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Other Message: ' || p_other_message); END IF;

1708: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Entity Index: ' || to_char(p_entity_index)); END IF;
1709: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Error Level: ' || to_char(p_error_level)); END IF;
1710: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Error Status: ' || l_error_status); END IF;
1711: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Other Status: ' || p_other_status); END IF;
1712: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Other Message: ' || p_other_message); END IF;
1713: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Business Object: ' || Bom_Globals.Get_Bo_Identifier); END IF;
1714:
1715: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Translating and Inserting Messages . . . '); END IF;
1716:

Line 1713: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Business Object: ' || Bom_Globals.Get_Bo_Identifier); END IF;

1709: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Error Level: ' || to_char(p_error_level)); END IF;
1710: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Error Status: ' || l_error_status); END IF;
1711: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Other Status: ' || p_other_status); END IF;
1712: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Other Message: ' || p_other_message); END IF;
1713: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Business Object: ' || Bom_Globals.Get_Bo_Identifier); END IF;
1714:
1715: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Translating and Inserting Messages . . . '); END IF;
1716:
1717: Error_Handler.Translate_And_Insert_Messages

Line 1715: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Translating and Inserting Messages . . . '); END IF;

1711: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Other Status: ' || p_other_status); END IF;
1712: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Other Message: ' || p_other_message); END IF;
1713: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Business Object: ' || Bom_Globals.Get_Bo_Identifier); END IF;
1714:
1715: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Translating and Inserting Messages . . . '); END IF;
1716:
1717: Error_Handler.Translate_And_Insert_Messages
1718: ( p_Mesg_Token_Tbl => p_Mesg_Token_Tbl
1719: , p_error_level => p_error_level

Line 1765: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Finished extracting other message . . . '); END IF;

1761: l_other_message := fnd_message.get;
1762:
1763: END IF; -- Other Token Tbl Count <> 0 Ends
1764:
1765: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Finished extracting other message . . . '); END IF;
1766: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Other Message generated: ' || l_other_message); END IF;
1767:
1768:
1769: /**********************************************************

Line 1766: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Other Message generated: ' || l_other_message); END IF;

1762:
1763: END IF; -- Other Token Tbl Count <> 0 Ends
1764:
1765: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Finished extracting other message . . . '); END IF;
1766: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Other Message generated: ' || l_other_message); END IF;
1767:
1768:
1769: /**********************************************************
1770: --

Line 1779: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Error Level is Business Object . . . '); END IF;

1775: IF l_error_level = G_BO_LEVEL
1776: THEN
1777: l_error_level := G_ECO_LEVEL;
1778:
1779: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Error Level is Business Object . . . '); END IF;
1780:
1781: END IF;
1782: /**********************************************************
1783: --

Line 1790: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Status unexpected and scope is All . . .'); END IF;

1786: --
1787: ************************************************************/
1788: IF l_error_status = G_STATUS_UNEXPECTED
1789: THEN
1790: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Status unexpected and scope is All . . .'); END IF;
1791: l_error_scope := G_SCOPE_ALL;
1792: ELSIF l_error_status = G_STATUS_WARNING
1793: THEN
1794: l_error_scope := G_SCOPE_RECORD;

Line 1796: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Status is warning . . .'); END IF;

1792: ELSIF l_error_status = G_STATUS_WARNING
1793: THEN
1794: l_error_scope := G_SCOPE_RECORD;
1795: l_error_status := FND_API.G_RET_STS_SUCCESS;
1796: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Status is warning . . .'); END IF;
1797:
1798: END IF;
1799:
1800: --

Line 1812: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Error Level is ECO . . .'); END IF;

1808: *************************************************************/
1809: IF l_error_level = G_ECO_LEVEL
1810: THEN
1811:
1812: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Error Level is ECO . . .'); END IF;
1813: --
1814: -- Set the ECO Header record status to p_error_status
1815: -- This will also take care of the scope RECORD.
1816: --

Line 2114: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Error Level = Revised Items . . .'); END IF;

2110: --
2111: -- Set the revised item status at the entity_index
2112: -- This will take care of scope RECORD
2113: --
2114: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Error Level = Revised Items . . .'); END IF;
2115:
2116: g_revised_item_tbl(p_entity_index).return_status :=
2117: l_error_status;
2118:

Line 2186: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Error Level = Revised components . . .'); END IF;

2182: --
2183: g_rev_component_tbl(p_entity_index).return_status :=
2184: l_error_status;
2185:
2186: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Error Level = Revised components . . .'); END IF;
2187:
2188: IF l_error_scope = G_SCOPE_SIBLINGS OR
2189: l_error_scope = G_SCOPE_ALL
2190: THEN

Line 2234: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Error Level = Reference Designators . . .'); END IF;

2230: --
2231: -- Set reference designator record status at entity_idx
2232: -- This will take care of Scope = RECORD.
2233: --
2234: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Error Level = Reference Designators . . .'); END IF;
2235:
2236: g_ref_designator_tbl(p_entity_index).return_status :=
2237: l_error_status;
2238: IF l_error_scope <> G_SCOPE_RECORD

Line 2259: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Error Level = Substitute Components . . .'); END IF;

2255: THEN
2256: -- Set substitute component record status at entity_idx
2257: -- This will take care of Scope = RECORD.
2258: --
2259: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Error Level = Substitute Components . . .'); END IF;
2260:
2261: g_sub_component_tbl(p_entity_index).return_status :=
2262: l_error_status;
2263: IF l_error_scope <> G_SCOPE_RECORD

Line 2293: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Error Level = Revised operations . . .'); END IF;

2289: --
2290: g_rev_operation_tbl(p_entity_index).return_status :=
2291: l_error_status;
2292:
2293: IF Bom_Globals.Get_Debug = 'Y' THEN Error_Handler.Write_Debug('Error Level = Revised operations . . .'); END IF;
2294:
2295: IF l_error_scope = G_SCOPE_SIBLINGS OR
2296: l_error_scope = G_SCOPE_ALL
2297: THEN