DBA Data[Home] [Help]

APPS.EDR_ERES_EVENT_PVT dependencies on FND_MSG_PUB

Line 171: FND_MSG_PUB.initialize;

167: END IF;
168:
169: -- Initialize message list if p_init_msg_list is set to TRUE.
170: IF FND_API.to_Boolean( p_init_msg_list ) THEN
171: FND_MSG_PUB.initialize;
172: END IF;
173:
174: -- Initialize API return status to success
175: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 311: FND_MSG_PUB.Add_Exc_Msg

307: --the rule function and add to the api error stack
308:
309: l_mesg_text := fnd_message.get();
310:
311: FND_MSG_PUB.Add_Exc_Msg
312: ( G_PKG_NAME ,
313: l_api_name ,
314: l_mesg_text
315: );

Line 345: FND_MSG_PUB.Count_And_Get

341: END IF;
342:
343: -- Standard call to get message count and if count is 1,
344: --get message info.
345: FND_MSG_PUB.Count_And_Get
346: ( p_count => x_msg_count ,
347: p_data => x_msg_data
348: );
349:

Line 358: FND_MSG_PUB.Count_And_Get

354:
355: -- this would pass on the validation errors to the calling
356: -- routine
357:
358: FND_MSG_PUB.Count_And_Get
359: ( p_count => x_msg_count ,
360: p_data => x_msg_data
361: );
362:

Line 370: FND_MSG_PUB.Add_Exc_Msg

366: x_event.erecord_id := null;
367:
368: l_mesg_text := fnd_message.get_string('EDR','EDR_EVENT_RAISE_ERROR');
369:
370: FND_MSG_PUB.Add_Exc_Msg
371: ( G_PKG_NAME ,
372: l_api_name ,
373: l_mesg_text
374: );

Line 376: FND_MSG_PUB.Count_And_Get

372: l_api_name ,
373: l_mesg_text
374: );
375:
376: FND_MSG_PUB.Count_And_Get
377: ( p_count => x_msg_count ,
378: p_data => x_msg_data
379: );
380:

Line 386: FND_MSG_PUB.Count_And_Get

382: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
383: x_event.event_status := EDR_CONSTANTS_GRP.g_error_status;
384: x_event.erecord_id := null;
385:
386: FND_MSG_PUB.Count_And_Get
387: ( p_count => x_msg_count ,
388: p_data => x_msg_data
389: );
390:

Line 402: FND_MSG_PUB.Add_Exc_Msg

398: fnd_message.set_token('ERECORD_ID', l_parent_erecord_id);
399: fnd_message.set_token('EVENT_NAME', x_event.event_name);
400: fnd_message.set_token('EVENT_KEY', x_event.event_key);
401: l_mesg_text := fnd_message.get();
402: FND_MSG_PUB.Add_Exc_Msg
403: (G_PKG_NAME,
404: l_api_name,
405: l_mesg_text
406: );

Line 407: FND_MSG_PUB.Count_And_Get

403: (G_PKG_NAME,
404: l_api_name,
405: l_mesg_text
406: );
407: FND_MSG_PUB.Count_And_Get
408: (p_count => x_msg_count,
409: p_data => x_msg_data
410: );
411: --Bug 4122622: End

Line 418: IF FND_MSG_PUB.Check_Msg_Level

414: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
415: x_event.event_status := EDR_CONSTANTS_GRP.g_error_status;
416: x_event.erecord_id := null;
417:
418: IF FND_MSG_PUB.Check_Msg_Level
419: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
420: THEN
421: FND_MSG_PUB.Add_Exc_Msg
422: ( G_PKG_NAME ,

Line 419: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

415: x_event.event_status := EDR_CONSTANTS_GRP.g_error_status;
416: x_event.erecord_id := null;
417:
418: IF FND_MSG_PUB.Check_Msg_Level
419: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
420: THEN
421: FND_MSG_PUB.Add_Exc_Msg
422: ( G_PKG_NAME ,
423: l_api_name

Line 421: FND_MSG_PUB.Add_Exc_Msg

417:
418: IF FND_MSG_PUB.Check_Msg_Level
419: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
420: THEN
421: FND_MSG_PUB.Add_Exc_Msg
422: ( G_PKG_NAME ,
423: l_api_name
424: );
425: END IF;

Line 427: FND_MSG_PUB.Count_And_Get

423: l_api_name
424: );
425: END IF;
426:
427: FND_MSG_PUB.Count_And_Get
428: ( p_count => x_msg_count ,
429: p_data => x_msg_data
430: );
431:

Line 639: FND_MSG_PUB.initialize;

635: END IF;
636:
637: -- Initialize message list if p_init_msg_list is set to TRUE.
638: IF FND_API.to_Boolean( p_init_msg_list ) THEN
639: FND_MSG_PUB.initialize;
640: END IF;
641:
642: -- Initialize API return status to success
643: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 760: FND_MSG_PUB.Count_And_Get

756: x_approver_count := i-1;
757:
758: -- Standard call to get message count and if count is 1,
759: --get message info.
760: FND_MSG_PUB.Count_And_Get
761: ( p_count => x_msg_count ,
762: p_data => x_msg_data
763: );
764:

Line 771: FND_MSG_PUB.Count_And_Get

767: x_return_status := FND_API.G_RET_STS_ERROR;
768:
769: -- this would pass on the validation errors to the calling
770: -- routine
771: FND_MSG_PUB.Count_And_Get
772: ( p_count => x_msg_count ,
773: p_data => x_msg_data
774: );
775: WHEN INVALID_USER_NAME_ERROR THEN

Line 780: FND_MSG_PUB.Count_And_Get

776: x_return_status := FND_API.G_RET_STS_ERROR;
777:
778: -- this would pass on the validation errors to the calling
779: -- routine
780: FND_MSG_PUB.Count_And_Get
781: ( p_count => x_msg_count ,
782: p_data => x_msg_data
783: );
784: WHEN MULTIPLE_ERES_SUBSCRIPTIONS THEN

Line 788: fnd_msg_pub.Add;

784: WHEN MULTIPLE_ERES_SUBSCRIPTIONS THEN
785: x_return_status := FND_API.G_RET_STS_ERROR;
786: FND_MESSAGE.SET_NAME('EDR','EDR_MULTI_ERES_SUBSCRP_ERR');
787: fnd_message.set_token( 'EVENT', p_event_NAME);
788: fnd_msg_pub.Add;
789: -- this would pass on the validation errors to the calling
790: -- routine
791: FND_MSG_PUB.Count_And_Get
792: ( p_count => x_msg_count ,

Line 791: FND_MSG_PUB.Count_And_Get

787: fnd_message.set_token( 'EVENT', p_event_NAME);
788: fnd_msg_pub.Add;
789: -- this would pass on the validation errors to the calling
790: -- routine
791: FND_MSG_PUB.Count_And_Get
792: ( p_count => x_msg_count ,
793: p_data => x_msg_data
794: );
795:

Line 799: FND_MSG_PUB.Count_And_Get

795:
796: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
797: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
798:
799: FND_MSG_PUB.Count_And_Get
800: ( p_count => x_msg_count ,
801: p_data => x_msg_data
802: );
803:

Line 807: IF FND_MSG_PUB.Check_Msg_Level

803:
804: WHEN OTHERS THEN
805: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
806:
807: IF FND_MSG_PUB.Check_Msg_Level
808: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
809: THEN
810: FND_MSG_PUB.Add_Exc_Msg
811: ( G_PKG_NAME ,

Line 808: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

804: WHEN OTHERS THEN
805: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
806:
807: IF FND_MSG_PUB.Check_Msg_Level
808: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
809: THEN
810: FND_MSG_PUB.Add_Exc_Msg
811: ( G_PKG_NAME ,
812: l_api_name

Line 810: FND_MSG_PUB.Add_Exc_Msg

806:
807: IF FND_MSG_PUB.Check_Msg_Level
808: (FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
809: THEN
810: FND_MSG_PUB.Add_Exc_Msg
811: ( G_PKG_NAME ,
812: l_api_name
813: );
814: END IF;

Line 816: FND_MSG_PUB.Count_And_Get

812: l_api_name
813: );
814: END IF;
815:
816: FND_MSG_PUB.Count_And_Get
817: ( p_count => x_msg_count ,
818: p_data => x_msg_data
819: );
820: END GET_EVENT_APPROVERS;