DBA Data[Home] [Help]

APPS.AST_UWQ_OLIST_MSG_PKG dependencies on FND_MESSAGE

Line 61: fnd_message.set_name('AST','AST_UWQ_INVALID_SOURCE');

57: null;
58: else
59: -- ERROR --
60: x_return_status := FND_API.g_ret_sts_unexp_error;
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;

Line 62: l_error_msg := fnd_message.get;

58: else
59: -- ERROR --
60: x_return_status := FND_API.g_ret_sts_unexp_error;
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;

Line 63: FND_MESSAGE.Set_Name('AST', 'AST_API_ERR');

59: -- ERROR --
60: x_return_status := FND_API.g_ret_sts_unexp_error;
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;

Line 64: FND_MESSAGE.Set_Token('TEXT', l_error_msg || ' ' || l_description, FALSE);

60: x_return_status := FND_API.g_ret_sts_unexp_error;
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;

Line 70: fnd_message.set_name('AST','AST_NO_SOURCE_DATA');

66: RAISE FND_API.G_EXC_ERROR;
67: end if;
68: CLOSE c_source_description;
69: else
70: fnd_message.set_name('AST','AST_NO_SOURCE_DATA');
71: l_no_source := fnd_message.get;
72: l_description := '< '|| l_no_source || ': > ';
73: end if;
74:

Line 71: l_no_source := fnd_message.get;

67: end if;
68: CLOSE c_source_description;
69: else
70: fnd_message.set_name('AST','AST_NO_SOURCE_DATA');
71: l_no_source := fnd_message.get;
72: l_description := '< '|| l_no_source || ': > ';
73: end if;
74:
75: -- setting the OUT variables -begin