DBA Data[Home] [Help]

APPS.CST_TPRICE_PVT dependencies on FND_MSG_PUB

Line 118: FND_MSG_PUB.initialize;

114:
115: -- Initialize message list if p_init_msg_list is set to TRUE
116: l_stmt_num := 20;
117: if FND_API.to_Boolean(p_init_msg_list) then
118: FND_MSG_PUB.initialize;
119: end if;
120:
121: -- Initialize API return status and local variables
122: l_stmt_num := 30;

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

669: COMMIT WORK;
670: end if;
671:
672: -- Standard call to get message count and message info
673: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count,
674: p_data => x_msg_data);
675:
676: if (G_DEBUG = 'Y') then
677: FND_FILE.put_line(FND_FILE.LOG, 'Out of procedure CST_TPRICE_PVT.Adjust_Acct');

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

685: x_error_num := 9999;
686: x_error_code := 'CST_TPRICE_INV_ACCT_ERROR';
687: FND_MESSAGE.set_name('BOM', 'CST_TPRICE_INV_ACCT_ERROR');
688: x_error_message := FND_MESSAGE.Get;
689: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count,
690: p_data => x_msg_data);
691:
692: when prf_inv_acct_err then
693: rollback to Adjust_Acct_PVT;

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

695: x_error_num := 9999;
696: x_error_code := 'CST_NO_PROFIT_INV_ACCT';
697: FND_MESSAGE.set_name('BOM', 'CST_NO_PROFIT_INV_ACCT');
698: x_error_message := FND_MESSAGE.Get;
699: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count,
700: p_data => x_msg_data);
701:
702: when process_error then
703: rollback to Adjust_Acct_PVT;

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

704: x_return_status := FND_API.g_ret_sts_error;
705: x_error_num := l_err_num;
706: x_error_code := l_err_code;
707: x_error_message := l_err_msg;
708: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count,
709: p_data => x_msg_data);
710:
711: when others then
712: rollback to Adjust_Acct_PVT;

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

713: x_return_status := FND_API.g_ret_sts_error;
714: x_error_num := SQLCODE;
715: x_error_message := 'CST_TPRICE.adjust_acct(' || to_char(l_stmt_num) || ') ' ||
716: substr(SQLERRM,1,180);
717: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count,
718: p_data => x_msg_data);
719:
720: END Adjust_Acct;
721: