DBA Data[Home] [Help]

APPS.ENG_PROPAGATION_LOG_UTIL dependencies on ECO_ERROR_HANDLER

Line 597: IF p_bo_entity_identifier = 'RC'--Eco_Error_Handler.G_RC_LEVEL--Fixed for bug 4968251

593: p_entity_id => p_bo_entity_identifier
594: , x_message_list => G_Entity_Map_Log_Table(l_Nxt_Idx).message_list);
595:
596: -- Special handling for Revised component level to log all the children messages
597: IF p_bo_entity_identifier = 'RC'--Eco_Error_Handler.G_RC_LEVEL--Fixed for bug 4968251
598: THEN
599: -- Generally, the message count for component will be minimal. So no issues
600: l_Nxt_Mesg_Cnt := G_Entity_Map_Log_Table(l_Nxt_Idx).message_list.COUNT+1;
601: Error_Handler.Get_Entity_Message(

Line 602: p_entity_id => Eco_Error_Handler.G_RD_LEVEL

598: THEN
599: -- Generally, the message count for component will be minimal. So no issues
600: l_Nxt_Mesg_Cnt := G_Entity_Map_Log_Table(l_Nxt_Idx).message_list.COUNT+1;
601: Error_Handler.Get_Entity_Message(
602: p_entity_id => Eco_Error_Handler.G_RD_LEVEL
603: , x_message_list => l_message_list);
604: FOR i IN 1..l_message_list.COUNT
605: LOOP
606: G_Entity_Map_Log_Table(l_Nxt_Idx).message_list(l_Nxt_Mesg_Cnt) := l_message_list(i);

Line 612: p_entity_id => Eco_Error_Handler.G_SC_LEVEL

608:
609: END LOOP;
610: l_message_list.delete;
611: Error_Handler.Get_Entity_Message(
612: p_entity_id => Eco_Error_Handler.G_SC_LEVEL
613: , x_message_list => l_message_list);
614: FOR i IN 1..l_message_list.COUNT
615: LOOP
616: G_Entity_Map_Log_Table(l_Nxt_Idx).message_list(l_Nxt_Mesg_Cnt) := l_message_list(i);

Line 686: , p_bo_entity_identifier => 'RC'--Eco_Error_Handler.G_RC_LEVEL

682: , p_revised_line_id1 => p_component_sequence_id
683: , p_local_organization_id => p_local_organization_id
684: , p_entity_name => Eng_Propagation_Log_Util.G_ENTITY_REVISED_LINE
685: , p_entity_action_status => 4
686: , p_bo_entity_identifier => 'RC'--Eco_Error_Handler.G_RC_LEVEL
687: );
688: Write_Propagation_Log;
689:
690: -- Standard ending code ------------------------------------------------