DBA Data[Home] [Help]

APPS.AMW_EVALUATIONS_PKG dependencies on AMW_UTILITY_PVT

Line 50: AMW_Utility_PVT.Error_Message(p_message_name => 'USER_PROFILE_MISSING');

46: IF FND_API.to_Boolean( p_init_msg_list ) THEN
47: FND_MSG_PUB.initialize;
48: END IF;
49: IF FND_GLOBAL.User_Id IS NULL THEN
50: AMW_Utility_PVT.Error_Message(p_message_name => 'USER_PROFILE_MISSING');
51: RAISE FND_API.G_EXC_ERROR;
52: END IF;
53:
54:

Line 347: RETURN AMW_Utility_PVT.get_lookup_meaning('AMW_PASS_FAIL', l_ev_conl);

343: from amw_evaluations_details
344: where evaluation_id = p_evaluation_id
345: and evaluation_component = 'OPERATING_EFFECTIVENESS';
346:
347: RETURN AMW_Utility_PVT.get_lookup_meaning('AMW_PASS_FAIL', l_ev_conl);
348: end get_op_effectiveness;
349:
350:
351: function get_des_effectiveness(p_evaluation_id IN NUMBER) return varchar2 IS

Line 360: RETURN AMW_Utility_PVT.get_lookup_meaning('AMW_PASS_FAIL', l_ev_conl);

356: from amw_evaluations_details
357: where evaluation_id = p_evaluation_id
358: and evaluation_component = 'DESIGN_EFFECTIVENESS';
359:
360: RETURN AMW_Utility_PVT.get_lookup_meaning('AMW_PASS_FAIL', l_ev_conl);
361: end get_des_effectiveness;
362:
363: function get_op_effectiveness_code(p_evaluation_id IN NUMBER) return varchar2 IS
364: l_ev_conl varchar2(1);

Line 397: RETURN AMW_Utility_PVT.get_lookup_meaning('AMW_EVALUATION_CONCLUSION', l_ev_conl);

393: from amw_evaluations_details
394: where evaluation_id = p_evaluation_id
395: and evaluation_component = 'LINE_CONCLUSION';
396:
397: RETURN AMW_Utility_PVT.get_lookup_meaning('AMW_EVALUATION_CONCLUSION', l_ev_conl);
398: end get_line_conclusion;
399:
400: function get_line_conclusion_code(p_evaluation_id IN NUMBER) return varchar2 IS
401: l_ev_conl varchar2(1);