DBA Data[Home] [Help]

APPS.AST_UWQ_OLIST_MSG_PKG dependencies on FND_MSG_PUB

Line 65: FND_MSG_PUB.ADD;

61: fnd_message.set_name('AST','AST_UWQ_INVALID_SOURCE');
62: l_error_msg := fnd_message.get;
63: FND_MESSAGE.Set_Name('AST', 'AST_API_ERR');
64: FND_MESSAGE.Set_Token('TEXT', l_error_msg || ' ' || l_description, FALSE);
65: FND_MSG_PUB.ADD;
66: RAISE FND_API.G_EXC_ERROR;
67: end if;
68: CLOSE c_source_description;
69: else

Line 80: fnd_msg_pub.Count_And_Get(p_count => x_msg_count,

76:
77: x_mesg_data_char :=l_description;
78: x_return_status :=fnd_api.g_ret_sts_success;
79:
80: fnd_msg_pub.Count_And_Get(p_count => x_msg_count,
81: p_data => x_msg_data);
82:
83: -- setting the OUT variables -end
84: end if; -- end of main "if"

Line 96: fnd_msg_pub.Count_And_Get(p_count => x_msg_count,

92:
93: when others then
94: x_return_status:=fnd_api.g_ret_sts_unexp_error;
95:
96: fnd_msg_pub.Count_And_Get(p_count => x_msg_count,
97: p_data => x_msg_data);
98:
99: END AST_UWQ_OLIST_MESSAGE;
100: