DBA Data[Home] [Help]

APPS.PA_R_PROJECT_RESOURCES_PUB dependencies on FND_MSG_PUB

Line 105: fnd_msg_pub.initialize;

101:
102: X_RETURN_STATUS := fnd_api.g_ret_sts_success;
103:
104: IF fnd_api.to_boolean(L_INIT_MSG_LIST) THEN
105: fnd_msg_pub.initialize;
106: END IF;
107:
108: IF NOT fnd_api.compatible_api_call(L_API_VERSION, P_API_VERSION, L_API_NAME, G_PKG_NAME)
109: THEN

Line 165: l_msg_count := FND_MSG_PUB.Count_Msg;

161: COMMIT WORK;
162: END IF;
163:
164: x_return_status := L_RETURN_STATUS;
165: l_msg_count := FND_MSG_PUB.Count_Msg;
166:
167: --dbms_output.put_line('MSG COUNT '||l_msg_count);
168:
169: IF l_msg_count = 1 THEN

Line 200: FND_MSG_PUB.add_exc_msg( p_pkg_name => 'PA_R_PROJECT_RESOURCES_PUB'

196: IF (p_commit = FND_API.G_TRUE) THEN
197: ROLLBACK TO res_pub_create_resource;
198: END IF;
199: -- Set the exception Message and the stack
200: FND_MSG_PUB.add_exc_msg( p_pkg_name => 'PA_R_PROJECT_RESOURCES_PUB'
201: ,p_procedure_name => 'CREATE_RESOURCE');
202: x_return_status := FND_API.G_RET_STS_ERROR ;
203:
204: WHEN OTHERS THEN

Line 221: FND_MSG_PUB.add_exc_msg( p_pkg_name => 'PA_R_PROJECT_RESOURCES_PUB'

217: ROLLBACK TO res_pub_create_resource;
218: END IF;
219:
220: -- Set the exception Message and the stack
221: FND_MSG_PUB.add_exc_msg( p_pkg_name => 'PA_R_PROJECT_RESOURCES_PUB'
222: ,p_procedure_name => 'CREATE_RESOURCE');
223: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
224: RAISE;
225: