DBA Data[Home] [Help]

APPS.PO_AP_INVOICE_MATCH_GRP dependencies on FND_MSG_PUB

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

391: -- (c) FND_API.G_RET_STS_UNEXP_ERROR if unexpected error occurs
392: -- x_msg_count
393: -- The number of error messages to be returned (1 in this case)
394: -- x_msg_data
395: -- The error message if the msg ct > 0 should be retrieved using FND_MSG_PUB.get
396: --
397: --Testing: -
398: --End of Comments
399: -------------------------------------------------------------------------------------------------

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

471: -- (c) FND_API.G_RET_STS_UNEXP_ERROR if unexpected error occurs
472: -- x_msg_count
473: -- The number of error messages to be returned (1 in this case)
474: -- x_msg_data
475: -- The error message if the msg ct > 0 should be retrieved using FND_MSG_PUB.get
476: --
477: --
478: --Testing: -
479: --End of Comments

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

545: -- (c) FND_API.G_RET_STS_UNEXP_ERROR if unexpected error occurs
546: -- x_msg_count
547: -- The number of error messages to be returned (1 in this case)
548: -- x_msg_data
549: -- The error message if the msg ct > 0 should be retrieved using FND_MSG_PUB.get
550: --
551: --
552: --Testing: -
553: --End of Comments

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

616: -- (c) FND_API.G_RET_STS_UNEXP_ERROR if unexpected error occurs
617: -- x_msg_count
618: -- The number of error messages to be returned (1 in this case)
619: -- x_msg_data
620: -- The error message if the msg ct > 0 should be retrieved using FND_MSG_PUB.get
621: --
622: --Testing: -
623: --End of Comments
624: -------------------------------------------------------------------------------------------------------

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

694: -- (c) FND_API.G_RET_STS_UNEXP_ERROR if unexpected error occurs
695: -- x_msg_count
696: -- The number of error messages to be returned (1 in this case)
697: -- x_msg_data
698: -- The error message if the msg ct > 0 should be retrieved using FND_MSG_PUB.get
699: --
700: --
701: --End of Comments
702: ------------------------------------------------------------------------------------------------

Line 724: FND_MSG_PUB.initialize;

720: SAVEPOINT set_final_match_flag_PVT;
721:
722: -- Initialize message list if p_init_msg_list is set to TRUE.
723: IF FND_API.to_Boolean (p_init_msg_list) THEN
724: FND_MSG_PUB.initialize;
725: END IF;
726:
727: -- Initialize return status and msg data
728: x_ret_status := FND_API.G_RET_STS_SUCCESS;

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

756: COMMIT;
757: END IF;
758:
759: -- Standard call to get message count and if count is 1, get message info.
760: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,
761: p_data => x_msg_data );
762:
763:
764: EXCEPTION

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

766: WHEN FND_API.G_EXC_ERROR THEN
767:
768: ROLLBACK TO set_final_match_flag_PVT;
769: x_ret_status := FND_API.G_RET_STS_ERROR ;
770: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,
771: p_data => x_msg_data );
772:
773:
774: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN

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

774: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
775:
776: ROLLBACK TO set_final_match_flag_PVT;
777: x_ret_status := FND_API.G_RET_STS_UNEXP_ERROR ;
778: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,
779: p_data => x_msg_data );
780:
781: WHEN OTHERS THEN
782:

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

781: WHEN OTHERS THEN
782:
783: ROLLBACK TO set_final_match_flag_PVT;
784: x_ret_status := FND_API.G_RET_STS_UNEXP_ERROR ;
785: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count,
786: p_data => x_msg_data );
787:
788: END set_final_match_flag;
789: