DBA Data[Home] [Help]

APPS.WIP_WS_UTIL dependencies on FND_MSG_PUB

Line 273: fnd_msg_pub.Delete_Msg;

269: else
270: l_is_serial_control := false;
271: end if;
272:
273: fnd_msg_pub.Delete_Msg;
274:
275: -- Call the procedure
276: inv_quantity_tree_pub.query_quantities(p_api_version_number => 1.0,
277: p_init_msg_lst => 'T',

Line 570: fnd_msg_pub.Initialize;

566:
567: procedure clear_msg_stack
568: Is
569: Begin
570: fnd_msg_pub.Initialize;
571:
572: End clear_msg_stack;
573:
574: function get_current_resp_key return varchar2

Line 600: FND_MSG_PUB.initialize;

596: Begin
597:
598: IF p_init_msg_list IS NOT NULL AND FND_API.TO_BOOLEAN(p_init_msg_list)
599: THEN
600: FND_MSG_PUB.initialize;
601: END IF;
602: x_return_status := FND_API.G_RET_STS_SUCCESS;
603:
604: update wip_discrete_jobs wdj

Line 611: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN

607:
608: exception when others then
609: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
610:
611: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
612: FND_MSG_PUB.Add_Exc_Msg ('wip_ws_util' ,'append_job_note');
613: END IF;
614:
615: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count ,p_data => x_msg_data);

Line 612: FND_MSG_PUB.Add_Exc_Msg ('wip_ws_util' ,'append_job_note');

608: exception when others then
609: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
610:
611: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
612: FND_MSG_PUB.Add_Exc_Msg ('wip_ws_util' ,'append_job_note');
613: END IF;
614:
615: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count ,p_data => x_msg_data);
616: end append_job_note;

Line 615: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count ,p_data => x_msg_data);

611: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
612: FND_MSG_PUB.Add_Exc_Msg ('wip_ws_util' ,'append_job_note');
613: END IF;
614:
615: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count ,p_data => x_msg_data);
616: end append_job_note;
617:
618: procedure append_job_note(p_wip_entity_id number, p_clob_msg clob,
619: p_init_msg_list IN VARCHAR2,

Line 629: FND_MSG_PUB.initialize;

625: Begin
626:
627: IF p_init_msg_list IS NOT NULL AND FND_API.TO_BOOLEAN(p_init_msg_list)
628: THEN
629: FND_MSG_PUB.initialize;
630: END IF;
631: x_return_status := FND_API.G_RET_STS_SUCCESS;
632:
633: select wdj.job_note

Line 646: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN

642:
643: exception when others then
644: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
645:
646: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
647: FND_MSG_PUB.Add_Exc_Msg ('wip_ws_util' ,'append_job_note');
648: END IF;
649:
650: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count ,p_data => x_msg_data);

Line 647: FND_MSG_PUB.Add_Exc_Msg ('wip_ws_util' ,'append_job_note');

643: exception when others then
644: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
645:
646: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
647: FND_MSG_PUB.Add_Exc_Msg ('wip_ws_util' ,'append_job_note');
648: END IF;
649:
650: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count ,p_data => x_msg_data);
651: end append_job_note;

Line 650: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count ,p_data => x_msg_data);

646: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
647: FND_MSG_PUB.Add_Exc_Msg ('wip_ws_util' ,'append_job_note');
648: END IF;
649:
650: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count ,p_data => x_msg_data);
651: end append_job_note;
652:
653: procedure append_exception_note(p_exception_id number, p_msg varchar2,
654: p_init_msg_list IN VARCHAR2,

Line 665: FND_MSG_PUB.initialize;

661: Begin
662:
663: IF p_init_msg_list IS NOT NULL AND FND_API.TO_BOOLEAN(p_init_msg_list)
664: THEN
665: FND_MSG_PUB.initialize;
666: END IF;
667: x_return_status := FND_API.G_RET_STS_SUCCESS;
668:
669: select note into l_note from wip_exceptions

Line 685: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN

681:
682: exception when others then
683: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
684:
685: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
686: FND_MSG_PUB.Add_Exc_Msg ('wip_ws_util' ,'append_exception_note');
687: END IF;
688:
689: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count ,p_data => x_msg_data);

Line 686: FND_MSG_PUB.Add_Exc_Msg ('wip_ws_util' ,'append_exception_note');

682: exception when others then
683: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
684:
685: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
686: FND_MSG_PUB.Add_Exc_Msg ('wip_ws_util' ,'append_exception_note');
687: END IF;
688:
689: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count ,p_data => x_msg_data);
690: end append_exception_note;

Line 689: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count ,p_data => x_msg_data);

685: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN
686: FND_MSG_PUB.Add_Exc_Msg ('wip_ws_util' ,'append_exception_note');
687: END IF;
688:
689: FND_MSG_PUB.Count_And_Get (p_count => x_msg_count ,p_data => x_msg_data);
690: end append_exception_note;
691:
692:
693: function get_resource_remaining_usage