DBA Data[Home] [Help]

APPS.PA_COMP_PROFILE_PVT dependencies on FND_MSG_PUB

Line 83: fnd_msg_pub.initialize;

79: x_return_status := FND_API.G_RET_STS_SUCCESS;
80:
81: -- Initialize the message stack if necessary
82: IF p_init_msg_list = FND_API.G_TRUE THEN
83: fnd_msg_pub.initialize;
84: END IF;
85:
86: -- Check where the competency can be asssigned to the person
87: Validate_Competency

Line 202: fnd_msg_pub.initialize;

198: SAVEPOINT COMPETENCE_PVT_UPD_COMP_ELE;
199:
200: -- Initialize the message stack if necessary
201: IF p_init_msg_list = FND_API.G_TRUE THEN
202: fnd_msg_pub.initialize;
203: END IF;
204:
205: x_return_status := FND_API.G_RET_STS_SUCCESS;
206:

Line 322: fnd_msg_pub.add_exc_msg

318: -- 4537865
319: EXCEPTION
320: WHEN OTHERS THEN
321: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
322: fnd_msg_pub.add_exc_msg
323: (p_pkg_name => 'PA_COMP_PROFILE_PVT',
324: p_procedure_name => 'delete_competence_element');
325: -- RAISE is not included as the caller of this API doesnt RAISE
326:

Line 1021: Fnd_Msg_Pub.add_exc_msg

1017: x_return_status := Fnd_Api.G_RET_STS_UNEXP_ERROR;
1018: x_msg_count := 1;
1019: x_msg_data := SQLERRM;
1020:
1021: Fnd_Msg_Pub.add_exc_msg
1022: ( p_pkg_name => 'PA_COMP_PROFILE_PVT'
1023: , p_procedure_name => 'Validate_Competency'
1024: , p_error_text => x_msg_data);
1025: -- End : 4537865

Line 1067: fnd_msg_pub.add_exc_msg

1063: WHEN OTHERS THEN
1064: x_return_status:= FND_API.G_RET_STS_UNEXP_ERROR;
1065: x_error_message_code := SQLERRM;
1066:
1067: fnd_msg_pub.add_exc_msg
1068: (p_pkg_name => 'PA_COMP_PROFILE_PVT',
1069: p_procedure_name => 'Validate_Competency',
1070: p_error_text => SUBSTRB(SQLERRM,1,240));
1071: