DBA Data[Home] [Help]

APPS.PA_PAGE_LAYOUT_PVT dependencies on FND_MSG_PUB

Line 204: FND_MSG_PUB.add_exc_msg ( p_pkg_name => 'PA_PAGE_LAYOUT_PVT.Create_Page_Layout'

200: ROLLBACK TO PAGE_LAYOUT_PVT_CREATE;
201: END IF;
202: --
203: -- Set the excetption Message and the stack
204: FND_MSG_PUB.add_exc_msg ( p_pkg_name => 'PA_PAGE_LAYOUT_PVT.Create_Page_Layout'
205: ,p_procedure_name => PA_DEBUG.G_Err_Stack );
206: --
207: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
208: RAISE; -- This is optional depending on the needs

Line 423: FND_MSG_PUB.add_exc_msg ( p_pkg_name => 'PA_PAGE_LAYOUT_PVT.Update_Page_Layout'

419: ROLLBACK TO PAGE_LAYOUT_PVT_UPDATE;
420: END IF;
421: --
422: -- Set the excetption Message and the stack
423: FND_MSG_PUB.add_exc_msg ( p_pkg_name => 'PA_PAGE_LAYOUT_PVT.Update_Page_Layout'
424: ,p_procedure_name => PA_DEBUG.G_Err_Stack );
425: --
426: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
427: RAISE; -- This is optional depending on the needs

Line 601: FND_MSG_PUB.add_exc_msg( p_pkg_name => 'PA_PAGE_LAYOUT_PVT.Delete_Page_Layout'

597: ROLLBACK TO PAGE_LAYOUT_PVT_DELETE;
598: END IF;
599:
600: -- Set the excetption Message and the stack
601: FND_MSG_PUB.add_exc_msg( p_pkg_name => 'PA_PAGE_LAYOUT_PVT.Delete_Page_Layout'
602: ,p_procedure_name => PA_DEBUG.G_Err_Stack );
603: --
604: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
605: RAISE; -- This is optional depending on the needs

Line 744: FND_MSG_PUB.add_exc_msg ( p_pkg_name => 'PA_PAGE_LAYOUT_PVT.Add_Page_Region'

740: ROLLBACK TO PVT_ADD_PAGE_REGION;
741: END IF;
742: --
743: -- Set the excetption Message and the stack
744: FND_MSG_PUB.add_exc_msg ( p_pkg_name => 'PA_PAGE_LAYOUT_PVT.Add_Page_Region'
745: ,p_procedure_name => PA_DEBUG.G_Err_Stack );
746: --
747: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
748: RAISE; -- This is option

Line 846: FND_MSG_PUB.add_exc_msg( p_pkg_name => 'PA_PAGE_LAYOUT_PVT.Delete_Page_Region'

842: ROLLBACK TO PVT_DELETE_PAGE_REGION;
843: END IF;
844:
845: -- Set the excetption Message and the stack
846: FND_MSG_PUB.add_exc_msg( p_pkg_name => 'PA_PAGE_LAYOUT_PVT.Delete_Page_Region'
847: ,p_procedure_name => PA_DEBUG.G_Err_Stack );
848: --
849: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
850: RAISE; -- This is optional depending on the needs

Line 899: FND_MSG_PUB.initialize;

895: x_return_status := FND_API.G_RET_STS_SUCCESS;
896:
897: --Clear the global PL/SQL message table
898: IF FND_API.TO_BOOLEAN( p_init_msg_list ) THEN
899: FND_MSG_PUB.initialize;
900: END IF;
901:
902: FOR reg_rec IN get_region loop
903: PA_PAGE_LAYOUT_PKG.DELETE_PAGE_REGION_ROW

Line 921: x_msg_count := FND_MSG_PUB.Count_Msg;

917: --
918: -- IF the number of messaages is 1 then fetch the message code from the
919: -- stack and return its text
920: --
921: x_msg_count := FND_MSG_PUB.Count_Msg;
922: IF x_msg_count = 1 THEN
923: pa_interface_utils_pub.get_messages ( p_encoded => FND_API.G_TRUE
924: ,p_msg_index => 1
925: ,p_data => x_msg_data

Line 943: FND_MSG_PUB.add_exc_msg ( p_pkg_name => 'PA_PAGE_LAYOUT_PUB.Delete_Page_Region'

939: EXCEPTION
940: WHEN OTHERS THEN
941:
942: -- Set the exception Message and the stack
943: FND_MSG_PUB.add_exc_msg ( p_pkg_name => 'PA_PAGE_LAYOUT_PUB.Delete_Page_Region'
944: ,p_procedure_name => PA_DEBUG.G_Err_Stack );
945: --
946: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
947: RAISE; -- This is optional depending on the needs

Line 990: FND_MSG_PUB.initialize;

986: x_return_status := FND_API.G_RET_STS_SUCCESS;
987:
988: --Clear the global PL/SQL message table
989: IF FND_API.TO_BOOLEAN( p_init_msg_list ) THEN
990: FND_MSG_PUB.initialize;
991: END IF;
992:
993: FOR reg_rec IN get_region loop
994: PA_PAGE_LAYOUT_PKG.DELETE_PAGE_REGION_ROW

Line 1012: x_msg_count := FND_MSG_PUB.Count_Msg;

1008: --
1009: -- IF the number of messaages is 1 then fetch the message code from the
1010: -- stack and return its text
1011: --
1012: x_msg_count := FND_MSG_PUB.Count_Msg;
1013: IF x_msg_count = 1 THEN
1014: pa_interface_utils_pub.get_messages ( p_encoded => FND_API.G_TRUE
1015: ,p_msg_index => 1
1016: ,p_data => x_msg_data

Line 1034: FND_MSG_PUB.add_exc_msg ( p_pkg_name => 'PA_PAGE_LAYOUT_PUB.Delete_All_link_Page_Region'

1030: EXCEPTION
1031: WHEN OTHERS THEN
1032:
1033: -- Set the exception Message and the stack
1034: FND_MSG_PUB.add_exc_msg ( p_pkg_name => 'PA_PAGE_LAYOUT_PUB.Delete_All_link_Page_Region'
1035: ,p_procedure_name => PA_DEBUG.G_Err_Stack );
1036: --
1037: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
1038: RAISE; -- This is optional depending on the needs