DBA Data[Home] [Help]

APPS.PA_REPORT_TYPES_PUB dependencies on FND_API

Line 97: pa_interface_utils_pub.get_messages ( p_encoded => FND_API.G_TRUE

93: fnd_msg_pub.count_and_get(p_count => x_msg_count,
94: p_data => x_msg_data);
95:
96: IF x_msg_count = 1 THEN
97: pa_interface_utils_pub.get_messages ( p_encoded => FND_API.G_TRUE
98: ,p_msg_index => 1
99: ,p_data => x_msg_data
100: ,p_msg_index_out => l_msg_index_out
101: );

Line 139: IF p_commit = FND_API.G_TRUE THEN

135:
136:
137: EXCEPTION
138: WHEN OTHERS THEN
139: IF p_commit = FND_API.G_TRUE THEN
140: ROLLBACK TO CREATE_REPORT_TYPE;
141: END IF;
142: x_return_status := 'U' ;
143: RAISE; -- This is optional depending on the needs

Line 276: pa_interface_utils_pub.get_messages ( p_encoded => FND_API.G_TRUE

272: fnd_msg_pub.count_and_get(p_count => x_msg_count,
273: p_data => x_msg_data);
274:
275: IF x_msg_count = 1 THEN
276: pa_interface_utils_pub.get_messages ( p_encoded => FND_API.G_TRUE
277: ,p_msg_index => 1
278: ,p_data => x_msg_data
279: ,p_msg_index_out => l_msg_index_out
280: );

Line 317: IF p_commit = FND_API.G_TRUE THEN

313: PA_DEBUG.Reset_Err_Stack;
314:
315: EXCEPTION
316: WHEN OTHERS THEN
317: IF p_commit = FND_API.G_TRUE THEN
318: ROLLBACK TO UPDATE_REPORT_TYPE;
319: END IF;
320: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
321: RAISE; -- This is optional depending on the needs

Line 320: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;

316: WHEN OTHERS THEN
317: IF p_commit = FND_API.G_TRUE THEN
318: ROLLBACK TO UPDATE_REPORT_TYPE;
319: END IF;
320: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
321: RAISE; -- This is optional depending on the needs
322:
323: END update_report_type;
324:

Line 410: pa_interface_utils_pub.get_messages ( p_encoded => FND_API.G_TRUE

406: fnd_msg_pub.count_and_get(p_count => x_msg_count,
407: p_data => x_msg_data);
408:
409: IF x_msg_count = 1 THEN
410: pa_interface_utils_pub.get_messages ( p_encoded => FND_API.G_TRUE
411: ,p_msg_index => 1
412: ,p_data => x_msg_data
413: ,p_msg_index_out => l_msg_index_out
414: );

Line 421: IF p_commit = FND_API.G_TRUE THEN

417: -- Reset the error stack when returning to the calling program
418: PA_DEBUG.Reset_Err_Stack;
419:
420: EXCEPTION WHEN OTHERS THEN
421: IF p_commit = FND_API.G_TRUE THEN
422: ROLLBACK TO DELETE_REPORT_TYPE;
423: END IF;
424: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
425: RAISE; -- This is optional depending on the needs

Line 424: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;

420: EXCEPTION WHEN OTHERS THEN
421: IF p_commit = FND_API.G_TRUE THEN
422: ROLLBACK TO DELETE_REPORT_TYPE;
423: END IF;
424: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
425: RAISE; -- This is optional depending on the needs
426:
427: END delete_report_type;
428: