DBA Data[Home] [Help]

APPS.ENG_CHANGE_ACTIONS_UTIL dependencies on FND_MSG_PUB

Line 234: FND_MSG_PUB.initialize;

230: END IF;
231:
232: -- Initialize message list if p_init_msg_list is set to TRUE.
233: IF FND_API.to_Boolean( p_init_msg_list ) THEN
234: FND_MSG_PUB.initialize;
235: END IF ;
236:
237: -- For Test/Debug
238: IF FND_API.to_Boolean( p_debug ) THEN

Line 374: FND_MSG_PUB.Count_And_Get

370:
371:
372:
373:
374: FND_MSG_PUB.Count_And_Get
375: ( p_count => x_msg_count,
376: p_data => x_msg_data );
377:
378:

Line 389: FND_MSG_PUB.Count_And_Get

385: EXCEPTION
386: WHEN FND_API.G_EXC_ERROR THEN
387: ROLLBACK TO Create_Change_Action;
388: x_return_status := FND_API.G_RET_STS_ERROR;
389: FND_MSG_PUB.Count_And_Get
390: ( p_count => x_msg_count
391: ,p_data => x_msg_data );
392: IF g_debug_flag THEN
393: Write_Debug('Rollback and Finish with unxepcted error.') ;

Line 399: FND_MSG_PUB.Count_And_Get

395: END IF ;
396: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
397: ROLLBACK TO Create_Change_Action;
398: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
399: FND_MSG_PUB.Count_And_Get
400: ( p_count => x_msg_count
401: ,p_data => x_msg_data );
402: IF g_debug_flag THEN
403: Write_Debug('Rollback and Finish with unxepcted error.') ;

Line 409: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )

405: END IF ;
406: WHEN OTHERS THEN
407: ROLLBACK TO Create_Change_Action;
408: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
409: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )
410: THEN
411: FND_MSG_PUB.Add_Exc_Msg ( G_PKG_NAME, l_api_name );
412: END IF;
413: FND_MSG_PUB.Count_And_Get

Line 411: FND_MSG_PUB.Add_Exc_Msg ( G_PKG_NAME, l_api_name );

407: ROLLBACK TO Create_Change_Action;
408: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
409: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )
410: THEN
411: FND_MSG_PUB.Add_Exc_Msg ( G_PKG_NAME, l_api_name );
412: END IF;
413: FND_MSG_PUB.Count_And_Get
414: ( p_count => x_msg_count
415: ,p_data => x_msg_data );

Line 413: FND_MSG_PUB.Count_And_Get

409: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )
410: THEN
411: FND_MSG_PUB.Add_Exc_Msg ( G_PKG_NAME, l_api_name );
412: END IF;
413: FND_MSG_PUB.Count_And_Get
414: ( p_count => x_msg_count
415: ,p_data => x_msg_data );
416: IF g_debug_flag THEN
417: Write_Debug('Rollback and Finish with unxepcted error.') ;

Line 463: FND_MSG_PUB.initialize;

459: END IF;
460:
461: -- Initialize message list if p_init_msg_list is set to TRUE.
462: IF FND_API.to_Boolean( p_init_msg_list ) THEN
463: FND_MSG_PUB.initialize;
464: END IF ;
465:
466: -- For Test/Debug
467: IF FND_API.to_Boolean( p_debug ) THEN

Line 497: FND_MSG_PUB.Count_And_Get

493: IF g_debug_flag THEN
494: Write_Debug('Action row updated successfully... ' );
495: END IF ;
496:
497: FND_MSG_PUB.Count_And_Get
498: ( p_count => x_msg_count,
499: p_data => x_msg_data );
500:
501: IF g_debug_flag THEN

Line 510: FND_MSG_PUB.Count_And_Get

506: EXCEPTION
507: WHEN FND_API.G_EXC_ERROR THEN
508: ROLLBACK TO Update_Workflow_Info_PUB;
509: x_return_status := FND_API.G_RET_STS_ERROR;
510: FND_MSG_PUB.Count_And_Get
511: ( p_count => x_msg_count
512: ,p_data => x_msg_data );
513: IF g_debug_flag THEN
514: Write_Debug('Rollback and Finish with unxepcted error.') ;

Line 520: FND_MSG_PUB.Count_And_Get

516: END IF ;
517: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
518: ROLLBACK TO Update_Workflow_Info_PUB;
519: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
520: FND_MSG_PUB.Count_And_Get
521: ( p_count => x_msg_count
522: ,p_data => x_msg_data );
523: IF g_debug_flag THEN
524: Write_Debug('Rollback and Finish with unxepcted error.') ;

Line 530: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )

526: END IF ;
527: WHEN OTHERS THEN
528: ROLLBACK TO Update_Workflow_Info_PUB;
529: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
530: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )
531: THEN
532: FND_MSG_PUB.Add_Exc_Msg ( G_PKG_NAME, l_api_name );
533: END IF;
534: FND_MSG_PUB.Count_And_Get

Line 532: FND_MSG_PUB.Add_Exc_Msg ( G_PKG_NAME, l_api_name );

528: ROLLBACK TO Update_Workflow_Info_PUB;
529: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
530: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )
531: THEN
532: FND_MSG_PUB.Add_Exc_Msg ( G_PKG_NAME, l_api_name );
533: END IF;
534: FND_MSG_PUB.Count_And_Get
535: ( p_count => x_msg_count
536: ,p_data => x_msg_data );

Line 534: FND_MSG_PUB.Count_And_Get

530: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )
531: THEN
532: FND_MSG_PUB.Add_Exc_Msg ( G_PKG_NAME, l_api_name );
533: END IF;
534: FND_MSG_PUB.Count_And_Get
535: ( p_count => x_msg_count
536: ,p_data => x_msg_data );
537: IF g_debug_flag THEN
538: Write_Debug('Rollback and Finish with unxepcted error.') ;

Line 595: FND_MSG_PUB.initialize;

591: END IF;
592:
593: -- Initialize message list if p_init_msg_list is set to TRUE.
594: IF FND_API.to_Boolean( p_init_msg_list ) THEN
595: FND_MSG_PUB.initialize;
596: END IF ;
597:
598: -- For Test/Debug
599: IF FND_API.to_Boolean( p_debug ) THEN

Line 641: --#FND_MSG_PUB.Add;

637: x_return_status := l_return_status;
638: x_msg_count := l_msg_count;
639: x_msg_data := l_msg_data;
640: --#FND_MESSAGE.Set_Name('ENG','ENG_ERROR_CALLING_WF_API');
641: --#FND_MSG_PUB.Add;
642: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
643: END IF;
644: IF g_debug_flag THEN
645: Write_Debug('Successful: Calling ENG_WORKFLOW_UTIL.RespondToActReqCommentFromUI');

Line 649: FND_MSG_PUB.Count_And_Get

645: Write_Debug('Successful: Calling ENG_WORKFLOW_UTIL.RespondToActReqCommentFromUI');
646: END IF;
647:
648:
649: FND_MSG_PUB.Count_And_Get
650: ( p_count => x_msg_count,
651: p_data => x_msg_data );
652:
653: IF g_debug_flag THEN

Line 662: FND_MSG_PUB.Count_And_Get

658: EXCEPTION
659: WHEN FND_API.G_EXC_ERROR THEN
660: ROLLBACK TO Respond_Notification_PUB;
661: x_return_status := FND_API.G_RET_STS_ERROR;
662: FND_MSG_PUB.Count_And_Get
663: ( p_count => x_msg_count
664: ,p_data => x_msg_data );
665: IF g_debug_flag THEN
666: Write_Debug('Rollback and Finish with unxepcted error.') ;

Line 672: FND_MSG_PUB.Count_And_Get

668: END IF ;
669: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
670: ROLLBACK TO Respond_Notification_PUB;
671: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
672: FND_MSG_PUB.Count_And_Get
673: ( p_count => x_msg_count
674: ,p_data => x_msg_data );
675: IF g_debug_flag THEN
676: Write_Debug('Rollback and Finish with unxepcted error.') ;

Line 682: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )

678: END IF ;
679: WHEN OTHERS THEN
680: ROLLBACK TO Respond_Notification_PUB;
681: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
682: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )
683: THEN
684: FND_MSG_PUB.Add_Exc_Msg ( G_PKG_NAME, l_api_name );
685: END IF;
686: FND_MSG_PUB.Count_And_Get

Line 684: FND_MSG_PUB.Add_Exc_Msg ( G_PKG_NAME, l_api_name );

680: ROLLBACK TO Respond_Notification_PUB;
681: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
682: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )
683: THEN
684: FND_MSG_PUB.Add_Exc_Msg ( G_PKG_NAME, l_api_name );
685: END IF;
686: FND_MSG_PUB.Count_And_Get
687: ( p_count => x_msg_count
688: ,p_data => x_msg_data );

Line 686: FND_MSG_PUB.Count_And_Get

682: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )
683: THEN
684: FND_MSG_PUB.Add_Exc_Msg ( G_PKG_NAME, l_api_name );
685: END IF;
686: FND_MSG_PUB.Count_And_Get
687: ( p_count => x_msg_count
688: ,p_data => x_msg_data );
689: IF g_debug_flag THEN
690: Write_Debug('Rollback and Finish with unxepcted error.') ;

Line 798: FND_MSG_PUB.initialize;

794: END IF;
795:
796: -- Initialize message list if p_init_msg_list is set to TRUE.
797: IF FND_API.to_Boolean( p_init_msg_list ) THEN
798: FND_MSG_PUB.initialize;
799: END IF ;
800:
801: -- For Test/Debug
802: IF FND_API.to_Boolean( p_debug ) THEN

Line 835: FND_MSG_PUB.Count_And_Get

831: IF g_debug_flag THEN
832: Write_Debug('Action rows deleted successfully... ' );
833: END IF ;
834:
835: FND_MSG_PUB.Count_And_Get
836: ( p_count => x_msg_count,
837: p_data => x_msg_data );
838:
839: IF g_debug_flag THEN

Line 848: FND_MSG_PUB.Count_And_Get

844: EXCEPTION
845: WHEN FND_API.G_EXC_ERROR THEN
846: ROLLBACK TO Delete_Line_Actions_PUB;
847: x_return_status := FND_API.G_RET_STS_ERROR;
848: FND_MSG_PUB.Count_And_Get
849: ( p_count => x_msg_count
850: ,p_data => x_msg_data );
851: IF g_debug_flag THEN
852: Write_Debug('Rollback and Finish with unxepcted error.') ;

Line 858: FND_MSG_PUB.Count_And_Get

854: END IF ;
855: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
856: ROLLBACK TO Delete_Line_Actions_PUB;
857: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
858: FND_MSG_PUB.Count_And_Get
859: ( p_count => x_msg_count
860: ,p_data => x_msg_data );
861: IF g_debug_flag THEN
862: Write_Debug('Rollback and Finish with unxepcted error.') ;

Line 868: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )

864: END IF ;
865: WHEN OTHERS THEN
866: ROLLBACK TO Delete_Line_Actions_PUB;
867: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
868: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )
869: THEN
870: FND_MSG_PUB.Add_Exc_Msg ( G_PKG_NAME, l_api_name );
871: END IF;
872: FND_MSG_PUB.Count_And_Get

Line 870: FND_MSG_PUB.Add_Exc_Msg ( G_PKG_NAME, l_api_name );

866: ROLLBACK TO Delete_Line_Actions_PUB;
867: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
868: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )
869: THEN
870: FND_MSG_PUB.Add_Exc_Msg ( G_PKG_NAME, l_api_name );
871: END IF;
872: FND_MSG_PUB.Count_And_Get
873: ( p_count => x_msg_count
874: ,p_data => x_msg_data );

Line 872: FND_MSG_PUB.Count_And_Get

868: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR )
869: THEN
870: FND_MSG_PUB.Add_Exc_Msg ( G_PKG_NAME, l_api_name );
871: END IF;
872: FND_MSG_PUB.Count_And_Get
873: ( p_count => x_msg_count
874: ,p_data => x_msg_data );
875: IF g_debug_flag THEN
876: Write_Debug('Rollback and Finish with unxepcted error.') ;