DBA Data[Home] [Help]

APPS.PN_VRA_CLIENT_EXTN dependencies on FND_MSG_PUB

Line 23: -- fnd_msg_pub.count_and_get

19: --Type: Procedure
20: --Description: This procedure can be used to calculate override.
21: --
22: --Called subprograms: fnd_message.set_name
23: -- fnd_msg_pub.count_and_get
24: --
25: --
26: -- History:
27: -- 12-Nov-2010 vkatta o Created

Line 66: fnd_msg_pub.ADD;

62: THEN
63: fnd_message.set_name ('MO'
64: , 'MO_ORG_INVALID'
65: );
66: fnd_msg_pub.ADD;
67: RAISE fnd_api.g_exc_error;
68: END IF;
69:
70: --- Verifying whether the VRA from exists or not.

Line 81: fnd_msg_pub.ADD;

77: THEN
78: fnd_message.set_name ('PN'
79: , 'PN_FUNCTION_SECURITY'
80: );
81: fnd_msg_pub.ADD;
82: RAISE fnd_api.g_exc_error;
83: END IF;
84: pnp_debug_pkg.LOG ( l_api_name_full
85: || ' Before Calculations ----- : ');

Line 136: fnd_msg_pub.count_and_get (p_encoded => fnd_api.g_false

132: pnp_debug_pkg.LOG ( l_api_name_full
133: || ' p_first_yr_rent : '
134: || p_first_yr_rent);
135:
136: fnd_msg_pub.count_and_get (p_encoded => fnd_api.g_false
137: , p_count => x_msg_count
138: , p_data => x_msg_data
139: );
140: EXCEPTION

Line 143: fnd_msg_pub.count_and_get (p_encoded => fnd_api.g_false

139: );
140: EXCEPTION
141: WHEN fnd_api.g_exc_error
142: THEN
143: fnd_msg_pub.count_and_get (p_encoded => fnd_api.g_false
144: , p_count => x_msg_count
145: , p_data => x_msg_data
146: );
147: x_return_status := fnd_api.g_ret_sts_error;

Line 160: fnd_msg_pub.count_and_get (p_encoded => fnd_api.g_false

156: );
157:
158: WHEN fnd_api.g_exc_unexpected_error
159: THEN
160: fnd_msg_pub.count_and_get (p_encoded => fnd_api.g_false
161: , p_count => x_msg_count
162: , p_data => x_msg_data
163: );
164: x_return_status := fnd_api.g_ret_sts_unexp_error;

Line 176: fnd_msg_pub.count_and_get (p_encoded => fnd_api.g_false

172: || x_msg_count
173: );
174: WHEN OTHERS
175: THEN
176: fnd_msg_pub.count_and_get (p_encoded => fnd_api.g_false
177: , p_count => x_msg_count
178: , p_data => x_msg_data
179: );
180: x_return_status := fnd_api.g_ret_sts_error;