DBA Data[Home] [Help]

APPS.PO_AP_INVOICE_MATCH_GRP dependencies on FND_MSG_PUB

Line 451: -- The error message if the msg ct > 0 should be retrieved using FND_MSG_PUB.get

447: -- (c) FND_API.G_RET_STS_UNEXP_ERROR if unexpected error occurs
448: -- x_msg_count
449: -- The number of error messages to be returned (1 in this case)
450: -- x_msg_data
451: -- The error message if the msg ct > 0 should be retrieved using FND_MSG_PUB.get
452: --
453: --Testing: -
454: --End of Comments
455: -------------------------------------------------------------------------------------------------

Line 531: -- The error message if the msg ct > 0 should be retrieved using FND_MSG_PUB.get

527: -- (c) FND_API.G_RET_STS_UNEXP_ERROR if unexpected error occurs
528: -- x_msg_count
529: -- The number of error messages to be returned (1 in this case)
530: -- x_msg_data
531: -- The error message if the msg ct > 0 should be retrieved using FND_MSG_PUB.get
532: --
533: --
534: --Testing: -
535: --End of Comments

Line 605: -- The error message if the msg ct > 0 should be retrieved using FND_MSG_PUB.get

601: -- (c) FND_API.G_RET_STS_UNEXP_ERROR if unexpected error occurs
602: -- x_msg_count
603: -- The number of error messages to be returned (1 in this case)
604: -- x_msg_data
605: -- The error message if the msg ct > 0 should be retrieved using FND_MSG_PUB.get
606: --
607: --
608: --Testing: -
609: --End of Comments

Line 676: -- The error message if the msg ct > 0 should be retrieved using FND_MSG_PUB.get

672: -- (c) FND_API.G_RET_STS_UNEXP_ERROR if unexpected error occurs
673: -- x_msg_count
674: -- The number of error messages to be returned (1 in this case)
675: -- x_msg_data
676: -- The error message if the msg ct > 0 should be retrieved using FND_MSG_PUB.get
677: --
678: --Testing: -
679: --End of Comments
680: -------------------------------------------------------------------------------------------------------

Line 754: -- The error message if the msg ct > 0 should be retrieved using FND_MSG_PUB.get

750: -- (c) FND_API.G_RET_STS_UNEXP_ERROR if unexpected error occurs
751: -- x_msg_count
752: -- The number of error messages to be returned (1 in this case)
753: -- x_msg_data
754: -- The error message if the msg ct > 0 should be retrieved using FND_MSG_PUB.get
755: --
756: --
757: --End of Comments
758: ------------------------------------------------------------------------------------------------

Line 780: FND_MSG_PUB.initialize;

776: SAVEPOINT set_final_match_flag_PVT;
777:
778: -- Initialize message list if p_init_msg_list is set to TRUE.
779: IF FND_API.to_Boolean (p_init_msg_list) THEN
780: FND_MSG_PUB.initialize;
781: END IF;
782:
783: -- Initialize return status and msg data
784: x_ret_status := FND_API.G_RET_STS_SUCCESS;

Line 816: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,

812: COMMIT;
813: END IF;
814:
815: -- Standard call to get message count and if count is 1, get message info.
816: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,
817: p_data => x_msg_data );
818:
819:
820: EXCEPTION

Line 826: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,

822: WHEN FND_API.G_EXC_ERROR THEN
823:
824: ROLLBACK TO set_final_match_flag_PVT;
825: x_ret_status := FND_API.G_RET_STS_ERROR ;
826: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,
827: p_data => x_msg_data );
828:
829:
830: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN

Line 834: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,

830: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
831:
832: ROLLBACK TO set_final_match_flag_PVT;
833: x_ret_status := FND_API.G_RET_STS_UNEXP_ERROR ;
834: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,
835: p_data => x_msg_data );
836:
837: WHEN OTHERS THEN
838:

Line 841: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,

837: WHEN OTHERS THEN
838:
839: ROLLBACK TO set_final_match_flag_PVT;
840: x_ret_status := FND_API.G_RET_STS_UNEXP_ERROR ;
841: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,
842: p_data => x_msg_data );
843:
844: END set_final_match_flag;
845: