DBA Data[Home] [Help]

APPS.PA_PAGE_TYPE_REGION_PVT dependencies on PA_DEBUG

Line 43: PA_DEBUG.init_err_stack('PA_PAGE_TYPE_REGION_PVT.Create_Page_Type_Region');

39: l_type VARCHAR2(250);
40:
41: BEGIN
42: -- Initialize the Error Stack
43: PA_DEBUG.init_err_stack('PA_PAGE_TYPE_REGION_PVT.Create_Page_Type_Region');
44:
45: -- Initialize the return status to success
46: x_return_status := FND_API.G_RET_STS_SUCCESS;
47:

Line 108: PA_DEBUG.Reset_Err_Stack;

104: COMMIT;
105: END IF;
106:
107: -- Reset the error stack when returning to the calling program
108: PA_DEBUG.Reset_Err_Stack;
109:
110:
111: EXCEPTION
112: WHEN OTHERS THEN

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

115: END IF;
116: --
117: -- Set the excetption Message and the stack
118: FND_MSG_PUB.add_exc_msg ( p_pkg_name => 'PA_PAGE_TYPE_REGION_PVT.Create_Page_Type_Region'
119: ,p_procedure_name => PA_DEBUG.G_Err_Stack );
120: --
121: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
122: RAISE; -- This is optional depending on the needs
123:

Line 161: PA_DEBUG.init_err_stack('PA_PAGE_TYPE_REGION_PVT.Update_Page_Type_Region');

157:
158: BEGIN
159:
160: -- Initialize the Error Stack
161: PA_DEBUG.init_err_stack('PA_PAGE_TYPE_REGION_PVT.Update_Page_Type_Region');
162:
163: -- Initialize the return status to success
164: x_return_status := FND_API.G_RET_STS_SUCCESS;
165:

Line 210: PA_DEBUG.Reset_Err_Stack;

206: COMMIT;
207: END IF;
208:
209: -- Reset the error stack when returning to the calling program
210: PA_DEBUG.Reset_Err_Stack;
211:
212:
213: EXCEPTION
214: WHEN NO_DATA_FOUND then

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

225: END IF;
226: --
227: -- Set the excetption Message and the stack
228: FND_MSG_PUB.add_exc_msg ( p_pkg_name => 'PA_PAGE_TYPE_REGION_PVT.Update_Page_Type_Region'
229: ,p_procedure_name => PA_DEBUG.G_Err_Stack );
230: --
231: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
232: RAISE; -- This is optional depending on the needs
233:

Line 259: PA_DEBUG.init_err_stack('PA_PAGE_TYPE_REGION_PVT.Delete_Page_Type_Region');

255:
256: BEGIN
257:
258: -- Initialize the Error Stack
259: PA_DEBUG.init_err_stack('PA_PAGE_TYPE_REGION_PVT.Delete_Page_Type_Region');
260:
261:
262: x_return_status := FND_API.G_RET_STS_SUCCESS;
263:

Line 288: PA_DEBUG.Reset_Err_Stack;

284: COMMIT;
285: END IF;
286:
287: -- Reset the error stack when returning to the calling program
288: PA_DEBUG.Reset_Err_Stack;
289:
290:
291: EXCEPTION
292: WHEN OTHERS THEN

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

295: END IF;
296:
297: -- Set the excetption Message and the stack
298: FND_MSG_PUB.add_exc_msg( p_pkg_name => 'PA_PAGE_TYPE_REGION_PVT.Delete_Page_Type_Region'
299: ,p_procedure_name => PA_DEBUG.G_Err_Stack );
300: --
301: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
302: RAISE; -- This is optional depending on the needs
303: