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 676: FND_MSG_PUB.Count_And_Get(p_count => x_msg_count,

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

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

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

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

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

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

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

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

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