DBA Data[Home] [Help]

APPS.PA_PAGE_LAYOUT_PVT dependencies on PA_DEBUG

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 194: PA_DEBUG.Reset_Err_Stack;

190:
191: END IF;
192:
193: -- Reset the error stack when returning to the calling program
194: PA_DEBUG.Reset_Err_Stack;
195:
196:
197: EXCEPTION
198: WHEN OTHERS THEN

Line 205: ,p_procedure_name => PA_DEBUG.G_Err_Stack );

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
209:

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 413: PA_DEBUG.Reset_Err_Stack;

409: COMMIT;
410: END IF;
411:
412: -- Reset the error stack when returning to the calling program
413: PA_DEBUG.Reset_Err_Stack;
414:
415:
416: EXCEPTION
417: WHEN OTHERS THEN

Line 424: ,p_procedure_name => PA_DEBUG.G_Err_Stack );

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
428:

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 591: PA_DEBUG.Reset_Err_Stack;

587: COMMIT;
588: END IF;
589:
590: -- Reset the error stack when returning to the calling program
591: PA_DEBUG.Reset_Err_Stack;
592:
593:
594: EXCEPTION
595: WHEN OTHERS THEN

Line 602: ,p_procedure_name => PA_DEBUG.G_Err_Stack );

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
606:

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 734: PA_DEBUG.Reset_Err_Stack;

730:
731: END IF;
732:
733: -- Reset the error stack when returning to the calling program
734: PA_DEBUG.Reset_Err_Stack;
735:
736:
737: EXCEPTION
738: WHEN OTHERS THEN

Line 745: ,p_procedure_name => PA_DEBUG.G_Err_Stack );

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
749:

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 836: PA_DEBUG.Reset_Err_Stack;

832: COMMIT;
833: END IF;
834:
835: -- Reset the error stack when returning to the calling program
836: PA_DEBUG.Reset_Err_Stack;
837:
838:
839: EXCEPTION
840: WHEN OTHERS THEN

Line 847: ,p_procedure_name => PA_DEBUG.G_Err_Stack );

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
851:

Line 892: PA_DEBUG.init_err_stack('PA_PAGE_LAYOUT_PUB.Delete_Page_Region');

888: l_msg_index_out NUMBER;
889: BEGIN
890:
891: -- Initialize the Error Stack
892: PA_DEBUG.init_err_stack('PA_PAGE_LAYOUT_PUB.Delete_Page_Region');
893:
894: -- Initialize the return status to success
895: x_return_status := FND_API.G_RET_STS_SUCCESS;
896:

Line 935: PA_DEBUG.Reset_Err_Stack;

931:
932: END LOOP;
933:
934: -- Reset the error stack when returning to the calling program
935: PA_DEBUG.Reset_Err_Stack;
936:
937:
938: -- Put any message text from message stack into the Message ARRAY
939: EXCEPTION

Line 944: ,p_procedure_name => PA_DEBUG.G_Err_Stack );

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
948: --

Line 983: PA_DEBUG.init_err_stack('PA_PAGE_LAYOUT_PUB.Delete_All_link_Page_Region');

979: l_msg_index_out NUMBER;
980: BEGIN
981:
982: -- Initialize the Error Stack
983: PA_DEBUG.init_err_stack('PA_PAGE_LAYOUT_PUB.Delete_All_link_Page_Region');
984:
985: -- Initialize the return status to success
986: x_return_status := FND_API.G_RET_STS_SUCCESS;
987:

Line 1026: PA_DEBUG.Reset_Err_Stack;

1022:
1023: END LOOP;
1024:
1025: -- Reset the error stack when returning to the calling program
1026: PA_DEBUG.Reset_Err_Stack;
1027:
1028:
1029: -- Put any message text from message stack into the Message ARRAY
1030: EXCEPTION

Line 1035: ,p_procedure_name => PA_DEBUG.G_Err_Stack );

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
1039: --