DBA Data[Home] [Help]

APPS.AST_UWQ_LLIST_MSG_PKG dependencies on FND_MSG_PUB

Line 66: FND_MSG_PUB.ADD;

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

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

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

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

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