DBA Data[Home] [Help]

APPS.EAM_PROCESS_FAILURE_ENTRY_PVT dependencies on FND_MSG_PUB

Line 604: FND_MSG_PUB.initialize;

600: END IF;
601:
602: -- Initialize message list if p_init_msg_list is set to TRUE.
603: IF FND_API.to_Boolean( p_init_msg_list ) THEN
604: FND_MSG_PUB.initialize;
605: END IF;
606:
607: -- Initialize API return status to success
608: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 639: FND_MSG_PUB.Add;

635: ( token => l_token_name
636: , value => l_token_value
637: );
638: END IF;
639: FND_MSG_PUB.Add;
640: RAISE FND_API.G_EXC_ERROR;
641: END IF;
642:
643: ELSE

Line 649: FND_MSG_PUB.Add;

645: --Please Enter a Valid Transaction typ:
646: --1: Failure Information Entry
647: --2: Failure Information Update
648: FND_MESSAGE.SET_NAME ('EAM', 'EAM_FA_INVALID_TXN_TYPE');
649: FND_MSG_PUB.Add;
650: RAISE FND_API.G_EXC_ERROR;
651: /* dbms_output.put_line('After Validate_failure_entry_record2'); */
652:
653: END IF;

Line 751: FND_MSG_PUB.Add;

747: ( token => l_token_name
748: , value => l_token_value
749: );
750: END IF;
751: FND_MSG_PUB.Add;
752: RAISE FND_API.G_EXC_ERROR;
753: END IF;
754:
755: FOR i IN 1..l_eam_failure_codes_tbl.count

Line 869: /* FND_MSG_PUB.Count_And_Get

865: EXCEPTION
866: WHEN FND_API.G_EXC_ERROR THEN
867: ROLLBACK TO Process_Failure_Entry_PVT;
868: x_return_status := FND_API.G_RET_STS_ERROR ;
869: /* FND_MSG_PUB.Count_And_Get
870: (
871: p_count => x_msg_count ,
872: p_data => x_msg_data
873: ); */

Line 877: /* FND_MSG_PUB.Count_And_Get

873: ); */
874: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
875: ROLLBACK TO Process_Failure_Entry_PVT;
876: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
877: /* FND_MSG_PUB.Count_And_Get
878: (
879: p_count => x_msg_count,
880: p_data => x_msg_data
881: ); */

Line 885: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

881: ); */
882: WHEN OTHERS THEN
883: ROLLBACK TO Process_Failure_Entry_PVT;
884: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
885: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
886: THEN
887: FND_MSG_PUB.Add_Exc_Msg
888: (
889: G_PKG_NAME,

Line 887: FND_MSG_PUB.Add_Exc_Msg

883: ROLLBACK TO Process_Failure_Entry_PVT;
884: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
885: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
886: THEN
887: FND_MSG_PUB.Add_Exc_Msg
888: (
889: G_PKG_NAME,
890: l_api_name
891: );

Line 893: /* FND_MSG_PUB.Count_And_Get

889: G_PKG_NAME,
890: l_api_name
891: );
892: END IF;
893: /* FND_MSG_PUB.Count_And_Get
894: (
895: p_count => x_msg_count,
896: p_data => x_msg_data
897: ); */