DBA Data[Home] [Help]

APPS.AST_UWQ_OLIST_MSG_PKG dependencies on FND_API

Line 60: x_return_status := FND_API.g_ret_sts_unexp_error;

56: if c_source_description%found then
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);

Line 66: RAISE FND_API.G_EXC_ERROR;

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
70: fnd_message.set_name('AST','AST_NO_SOURCE_DATA');

Line 78: x_return_status :=fnd_api.g_ret_sts_success;

74:
75: -- setting the OUT variables -begin
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:

Line 87: when fnd_api.g_exc_error then

83: -- setting the OUT variables -end
84: end if; -- end of main "if"
85: exception
86:
87: when fnd_api.g_exc_error then
88: x_return_status:=fnd_api.g_ret_sts_error;
89:
90: when fnd_api.g_exc_unexpected_error then
91: x_return_status:=fnd_api.g_ret_sts_unexp_error;

Line 88: x_return_status:=fnd_api.g_ret_sts_error;

84: end if; -- end of main "if"
85: exception
86:
87: when fnd_api.g_exc_error then
88: x_return_status:=fnd_api.g_ret_sts_error;
89:
90: when fnd_api.g_exc_unexpected_error then
91: x_return_status:=fnd_api.g_ret_sts_unexp_error;
92:

Line 90: when fnd_api.g_exc_unexpected_error then

86:
87: when fnd_api.g_exc_error then
88: x_return_status:=fnd_api.g_ret_sts_error;
89:
90: when fnd_api.g_exc_unexpected_error then
91: x_return_status:=fnd_api.g_ret_sts_unexp_error;
92:
93: when others then
94: x_return_status:=fnd_api.g_ret_sts_unexp_error;

Line 91: x_return_status:=fnd_api.g_ret_sts_unexp_error;

87: when fnd_api.g_exc_error then
88: x_return_status:=fnd_api.g_ret_sts_error;
89:
90: when fnd_api.g_exc_unexpected_error then
91: x_return_status:=fnd_api.g_ret_sts_unexp_error;
92:
93: when others then
94: x_return_status:=fnd_api.g_ret_sts_unexp_error;
95:

Line 94: x_return_status:=fnd_api.g_ret_sts_unexp_error;

90: when fnd_api.g_exc_unexpected_error then
91: x_return_status:=fnd_api.g_ret_sts_unexp_error;
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: