DBA Data[Home] [Help]

APPS.QA_SPECS_PUB dependencies on QLTCOMPB

Line 1228: IF qltcompb.compare(p_upper_spec_limit, 6, p_lower_spec_limit, null,

1224: validate_datatype(p_lower_reasonable_limit, l_datatype);
1225: validate_datatype(p_upper_user_defined_limit, l_datatype);
1226: validate_datatype(p_lower_user_defined_limit, l_datatype);
1227:
1228: IF qltcompb.compare(p_upper_spec_limit, 6, p_lower_spec_limit, null,
1229: l_datatype) THEN
1230: fnd_message.set_name('QA', 'QA_LSL_GREATER_THAN_USL');
1231: fnd_msg_pub.add();
1232: RAISE fnd_api.g_exc_error;

Line 1235: IF qltcompb.compare(p_upper_reasonable_limit, 6, p_lower_reasonable_limit,

1231: fnd_msg_pub.add();
1232: RAISE fnd_api.g_exc_error;
1233: END IF;
1234:
1235: IF qltcompb.compare(p_upper_reasonable_limit, 6, p_lower_reasonable_limit,
1236: null, l_datatype) THEN
1237: fnd_message.set_name('QA', 'QA_LRL_GREATER_THAN_URL');
1238: fnd_msg_pub.add();
1239: RAISE fnd_api.g_exc_error;

Line 1242: IF qltcompb.compare(p_upper_user_defined_limit, 6,

1238: fnd_msg_pub.add();
1239: RAISE fnd_api.g_exc_error;
1240: END IF;
1241:
1242: IF qltcompb.compare(p_upper_user_defined_limit, 6,
1243: p_lower_user_defined_limit, null, l_datatype) THEN
1244: fnd_message.set_name('QA', 'QA_LUL_GREATER_THAN_UUL');
1245: fnd_msg_pub.add();
1246: RAISE fnd_api.g_exc_error;