DBA Data[Home] [Help]

APPS.HZ_EXTRACT_PARTY_USAGE_BO_PVT 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_owner_table_id party id
26: -- p_owner_table_name hz_parties
27: --
28: -- OUT:

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

27: --
28: -- OUT:
29: -- x_party_usage_objs Table of party usage objects.
30: -- x_return_status Return status after the call. The status can
31: -- be fnd_api.g_ret_sts_success (success),
32: -- fnd_api.g_ret_sts_error (error),
33: -- FND_API.G_RET_STS_UNEXP_ERROR (unexpected error).
34: -- x_msg_count Number of messages in message stack.
35: -- x_msg_data Message text if x_msg_count is 1.

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

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

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

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

Line 48: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,

44:
45:
46:
47: PROCEDURE get_party_usage_bos(
48: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
49: p_owner_table_id IN NUMBER,
50: p_owner_table_name IN VARCHAR2,
51: p_action_type IN VARCHAR2 := NULL,
52: x_party_usage_objs OUT NOCOPY HZ_PARTY_USAGE_OBJ_TBL,

Line 105: x_return_status := FND_API.G_RET_STS_SUCCESS;

101:
102:
103: begin
104: -- initialize API return status to success.
105: x_return_status := FND_API.G_RET_STS_SUCCESS;
106:
107: -- Initialize message list if p_init_msg_list is set to TRUE
108: IF FND_API.to_Boolean(p_init_msg_list) THEN
109: FND_MSG_PUB.initialize;

Line 108: IF FND_API.to_Boolean(p_init_msg_list) THEN

104: -- initialize API return status to success.
105: x_return_status := FND_API.G_RET_STS_SUCCESS;
106:
107: -- Initialize message list if p_init_msg_list is set to TRUE
108: IF FND_API.to_Boolean(p_init_msg_list) THEN
109: FND_MSG_PUB.initialize;
110: END IF;
111:
112: -- Debug info.

Line 144: x_return_status := fnd_api.g_ret_sts_unexp_error;

140:
141:
142: EXCEPTION
143: WHEN OTHERS THEN
144: x_return_status := fnd_api.g_ret_sts_unexp_error;
145:
146: fnd_message.set_name('AR', 'HZ_API_OTHERS_EXCEP');
147: fnd_message.set_token('ERROR' ,SQLERRM);
148: fnd_msg_pub.add;

Line 150: fnd_msg_pub.count_and_get(p_encoded => fnd_api.g_false,

146: fnd_message.set_name('AR', 'HZ_API_OTHERS_EXCEP');
147: fnd_message.set_token('ERROR' ,SQLERRM);
148: fnd_msg_pub.add;
149:
150: fnd_msg_pub.count_and_get(p_encoded => fnd_api.g_false,
151: p_count => x_msg_count,
152: p_data => x_msg_data);
153:
154: -- Debug info.