DBA Data[Home] [Help]

APPS.AST_UWQ_LLIST_MSG_PKG dependencies on FND_MESSAGE

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

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

Line 63: l_error_msg := fnd_message.get;

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

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

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

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

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

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

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

Line 73: l_no_source := fnd_message.get;

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