DBA Data[Home] [Help]

APPS.CN_PERIOD_QUOTAS_GRP dependencies on FND_MSG_PUB

Line 123: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_error)

119: -- Check Quota ID is Not Null
120: --+
121: IF x_quota_id IS NULL AND p_quota_name IS NOT NULL
122: THEN
123: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_error)
124: THEN
125: fnd_message.set_name ('CN', 'CN_PLN_NOT_EXIST');
126: fnd_message.set_token ('PE_NAME', p_quota_name);
127: fnd_msg_pub.ADD;

Line 127: fnd_msg_pub.ADD;

123: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_error)
124: THEN
125: fnd_message.set_name ('CN', 'CN_PLN_NOT_EXIST');
126: fnd_message.set_token ('PE_NAME', p_quota_name);
127: fnd_msg_pub.ADD;
128: END IF;
129:
130: x_loading_status := 'CN_PLN_NOT_EXIST';
131: RAISE fnd_api.g_exc_error;

Line 141: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_error)

137: --Change made for duplicate.. added the quota status
138: IF (l_calc_formula_id IS NULL AND l_quota_type_code <> 'EXTERNAL'
139: AND p_is_duplicate = 'N')
140: THEN
141: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_error)
142: THEN
143: fnd_message.set_name ('CN', 'CN_QUOTA_FORMULA_NOT_EXIST');
144: fnd_message.set_token ('PE_NAME', p_quota_name);
145: fnd_msg_pub.ADD;

Line 145: fnd_msg_pub.ADD;

141: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_error)
142: THEN
143: fnd_message.set_name ('CN', 'CN_QUOTA_FORMULA_NOT_EXIST');
144: fnd_message.set_token ('PE_NAME', p_quota_name);
145: fnd_msg_pub.ADD;
146: END IF;
147:
148: x_loading_status := 'QUOTA_FORMULA_NOT_EXIST';
149: RAISE fnd_api.g_exc_error;

Line 159: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR)

155: -- Check Itd Flag is Y
156: --+
157:
158: /*IF Nvl(cn_api.get_itd_flag(l_calc_formula_id),'N') <> 'Y' THEN
159: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR)
160: THEN
161: FND_MESSAGE.SET_NAME('CN' , 'CN_QUOTA_CANNOT_HAVE_PERIODS');
162: FND_MESSAGE.SET_TOKEN('PE_NAME',p_quota_name );
163: FND_MSG_PUB.Add;

Line 163: FND_MSG_PUB.Add;

159: IF FND_MSG_PUB.Check_Msg_Level (FND_MSG_PUB.G_MSG_LVL_ERROR)
160: THEN
161: FND_MESSAGE.SET_NAME('CN' , 'CN_QUOTA_CANNOT_HAVE_PERIODS');
162: FND_MESSAGE.SET_TOKEN('PE_NAME',p_quota_name );
163: FND_MSG_PUB.Add;
164: END IF;
165: x_loading_status := 'QUOTA_CANNOT_HAVE_PERIODS';
166: RAISE FND_API.G_EXC_ERROR ;
167: END IF;*/

Line 179: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_error)

175: -- Check Period ID is Not Null
176: --+
177: IF x_period_id IS NULL AND p_period_quotas_rec.period_name IS NOT NULL
178: THEN
179: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_error)
180: THEN
181: fnd_message.set_name ('CN', 'CN_PERIOD_NOT_EXIST');
182: fnd_message.set_token ('PERIOD_NAME', p_period_quotas_rec.period_name);
183: fnd_msg_pub.ADD;

Line 183: fnd_msg_pub.ADD;

179: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_error)
180: THEN
181: fnd_message.set_name ('CN', 'CN_PERIOD_NOT_EXIST');
182: fnd_message.set_token ('PERIOD_NAME', p_period_quotas_rec.period_name);
183: fnd_msg_pub.ADD;
184: END IF;
185:
186: x_loading_status := 'CN_PERIOD_NOT_EXIST';
187: RAISE fnd_api.g_exc_error;

Line 205: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_error)

201:
202: IF TRUNC (l_period_start_date) < TRUNC (cn_period_quotas_pkg.previous_period (l_quota_start_date,l_org_id))
203: OR TRUNC (l_period_end_date) > TRUNC (cn_api.next_period (NVL (l_quota_end_date, l_period_end_date), l_org_id))
204: THEN
205: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_error)
206: THEN
207: fnd_message.set_name ('CN', 'CN_PRD_DT_NOT_WIN_QUOTA_DT');
208: fnd_msg_pub.ADD;
209: END IF;

Line 208: fnd_msg_pub.ADD;

204: THEN
205: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_error)
206: THEN
207: fnd_message.set_name ('CN', 'CN_PRD_DT_NOT_WIN_QUOTA_DT');
208: fnd_msg_pub.ADD;
209: END IF;
210:
211: x_loading_status := 'CN_PRD_DT_NOT_WIN_QUOTA_DT';
212: RAISE fnd_api.g_exc_error;

Line 234: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_error)

230: IF l_same_pe <> 0
231: THEN
232: -- Error, check the msg level and add an error message to the
233: -- API message list
234: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_error)
235: THEN
236: fnd_message.set_name ('CN', 'CN_PERIOD_QUOTA_EXISTS');
237: fnd_message.set_token ('PERIOD_NAME', p_period_quotas_rec.period_name);
238: fnd_message.set_token ('PE_NAME', p_quota_name);

Line 239: fnd_msg_pub.ADD;

235: THEN
236: fnd_message.set_name ('CN', 'CN_PERIOD_QUOTA_EXISTS');
237: fnd_message.set_token ('PERIOD_NAME', p_period_quotas_rec.period_name);
238: fnd_message.set_token ('PE_NAME', p_quota_name);
239: fnd_msg_pub.ADD;
240: END IF;
241:
242: x_loading_status := 'PERIOD_QUOTA_EXISTS';
243: END IF;

Line 249: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data, p_encoded => fnd_api.g_false);

245: EXCEPTION
246: WHEN fnd_api.g_exc_error
247: THEN
248: x_return_status := fnd_api.g_ret_sts_error;
249: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data, p_encoded => fnd_api.g_false);
250: WHEN fnd_api.g_exc_unexpected_error
251: THEN
252: x_return_status := fnd_api.g_ret_sts_unexp_error;
253: x_loading_status := 'UNEXPECTED_ERR';

Line 254: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data, p_encoded => fnd_api.g_false);

250: WHEN fnd_api.g_exc_unexpected_error
251: THEN
252: x_return_status := fnd_api.g_ret_sts_unexp_error;
253: x_loading_status := 'UNEXPECTED_ERR';
254: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data, p_encoded => fnd_api.g_false);
255: WHEN OTHERS
256: THEN
257: x_return_status := fnd_api.g_ret_sts_unexp_error;
258: x_loading_status := 'UNEXPECTED_ERR';

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

256: THEN
257: x_return_status := fnd_api.g_ret_sts_unexp_error;
258: x_loading_status := 'UNEXPECTED_ERR';
259:
260: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error)
261: THEN
262: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);
263: END IF;
264:

Line 262: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);

258: x_loading_status := 'UNEXPECTED_ERR';
259:
260: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error)
261: THEN
262: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);
263: END IF;
264:
265: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data, p_encoded => fnd_api.g_false);
266: END valid_period_quotas;

Line 265: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data, p_encoded => fnd_api.g_false);

261: THEN
262: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);
263: END IF;
264:
265: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data, p_encoded => fnd_api.g_false);
266: END valid_period_quotas;
267:
268: -- ----------------------------------------------------------------------------+
269: -- Procedure: Check Valid Update

Line 330: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_error)

326: -- Raise an error if quota not exists in the database
327: --+
328: IF x_quota_id_old IS NULL AND p_quota_name IS NOT NULL
329: THEN
330: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_error)
331: THEN
332: fnd_message.set_name ('CN', 'CN_PLN_NOT_EXIST');
333: fnd_message.set_token ('PE_NAME', p_quota_name);
334: fnd_msg_pub.ADD;

Line 334: fnd_msg_pub.ADD;

330: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_error)
331: THEN
332: fnd_message.set_name ('CN', 'CN_PLN_NOT_EXIST');
333: fnd_message.set_token ('PE_NAME', p_quota_name);
334: fnd_msg_pub.ADD;
335: END IF;
336:
337: x_loading_status := 'CN_PLN_NOT_EXIST';
338: RAISE fnd_api.g_exc_error;

Line 374: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_error)

370: -- Check Period ID is Not Null
371: --+
372: IF x_period_id_old IS NULL AND p_period_quotas_rec.period_name_old IS NOT NULL
373: THEN
374: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_error)
375: THEN
376: fnd_message.set_name ('CN', 'CN_PERIOD_NOT_EXIST');
377: fnd_message.set_token ('PERIOD_NAME', p_period_quotas_rec.period_name_old);
378: fnd_msg_pub.ADD;

Line 378: fnd_msg_pub.ADD;

374: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_error)
375: THEN
376: fnd_message.set_name ('CN', 'CN_PERIOD_NOT_EXIST');
377: fnd_message.set_token ('PERIOD_NAME', p_period_quotas_rec.period_name_old);
378: fnd_msg_pub.ADD;
379: END IF;
380:
381: x_loading_status := 'CN_PERIOD_NOT_EXIST';
382: RAISE fnd_api.g_exc_error;

Line 404: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_error)

400: -- Check record exists in the database for the period_quota_id.
401: --+
402: IF l_period_quotas_rec.period_quota_id IS NULL
403: THEN
404: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_error)
405: THEN
406: fnd_message.set_name ('CN', 'CN_PERIOD_QUOTA_NOT_EXIST');
407: fnd_message.set_token ('QUOTA_NAME', p_quota_name);
408: fnd_message.set_token ('PERIOD_NAME', p_period_quotas_rec.period_name_old);

Line 409: fnd_msg_pub.ADD;

405: THEN
406: fnd_message.set_name ('CN', 'CN_PERIOD_QUOTA_NOT_EXIST');
407: fnd_message.set_token ('QUOTA_NAME', p_quota_name);
408: fnd_message.set_token ('PERIOD_NAME', p_period_quotas_rec.period_name_old);
409: fnd_msg_pub.ADD;
410: END IF;
411:
412: x_loading_status := 'CN_PERIOD_QUOTA_NOT_EXIST';
413: RAISE fnd_api.g_exc_error;

Line 430: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_error)

426: -- Error, check the msg level and add an error message to the
427: -- API message list
428: l_meaning := cn_api.get_lkup_meaning ('PERIOD_ID', 'PERIOD_OBJECT_TYPE');
429:
430: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_error)
431: THEN
432: fnd_message.set_name ('CN', 'CN_PERIOD_NOT_CONSISTENT');
433: fnd_message.set_token ('QUOTA_NAME', p_quota_name);
434: fnd_message.set_token ('PERIOD_NAME', p_period_quotas_rec.period_name);

Line 436: fnd_msg_pub.ADD;

432: fnd_message.set_name ('CN', 'CN_PERIOD_NOT_CONSISTENT');
433: fnd_message.set_token ('QUOTA_NAME', p_quota_name);
434: fnd_message.set_token ('PERIOD_NAME', p_period_quotas_rec.period_name);
435: fnd_message.set_token ('OBJ_NAME', l_meaning);
436: fnd_msg_pub.ADD;
437: END IF;
438:
439: x_loading_status := 'CN_PERIOD_NOT_CONSISTENT';
440: RAISE fnd_api.g_exc_error;

Line 467: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data, p_encoded => fnd_api.g_false);

463: END IF;
464:
465: -- End of API body.
466: -- Standard call to get message count and if count is 1, get message info.
467: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data, p_encoded => fnd_api.g_false);
468: EXCEPTION
469: WHEN fnd_api.g_exc_error
470: THEN
471: x_return_status := fnd_api.g_ret_sts_error;

Line 472: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data, p_encoded => fnd_api.g_false);

468: EXCEPTION
469: WHEN fnd_api.g_exc_error
470: THEN
471: x_return_status := fnd_api.g_ret_sts_error;
472: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data, p_encoded => fnd_api.g_false);
473: WHEN fnd_api.g_exc_unexpected_error
474: THEN
475: x_return_status := fnd_api.g_ret_sts_unexp_error;
476: x_loading_status := 'UNEXPECTED_ERR';

Line 477: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data, p_encoded => fnd_api.g_false);

473: WHEN fnd_api.g_exc_unexpected_error
474: THEN
475: x_return_status := fnd_api.g_ret_sts_unexp_error;
476: x_loading_status := 'UNEXPECTED_ERR';
477: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data, p_encoded => fnd_api.g_false);
478: WHEN OTHERS
479: THEN
480: x_return_status := fnd_api.g_ret_sts_unexp_error;
481: x_loading_status := 'UNEXPECTED_ERR';

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

479: THEN
480: x_return_status := fnd_api.g_ret_sts_unexp_error;
481: x_loading_status := 'UNEXPECTED_ERR';
482:
483: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error)
484: THEN
485: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);
486: END IF;
487:

Line 485: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);

481: x_loading_status := 'UNEXPECTED_ERR';
482:
483: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error)
484: THEN
485: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);
486: END IF;
487:
488: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data, p_encoded => fnd_api.g_false);
489: END check_valid_update;

Line 488: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data, p_encoded => fnd_api.g_false);

484: THEN
485: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);
486: END IF;
487:
488: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data, p_encoded => fnd_api.g_false);
489: END check_valid_update;
490:
491: --|-----------------------------------------------------------------------+
492: --| Procedure Name: Create_Period_Quotas

Line 535: fnd_msg_pub.initialize;

531: -- Initialize message list if p_init_msg_list is set to TRUE.
532: -- +
533: IF fnd_api.to_boolean (p_init_msg_list)
534: THEN
535: fnd_msg_pub.initialize;
536: END IF;
537:
538: -- +
539: -- Initialize API return status to success

Line 616: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data, p_encoded => fnd_api.g_false);

612:
613: --+
614: -- Standard call to get message count and if count is 1, get message info.
615: --+
616: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data, p_encoded => fnd_api.g_false);
617: EXCEPTION
618: WHEN fnd_api.g_exc_error
619: THEN
620: ROLLBACK TO create_period_quotas;

Line 622: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data, p_encoded => fnd_api.g_false);

618: WHEN fnd_api.g_exc_error
619: THEN
620: ROLLBACK TO create_period_quotas;
621: x_return_status := fnd_api.g_ret_sts_error;
622: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data, p_encoded => fnd_api.g_false);
623: WHEN fnd_api.g_exc_unexpected_error
624: THEN
625: ROLLBACK TO create_period_quotas;
626: x_loading_status := 'UNEXPECTED_ERR';

Line 628: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data, p_encoded => fnd_api.g_false);

624: THEN
625: ROLLBACK TO create_period_quotas;
626: x_loading_status := 'UNEXPECTED_ERR';
627: x_return_status := fnd_api.g_ret_sts_unexp_error;
628: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data, p_encoded => fnd_api.g_false);
629: WHEN OTHERS
630: THEN
631: ROLLBACK TO create_period_quotas;
632: x_loading_status := 'UNEXPECTED_ERR';

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

631: ROLLBACK TO create_period_quotas;
632: x_loading_status := 'UNEXPECTED_ERR';
633: x_return_status := fnd_api.g_ret_sts_unexp_error;
634:
635: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error)
636: THEN
637: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);
638: END IF;
639:

Line 637: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);

633: x_return_status := fnd_api.g_ret_sts_unexp_error;
634:
635: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error)
636: THEN
637: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);
638: END IF;
639:
640: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data, p_encoded => fnd_api.g_false);
641: END create_period_quotas;

Line 640: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data, p_encoded => fnd_api.g_false);

636: THEN
637: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);
638: END IF;
639:
640: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data, p_encoded => fnd_api.g_false);
641: END create_period_quotas;
642:
643: --|-----------------------------------------------------------------------+
644: --| Procedure Name: Update_Period_Quotas

Line 686: fnd_msg_pub.initialize;

682: -- Initialize message list if p_init_msg_list is set to TRUE.
683: -- +
684: IF fnd_api.to_boolean (p_init_msg_list)
685: THEN
686: fnd_msg_pub.initialize;
687: END IF;
688:
689: -- +
690: -- Initialize API return status to success

Line 756: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data, p_encoded => fnd_api.g_false);

752:
753: --+
754: -- Standard call to get message count and if count is 1, get message info.
755: --+
756: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data, p_encoded => fnd_api.g_false);
757: EXCEPTION
758: WHEN fnd_api.g_exc_error
759: THEN
760: ROLLBACK TO update_plan_element;

Line 762: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data, p_encoded => fnd_api.g_false);

758: WHEN fnd_api.g_exc_error
759: THEN
760: ROLLBACK TO update_plan_element;
761: x_return_status := fnd_api.g_ret_sts_error;
762: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data, p_encoded => fnd_api.g_false);
763: WHEN fnd_api.g_exc_unexpected_error
764: THEN
765: ROLLBACK TO update_plan_element;
766: x_loading_status := 'UNEXPECTED_ERR';

Line 768: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data, p_encoded => fnd_api.g_false);

764: THEN
765: ROLLBACK TO update_plan_element;
766: x_loading_status := 'UNEXPECTED_ERR';
767: x_return_status := fnd_api.g_ret_sts_unexp_error;
768: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data, p_encoded => fnd_api.g_false);
769: WHEN OTHERS
770: THEN
771: ROLLBACK TO update_plan_element;
772: x_loading_status := 'UNEXPECTED_ERR';

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

771: ROLLBACK TO update_plan_element;
772: x_loading_status := 'UNEXPECTED_ERR';
773: x_return_status := fnd_api.g_ret_sts_unexp_error;
774:
775: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error)
776: THEN
777: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);
778: END IF;
779:

Line 777: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);

773: x_return_status := fnd_api.g_ret_sts_unexp_error;
774:
775: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error)
776: THEN
777: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);
778: END IF;
779:
780: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data, p_encoded => fnd_api.g_false);
781: END update_period_quotas;

Line 780: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data, p_encoded => fnd_api.g_false);

776: THEN
777: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);
778: END IF;
779:
780: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data, p_encoded => fnd_api.g_false);
781: END update_period_quotas;
782: END cn_period_quotas_grp;