DBA Data[Home] [Help]

APPS.PA_PROGRESS_CLIENT_EXTN dependencies on FND_MSG_PUB

Line 80: -- fnd_msg_pub.add;

76:
77: -- Sample for Error Message population into message stack
78: -- IF error condition THEN
79: -- fnd_message.set_name('PA','');
80: -- fnd_msg_pub.add;
81: -- raise FND_API.G_EXC_ERROR;
82: -- END IF;
83:
84: -- Your Override Implmentation code should End here

Line 88: x_msg_count := fnd_msg_pub.count_msg;

84: -- Your Override Implmentation code should End here
85: EXCEPTION
86: WHEN FND_API.G_EXC_ERROR THEN
87: x_return_status := FND_API.G_RET_STS_ERROR;
88: x_msg_count := fnd_msg_pub.count_msg;
89: WHEN OTHERS THEN
90: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
91: fnd_msg_pub.add_exc_msg(p_pkg_name => 'PA_PROGRESS_CLIENT_EXTN',
92: p_procedure_name => 'GET_TASK_RES_OVERRIDE_INFO',

Line 91: fnd_msg_pub.add_exc_msg(p_pkg_name => 'PA_PROGRESS_CLIENT_EXTN',

87: x_return_status := FND_API.G_RET_STS_ERROR;
88: x_msg_count := fnd_msg_pub.count_msg;
89: WHEN OTHERS THEN
90: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
91: fnd_msg_pub.add_exc_msg(p_pkg_name => 'PA_PROGRESS_CLIENT_EXTN',
92: p_procedure_name => 'GET_TASK_RES_OVERRIDE_INFO',
93: p_error_text => SUBSTRB(SQLERRM,1,120));
94: x_msg_count := fnd_msg_pub.count_msg;
95: END GET_TASK_RES_OVERRIDE_INFO;

Line 94: x_msg_count := fnd_msg_pub.count_msg;

90: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
91: fnd_msg_pub.add_exc_msg(p_pkg_name => 'PA_PROGRESS_CLIENT_EXTN',
92: p_procedure_name => 'GET_TASK_RES_OVERRIDE_INFO',
93: p_error_text => SUBSTRB(SQLERRM,1,120));
94: x_msg_count := fnd_msg_pub.count_msg;
95: END GET_TASK_RES_OVERRIDE_INFO;
96: END;