DBA Data[Home] [Help]

APPS.IGW_INSTALLMENTS_PVT dependencies on FND_MSG_PUB

Line 41: Fnd_Msg_Pub.Add;

37:
38: WHEN no_data_found THEN
39:
40: Fnd_Message.Set_Name('IGW','IGW_SS_RECORD_CHANGED');
41: Fnd_Msg_Pub.Add;
42:
43: WHEN others THEN
44:
45: Fnd_Msg_Pub.Add_Exc_Msg

Line 45: Fnd_Msg_Pub.Add_Exc_Msg

41: Fnd_Msg_Pub.Add;
42:
43: WHEN others THEN
44:
45: Fnd_Msg_Pub.Add_Exc_Msg
46: (
47: p_pkg_name => G_PKG_NAME,
48: p_procedure_name => l_api_name
49: );

Line 88: Fnd_Msg_Pub.Add;

84: Fnd_Message.Set_Name('IGW','IGW_SS_INSTALL_TYPE_INVALID');
85:
86: END IF;
87:
88: Fnd_Msg_Pub.Add;
89:
90: RETURN null;
91:
92: WHEN others THEN

Line 94: Fnd_Msg_Pub.Add_Exc_Msg

90: RETURN null;
91:
92: WHEN others THEN
93:
94: Fnd_Msg_Pub.Add_Exc_Msg
95: (
96: p_pkg_name => G_PKG_NAME,
97: p_procedure_name => l_api_name||' : '||p_lookup_type
98: );

Line 155: Fnd_Msg_Pub.Initialize;

151: x_return_status := Fnd_Api.G_Ret_Sts_Success;
152:
153: IF Fnd_Api.To_Boolean(p_init_msg_list) THEN
154:
155: Fnd_Msg_Pub.Initialize;
156:
157: END IF;
158:
159:

Line 165: Fnd_Msg_Pub.Add;

161:
162: IF p_start_date > p_end_date THEN
163:
164: Fnd_Message.Set_Name('GMS','GMS_INST_ENDATE_BEF_INS_STDATE');
165: Fnd_Msg_Pub.Add;
166:
167: END IF;
168:
169: IF p_end_date > p_close_date THEN

Line 172: Fnd_Msg_Pub.Add;

168:
169: IF p_end_date > p_close_date THEN
170:
171: Fnd_Message.Set_Name('GMS','GMS_INS_CLOSEDATE_BEF_ENDDATE') ;
172: Fnd_Msg_Pub.Add;
173:
174: END IF;
175:
176:

Line 177: IF Fnd_Msg_Pub.Count_Msg > 0 THEN

173:
174: END IF;
175:
176:
177: IF Fnd_Msg_Pub.Count_Msg > 0 THEN
178:
179: RAISE Fnd_Api.G_Exc_Error;
180:
181: END IF;

Line 236: Fnd_Msg_Pub.Count_And_Get

232: ROLLBACK TO Create_Installment_Pvt;
233:
234: x_return_status := Fnd_Api.G_Ret_Sts_Error;
235:
236: Fnd_Msg_Pub.Count_And_Get
237: (
238: p_count => x_msg_count,
239: p_data => x_msg_data
240: );

Line 248: Fnd_Msg_Pub.Count_And_Get

244: ROLLBACK TO Create_Installment_Pvt;
245:
246: x_return_status := Fnd_Api.G_Ret_Sts_Unexp_Error;
247:
248: Fnd_Msg_Pub.Count_And_Get
249: (
250: p_count => x_msg_count,
251: p_data => x_msg_data
252: );

Line 260: Fnd_Msg_Pub.Add_Exc_Msg

256: ROLLBACK TO Create_Installment_Pvt;
257:
258: x_return_status := Fnd_Api.G_Ret_Sts_Unexp_Error;
259:
260: Fnd_Msg_Pub.Add_Exc_Msg
261: (
262: p_pkg_name => G_PKG_NAME,
263: p_procedure_name => l_api_name
264: );

Line 266: Fnd_Msg_Pub.Count_And_Get

262: p_pkg_name => G_PKG_NAME,
263: p_procedure_name => l_api_name
264: );
265:
266: Fnd_Msg_Pub.Count_And_Get
267: (
268: p_count => x_msg_count,
269: p_data => x_msg_data
270: );

Line 326: Fnd_Msg_Pub.Initialize;

322: x_return_status := Fnd_Api.G_Ret_Sts_Success;
323:
324: IF Fnd_Api.To_Boolean(p_init_msg_list) THEN
325:
326: Fnd_Msg_Pub.Initialize;
327:
328: END IF;
329:
330:

Line 348: IF Fnd_Msg_Pub.Count_Msg > 0 THEN

344: ** the earlier stages
345: */
346:
347:
348: IF Fnd_Msg_Pub.Count_Msg > 0 THEN
349:
350: RAISE Fnd_Api.G_Exc_Error;
351:
352: END IF;

Line 359: Fnd_Msg_Pub.Add;

355:
356: IF p_start_date > p_end_date THEN
357:
358: Fnd_Message.Set_Name('GMS','GMS_INST_ENDATE_BEF_INS_STDATE');
359: Fnd_Msg_Pub.Add;
360:
361: END IF;
362:
363: IF p_end_date > p_close_date THEN

Line 366: Fnd_Msg_Pub.Add;

362:
363: IF p_end_date > p_close_date THEN
364:
365: Fnd_Message.Set_Name('GMS','GMS_INS_CLOSEDATE_BEF_ENDDATE') ;
366: Fnd_Msg_Pub.Add;
367:
368: END IF;
369:
370:

Line 371: IF Fnd_Msg_Pub.Count_Msg > 0 THEN

367:
368: END IF;
369:
370:
371: IF Fnd_Msg_Pub.Count_Msg > 0 THEN
372:
373: RAISE Fnd_Api.G_Exc_Error;
374:
375: END IF;

Line 431: Fnd_Msg_Pub.Count_And_Get

427: ROLLBACK TO Update_Installment_Pvt;
428:
429: x_return_status := Fnd_Api.G_Ret_Sts_Error;
430:
431: Fnd_Msg_Pub.Count_And_Get
432: (
433: p_count => x_msg_count,
434: p_data => x_msg_data
435: );

Line 443: Fnd_Msg_Pub.Count_And_Get

439: ROLLBACK TO Update_Installment_Pvt;
440:
441: x_return_status := Fnd_Api.G_Ret_Sts_Unexp_Error;
442:
443: Fnd_Msg_Pub.Count_And_Get
444: (
445: p_count => x_msg_count,
446: p_data => x_msg_data
447: );

Line 455: Fnd_Msg_Pub.Add_Exc_Msg

451: ROLLBACK TO Update_Installment_Pvt;
452:
453: x_return_status := Fnd_Api.G_Ret_Sts_Unexp_Error;
454:
455: Fnd_Msg_Pub.Add_Exc_Msg
456: (
457: p_pkg_name => G_PKG_NAME,
458: p_procedure_name => l_api_name
459: );

Line 461: Fnd_Msg_Pub.Count_And_Get

457: p_pkg_name => G_PKG_NAME,
458: p_procedure_name => l_api_name
459: );
460:
461: Fnd_Msg_Pub.Count_And_Get
462: (
463: p_count => x_msg_count,
464: p_data => x_msg_data
465: );

Line 504: Fnd_Msg_Pub.Initialize;

500: x_return_status := Fnd_Api.G_Ret_Sts_Success;
501:
502: IF Fnd_Api.To_Boolean(p_init_msg_list) THEN
503:
504: Fnd_Msg_Pub.Initialize;
505:
506: END IF;
507:
508:

Line 524: IF Fnd_Msg_Pub.Count_Msg > 0 THEN

520: ** Discontinue processing if any error has been encountered during
521: ** the earlier stages
522: */
523:
524: IF Fnd_Msg_Pub.Count_Msg > 0 THEN
525:
526: RAISE Fnd_Api.G_Exc_Error;
527:
528: END IF;

Line 572: Fnd_Msg_Pub.Count_And_Get

568: ROLLBACK TO Delete_Installment_Pvt;
569:
570: x_return_status := Fnd_Api.G_Ret_Sts_Error;
571:
572: Fnd_Msg_Pub.Count_And_Get
573: (
574: p_count => x_msg_count,
575: p_data => x_msg_data
576: );

Line 584: Fnd_Msg_Pub.Count_And_Get

580: ROLLBACK TO Delete_Installment_Pvt;
581:
582: x_return_status := Fnd_Api.G_Ret_Sts_Unexp_Error;
583:
584: Fnd_Msg_Pub.Count_And_Get
585: (
586: p_count => x_msg_count,
587: p_data => x_msg_data
588: );

Line 596: Fnd_Msg_Pub.Add_Exc_Msg

592: ROLLBACK TO Delete_Installment_Pvt;
593:
594: x_return_status := Fnd_Api.G_Ret_Sts_Unexp_Error;
595:
596: Fnd_Msg_Pub.Add_Exc_Msg
597: (
598: p_pkg_name => G_PKG_NAME,
599: p_procedure_name => l_api_name
600: );

Line 602: Fnd_Msg_Pub.Count_And_Get

598: p_pkg_name => G_PKG_NAME,
599: p_procedure_name => l_api_name
600: );
601:
602: Fnd_Msg_Pub.Count_And_Get
603: (
604: p_count => x_msg_count,
605: p_data => x_msg_data
606: );