DBA Data[Home] [Help]

APPS.PA_PAGE_LAYOUT_PVT dependencies on PA_PAGE_LAYOUT_PVT

Line 1: package body PA_PAGE_LAYOUT_PVT as

1: package body PA_PAGE_LAYOUT_PVT as
2: /* $Header: PAPRPLVB.pls 120.1 2005/08/19 16:44:50 mwasowic noship $ */
3:
4: --History
5: -- 16-Feb-2004 svenketa - Modified, Added a parameter p_function_name for create and update.

Line 74: PA_DEBUG.init_err_stack('PA_PAGE_LAYOUT_PVT.Create_Page_Layout');

70:
71:
72: BEGIN
73: -- Initialize the Error Stack
74: PA_DEBUG.init_err_stack('PA_PAGE_LAYOUT_PVT.Create_Page_Layout');
75:
76: -- Initialize the return status to success
77: x_return_status := FND_API.G_RET_STS_SUCCESS;
78:

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 285: PA_DEBUG.init_err_stack('PA_PAGE_LAYOUT_PVT.Create_Page_Layout');

281:
282: BEGIN
283:
284: -- Initialize the Error Stack
285: PA_DEBUG.init_err_stack('PA_PAGE_LAYOUT_PVT.Create_Page_Layout');
286:
287: -- Initialize the return status to success
288: x_return_status := FND_API.G_RET_STS_SUCCESS;
289:

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 479: PA_DEBUG.init_err_stack('PA_PAGE_LAYOUT_PVT.Delete_Page_Layout');

475: l_page_type_code pa_page_layouts.page_type_code%TYPE;
476: BEGIN
477:
478: -- Initialize the Error Stack
479: PA_DEBUG.init_err_stack('PA_PAGE_LAYOUT_PVT.Delete_Page_Layout');
480:
481:
482: x_return_status := FND_API.G_RET_STS_SUCCESS;
483:

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 652: PA_DEBUG.init_err_stack('PA_PAGE_LAYOUT_PVT.Add_Page_Region');

648:
649: BEGIN
650:
651: -- Initialize the Error Stack
652: PA_DEBUG.init_err_stack('PA_PAGE_LAYOUT_PVT.Add_Page_Region');
653:
654: -- Initialize the return status to success
655: x_return_status := FND_API.G_RET_STS_SUCCESS;
656:

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 785: PA_DEBUG.init_err_stack('PA_PAGE_LAYOUT_PVT.Delete_Page_Region');

781:
782: BEGIN
783:
784: -- Initialize the Error Stack
785: PA_DEBUG.init_err_stack('PA_PAGE_LAYOUT_PVT.Delete_Page_Region');
786:
787:
788: x_return_status := FND_API.G_RET_STS_SUCCESS;
789:

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 1060: END PA_PAGE_LAYOUT_PVT;

1056: when others then
1057: return 'N';
1058: END IS_REGION_DELETE_OK;
1059:
1060: END PA_PAGE_LAYOUT_PVT;
1061: