DBA Data[Home] [Help]

APPS.PA_EXCEPTION_ENGINE_PKG dependencies on FND_MESSAGE

Line 287: FND_MESSAGE.SET_NAME ('PA', 'PA_EXCP_NO_PARAMS_PASSED'); -- Set the translatable message name.

283: pa_debug.write_file('LOG', pa_debug.g_err_stage);
284:
285: WHEN FND_API.G_EXC_ERROR THEN -- Added for Bug 4324724
286:
287: FND_MESSAGE.SET_NAME ('PA', 'PA_EXCP_NO_PARAMS_PASSED'); -- Set the translatable message name.
288: l_no_params_err_msg := FND_MESSAGE.GET; -- Get the error message.
289: x_errbuf := x_errbuf || 'errbuf: ' || l_no_params_err_msg; -- Set it in errbuf.
290: PA_DEBUG.write_file('LOG', l_no_params_err_msg); -- Write the error message to the log file.
291: RAISE; -- Pass on the exception to the calling API.

Line 288: l_no_params_err_msg := FND_MESSAGE.GET; -- Get the error message.

284:
285: WHEN FND_API.G_EXC_ERROR THEN -- Added for Bug 4324724
286:
287: FND_MESSAGE.SET_NAME ('PA', 'PA_EXCP_NO_PARAMS_PASSED'); -- Set the translatable message name.
288: l_no_params_err_msg := FND_MESSAGE.GET; -- Get the error message.
289: x_errbuf := x_errbuf || 'errbuf: ' || l_no_params_err_msg; -- Set it in errbuf.
290: PA_DEBUG.write_file('LOG', l_no_params_err_msg); -- Write the error message to the log file.
291: RAISE; -- Pass on the exception to the calling API.
292: