DBA Data[Home] [Help]

APPS.AST_UWQ_MLIST_MSG_PKG dependencies on FND_MSG_PUB

Line 71: FND_MSG_PUB.ADD;

67: fnd_message.set_name('AST','AST_UWQ_INVALID_CAMPAIGN');
68: l_error_msg := fnd_message.get;
69: FND_MESSAGE.Set_Name('AST', 'AST_API_ERR');
70: FND_MESSAGE.Set_Token('TEXT', l_error_msg || ' ' || l_description, FALSE);
71: FND_MSG_PUB.ADD;
72: RAISE FND_API.G_EXC_ERROR;
73: end if;
74: CLOSE c_camp_description;
75: elsif l_camp_descr is not null then

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

86:
87: x_mesg_data_char :=l_description;
88: x_return_status :=fnd_api.g_ret_sts_success;
89:
90: fnd_msg_pub.Count_And_Get(p_count => x_msg_count,
91: p_data => x_msg_data);
92:
93: -- setting the OUT variables -end
94: end if; -- end of main "if"

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

102:
103: when others then
104: x_return_status:=fnd_api.g_ret_sts_unexp_error;
105:
106: fnd_msg_pub.Count_And_Get(p_count => x_msg_count,
107: p_data => x_msg_data);
108:
109: END AST_UWQ_MLIST_MESSAGE;
110: