DBA Data[Home] [Help]

APPS.PA_PAGE_CONTENTS_PVT dependencies on FND_MSG_PUB

Line 41: FND_MSG_PUB.initialize;

37: x_return_status := FND_API.G_RET_STS_SUCCESS;
38:
39: --Clear the global PL/SQL message table
40: IF FND_API.TO_BOOLEAN( p_init_msg_list ) THEN
41: FND_MSG_PUB.initialize;
42: END IF;
43:
44: IF P_PK1_VALUE is null THEN
45: PA_UTILS.Add_Message( p_app_short_name => 'PA'

Line 97: FND_MSG_PUB.add_exc_msg ( p_pkg_name => 'PA_PAGE_CONTENTS_PVT.ADD_PAGE_CONTENTS'

93: EXCEPTION
94: WHEN OTHERS THEN
95: rollback to add_page_contents;
96: -- Set the excetption Message and the stack
97: FND_MSG_PUB.add_exc_msg ( p_pkg_name => 'PA_PAGE_CONTENTS_PVT.ADD_PAGE_CONTENTS'
98: ,p_procedure_name => PA_DEBUG.G_Err_Stack );
99:
100:
101: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;

Line 160: FND_MSG_PUB.add_exc_msg ( p_pkg_name => 'PA_PAGE_CONTENTS_PVT.delete_page_contents'

156: ROLLBACK TO delete_page_contents;
157: END IF;
158:
159: -- Set the excetption Message and the stack
160: FND_MSG_PUB.add_exc_msg ( p_pkg_name => 'PA_PAGE_CONTENTS_PVT.delete_page_contents'
161: ,p_procedure_name => PA_DEBUG.G_Err_Stack );
162:
163: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
164: RAISE;

Line 222: FND_MSG_PUB.add_exc_msg ( p_pkg_name => 'PA_PAGE_CONTENTS_PVT.clear_page_contents'

218: ROLLBACK TO clear_page_contents;
219: END IF;
220:
221: -- Set the excetption Message and the stack
222: FND_MSG_PUB.add_exc_msg ( p_pkg_name => 'PA_PAGE_CONTENTS_PVT.clear_page_contents'
223: ,p_procedure_name => PA_DEBUG.G_Err_Stack );
224:
225: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
226: RAISE;