DBA Data[Home] [Help]

APPS.POS_HZ_PARTY_SITE_BO_TBL_PKG dependencies on FND_API

Line 24: -- p_init_msg_list Initialize message stack if it is set to FND_API.G_TRUE. Default is FND_API.G_FALSE.

20: -- EXTERNAL PROCEDURES/FUNCTIONS ACCESSED
21: --
22: -- ARGUMENTS
23: -- IN:
24: -- p_init_msg_list Initialize message stack if it is set to FND_API.G_TRUE. Default is FND_API.G_FALSE.
25: -- p_party_id party ID.
26: -- p_party_site_id party site ID. If this id is not passed in, multiple site objects will be returned.
27: -- p_party_site_os party site orig system.
28: -- p_party_site_osr party site orig system reference.

Line 33: -- be fnd_api.g_ret_sts_success (success),

29: --
30: -- OUT:
31: -- x_party_site_objs Logical party site records.
32: -- x_return_status Return status after the call. The status can
33: -- be fnd_api.g_ret_sts_success (success),
34: -- fnd_api.g_ret_sts_error (error),
35: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
36: -- x_msg_count Number of messages in message stack.
37: -- x_msg_data Message text if x_msg_count is 1.

Line 34: -- fnd_api.g_ret_sts_error (error),

30: -- OUT:
31: -- x_party_site_objs Logical party site records.
32: -- x_return_status Return status after the call. The status can
33: -- be fnd_api.g_ret_sts_success (success),
34: -- fnd_api.g_ret_sts_error (error),
35: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
36: -- x_msg_count Number of messages in message stack.
37: -- x_msg_data Message text if x_msg_count is 1.
38: --

Line 35: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).

31: -- x_party_site_objs Logical party site records.
32: -- x_return_status Return status after the call. The status can
33: -- be fnd_api.g_ret_sts_success (success),
34: -- fnd_api.g_ret_sts_error (error),
35: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
36: -- x_msg_count Number of messages in message stack.
37: -- x_msg_data Message text if x_msg_count is 1.
38: --
39: -- NOTES

Line 151: WHEN fnd_api.g_exc_error THEN

147: */
148: -- Comment by BVAMSI Ends here
149:
150: EXCEPTION
151: WHEN fnd_api.g_exc_error THEN
152:
153: x_return_status := fnd_api.g_ret_sts_error;
154: fnd_msg_pub.count_and_get(p_count => x_msg_count,
155: p_data => x_msg_data);

Line 153: x_return_status := fnd_api.g_ret_sts_error;

149:
150: EXCEPTION
151: WHEN fnd_api.g_exc_error THEN
152:
153: x_return_status := fnd_api.g_ret_sts_error;
154: fnd_msg_pub.count_and_get(p_count => x_msg_count,
155: p_data => x_msg_data);
156: WHEN fnd_api.g_exc_unexpected_error THEN
157:

Line 156: WHEN fnd_api.g_exc_unexpected_error THEN

152:
153: x_return_status := fnd_api.g_ret_sts_error;
154: fnd_msg_pub.count_and_get(p_count => x_msg_count,
155: p_data => x_msg_data);
156: WHEN fnd_api.g_exc_unexpected_error THEN
157:
158: x_return_status := fnd_api.g_ret_sts_unexp_error;
159: fnd_msg_pub.count_and_get(p_count => x_msg_count,
160: p_data => x_msg_data);

Line 158: x_return_status := fnd_api.g_ret_sts_unexp_error;

154: fnd_msg_pub.count_and_get(p_count => x_msg_count,
155: p_data => x_msg_data);
156: WHEN fnd_api.g_exc_unexpected_error THEN
157:
158: x_return_status := fnd_api.g_ret_sts_unexp_error;
159: fnd_msg_pub.count_and_get(p_count => x_msg_count,
160: p_data => x_msg_data);
161: WHEN OTHERS THEN
162:

Line 163: x_return_status := fnd_api.g_ret_sts_unexp_error;

159: fnd_msg_pub.count_and_get(p_count => x_msg_count,
160: p_data => x_msg_data);
161: WHEN OTHERS THEN
162:
163: x_return_status := fnd_api.g_ret_sts_unexp_error;
164:
165: fnd_msg_pub.count_and_get(p_count => x_msg_count,
166: p_data => x_msg_data);
167: