DBA Data[Home] [Help]

APPS.PA_ROLE_PROFILES_UTILS dependencies on FND_MSG_PUB

Line 84: fnd_msg_pub.add_exc_msg

80: x_return_status:= FND_API.G_RET_STS_ERROR;
81: x_error_msg_code:= 'PA_BUS_GROUP_NOT_UNIQUE';
82: WHEN OTHERS THEN
83: x_business_group_id := NULL;
84: fnd_msg_pub.add_exc_msg
85: (p_pkg_name => 'PA_ROLE_PROFILES_UTILS',
86: p_procedure_name => pa_debug.g_err_stack );
87: x_error_msg_code:= FND_API.G_RET_STS_UNEXP_ERROR;
88: RAISE;

Line 171: fnd_msg_pub.add_exc_msg

167: x_return_status:= FND_API.G_RET_STS_ERROR;
168: x_error_msg_code:= 'PA_POSITION_NOT_UNIQUE';
169: WHEN OTHERS THEN
170: x_position_id := NULL;
171: fnd_msg_pub.add_exc_msg
172: (p_pkg_name => 'PA_ROLE_PROFILES_UTILS',
173: p_procedure_name => pa_debug.g_err_stack );
174: x_error_msg_code:= FND_API.G_RET_STS_UNEXP_ERROR;
175: RAISE;

Line 213: --FND_MSG_PUB.initialize;

209: l_enable_log varchar2(1) := NVL(FND_PROFILE.value('PA_DEBUG_MODE'), 'N');
210:
211: BEGIN
212: x_return_status := FND_API.G_RET_STS_SUCCESS;
213: --FND_MSG_PUB.initialize;
214:
215: IF p_business_group_name IS NULL
216: AND p_organization_name IS NULL
217: AND p_job_name IS NULL

Line 283: --dbms_output.put_line ('no of errors in the stack ' || FND_MSG_PUB.Count_Msg);

279: p_msg_name => l_error_msg_code );
280: END IF;
281: END IF;
282:
283: --dbms_output.put_line ('no of errors in the stack ' || FND_MSG_PUB.Count_Msg);
284:
285: IF FND_MSG_PUB.Count_Msg > 0 THEN
286: RAISE FND_API.G_EXC_ERROR;
287: END IF;

Line 285: IF FND_MSG_PUB.Count_Msg > 0 THEN

281: END IF;
282:
283: --dbms_output.put_line ('no of errors in the stack ' || FND_MSG_PUB.Count_Msg);
284:
285: IF FND_MSG_PUB.Count_Msg > 0 THEN
286: RAISE FND_API.G_EXC_ERROR;
287: END IF;
288:
289: --The following code checks if organization, job, position belong to the business group

Line 338: IF FND_MSG_PUB.Count_Msg > 0 THEN

334: p_msg_name => 'PA_POSITION_NOT_QUALIFIED');
335: END;
336: END IF;
337:
338: IF FND_MSG_PUB.Count_Msg > 0 THEN
339: RAISE FND_API.G_EXC_ERROR;
340: END IF;
341:
342: EXCEPTION

Line 345: x_msg_count := FND_MSG_PUB.Count_Msg;

341:
342: EXCEPTION
343: WHEN FND_API.G_EXC_ERROR THEN
344: x_return_status := FND_API.G_RET_STS_ERROR;
345: x_msg_count := FND_MSG_PUB.Count_Msg;
346: WHEN OTHERS THEN
347: RAISE;
348: END Check_Business_Level_Attrs;
349:

Line 415: IF FND_MSG_PUB.Count_Msg > 0 THEN -- One or more roles are invalid

411: p_msg_name => 'PA_INCORRECT_SUM');
412: RAISE FND_API.G_EXC_ERROR;
413: END IF;
414:
415: IF FND_MSG_PUB.Count_Msg > 0 THEN -- One or more roles are invalid
416: RAISE FND_API.G_EXC_ERROR;
417: END IF;
418:
419: FOR i IN 1..l_role_id_tbl.count LOOP

Line 434: x_msg_count := FND_MSG_PUB.Count_Msg;

430:
431: EXCEPTION
432: WHEN FND_API.G_EXC_ERROR THEN
433: x_return_status := FND_API.G_RET_STS_ERROR;
434: x_msg_count := FND_MSG_PUB.Count_Msg;
435: WHEN OTHERS THEN
436: RAISE;
437: END Validate_Profile_Lines;
438: