DBA Data[Home] [Help]

APPS.INV_MWB_CYCLE_COUNT dependencies on FND_MSG_PUB

Line 134: fnd_msg_pub.count_and_get

130: WHEN fnd_api.g_exc_error THEN
131:
132: x_return_status := fnd_api.g_ret_sts_error;
133: ROLLBACK TO mwb_create_cc;
134: fnd_msg_pub.count_and_get
135: ( p_count => x_msg_count,
136: p_data => x_msg_data
137: );
138: WHEN fnd_api.g_exc_unexpected_error THEN

Line 141: fnd_msg_pub.count_and_get

137: );
138: WHEN fnd_api.g_exc_unexpected_error THEN
139: x_return_status := fnd_api.g_ret_sts_unexp_error ;
140: ROLLBACK TO mwb_create_cc;
141: fnd_msg_pub.count_and_get
142: ( p_count => x_msg_count,
143: p_data => x_msg_data
144: );
145: WHEN OTHERS THEN

Line 148: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error)

144: );
145: WHEN OTHERS THEN
146: x_return_status := fnd_api.g_ret_sts_unexp_error;
147: ROLLBACK TO mwb_create_cc;
148: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error)
149: THEN
150: fnd_msg_pub.add_exc_msg
151: ( g_pkg_name
152: , 'mwb_create_cc_details'

Line 150: fnd_msg_pub.add_exc_msg

146: x_return_status := fnd_api.g_ret_sts_unexp_error;
147: ROLLBACK TO mwb_create_cc;
148: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error)
149: THEN
150: fnd_msg_pub.add_exc_msg
151: ( g_pkg_name
152: , 'mwb_create_cc_details'
153: );
154: END IF;

Line 155: fnd_msg_pub.count_and_get

151: ( g_pkg_name
152: , 'mwb_create_cc_details'
153: );
154: END IF;
155: fnd_msg_pub.count_and_get
156: ( p_count => x_msg_count,
157: p_data => x_msg_data
158: );
159: