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 197: FND_MSG_PUB.add_exc_msg( p_pkg_name => 'PA_R_PROJECT_RESOURCES_PUB'

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

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

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