DBA Data[Home] [Help]

APPS.PA_PAGE_TYPE_REGION_PUB dependencies on FND_MSG_PUB

Line 63: FND_MSG_PUB.initialize;

59: x_return_status := FND_API.G_RET_STS_SUCCESS;
60:
61: --Clear the global PL/SQL message table
62: IF FND_API.TO_BOOLEAN( p_init_msg_list ) THEN
63: FND_MSG_PUB.initialize;
64: END IF;
65:
66: IF p_page_type_code IS null THEN
67: l_page_type := 'PPR';

Line 182: x_msg_count := FND_MSG_PUB.Count_Msg;

178: -- IF the number of messaages is 1 then fetch the message code from the stack
179: -- and return its text
180: --
181:
182: x_msg_count := FND_MSG_PUB.Count_Msg;
183: IF x_msg_count = 1 THEN
184: pa_interface_utils_pub.get_messages ( p_encoded => FND_API.G_TRUE
185: ,p_msg_index => 1
186: ,p_data => x_msg_data

Line 202: FND_MSG_PUB.add_exc_msg ( p_pkg_name => 'PA_PAGE_TYPE_REGION_PUB.Create_Page_Type_Region'

198: WHEN OTHERS THEN
199: rollback;
200:
201: -- Set the excetption Message and the stack
202: FND_MSG_PUB.add_exc_msg ( p_pkg_name => 'PA_PAGE_TYPE_REGION_PUB.Create_Page_Type_Region'
203: ,p_procedure_name => PA_DEBUG.G_Err_Stack );
204: --
205: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
206: RAISE; -- This is optional depending on the needs

Line 260: FND_MSG_PUB.initialize;

256: x_return_status := FND_API.G_RET_STS_SUCCESS;
257:
258: --Clear the global PL/SQL message table
259: IF FND_API.TO_BOOLEAN( p_init_msg_list ) THEN
260: FND_MSG_PUB.initialize;
261: END IF;
262:
263: IF (p_region_source_code IS NULL AND x_return_status = FND_API.g_ret_sts_success )THEN
264: l_region_source_code := pa_page_layout_utils.get_region_source_code(p_region_source_name, P_REGION_SOURCE_TYPE, 275, 'PA_STATUS_REPORT_DESC_FLEX');

Line 347: x_msg_count := FND_MSG_PUB.Count_Msg;

343: --
344: -- IF the number of messaages is 1 then fetch the message code from the
345: -- stack and return its text
346: --
347: x_msg_count := FND_MSG_PUB.Count_Msg;
348: IF x_msg_count = 1 THEN
349: pa_interface_utils_pub.get_messages ( p_encoded => FND_API.G_TRUE
350: ,p_msg_index => 1
351: ,p_data => x_msg_data

Line 366: FND_MSG_PUB.add_exc_msg ( p_pkg_name => 'PA_PAGE_TYPE_REGION_PUB.Update_Page_Type_Region'

362: EXCEPTION
363: WHEN OTHERS THEN
364:
365: -- Set the exception Message and the stack
366: FND_MSG_PUB.add_exc_msg ( p_pkg_name => 'PA_PAGE_TYPE_REGION_PUB.Update_Page_Type_Region'
367: ,p_procedure_name => PA_DEBUG.G_Err_Stack );
368: --
369: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
370: RAISE; -- This is optional depending on the needs

Line 406: FND_MSG_PUB.initialize;

402: x_return_status := FND_API.G_RET_STS_SUCCESS;
403:
404: --Clear the global PL/SQL message table
405: IF FND_API.TO_BOOLEAN( p_init_msg_list ) THEN
406: FND_MSG_PUB.initialize;
407: END IF;
408:
409:
410: -- Call the private API

Line 432: x_msg_count := FND_MSG_PUB.Count_Msg;

428: --
429: -- IF the number of messaages is 1 then fetch the message code from the
430: -- stack and return its text
431: --
432: x_msg_count := FND_MSG_PUB.Count_Msg;
433: IF x_msg_count = 1 THEN
434: pa_interface_utils_pub.get_messages ( p_encoded => FND_API.G_TRUE
435: ,p_msg_index => 1
436: ,p_data => x_msg_data

Line 452: FND_MSG_PUB.add_exc_msg( p_pkg_name => 'PA_PAGE_TYPE_REGION_PUB.Delete_Page_Type_Region'

448:
449: rollback;
450:
451: -- Set the excetption Message and the stack
452: FND_MSG_PUB.add_exc_msg( p_pkg_name => 'PA_PAGE_TYPE_REGION_PUB.Delete_Page_Type_Region'
453: ,p_procedure_name => PA_DEBUG.G_Err_Stack );
454: --
455: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
456: RAISE; -- This is optional depending on the needs