DBA Data[Home] [Help]

APPS.QA_SPECS_PUB dependencies on QLTCOMPB

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

1276: validate_datatype(p_lower_reasonable_limit, l_datatype);
1277: validate_datatype(p_upper_user_defined_limit, l_datatype);
1278: validate_datatype(p_lower_user_defined_limit, l_datatype);
1279:
1280: IF qltcompb.compare(p_upper_spec_limit, 6, p_lower_spec_limit, null,
1281: l_datatype) THEN
1282: fnd_message.set_name('QA', 'QA_LSL_GREATER_THAN_USL');
1283: fnd_msg_pub.add();
1284: RAISE fnd_api.g_exc_error;

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

1283: fnd_msg_pub.add();
1284: RAISE fnd_api.g_exc_error;
1285: END IF;
1286:
1287: IF qltcompb.compare(p_upper_reasonable_limit, 6, p_lower_reasonable_limit,
1288: null, l_datatype) THEN
1289: fnd_message.set_name('QA', 'QA_LRL_GREATER_THAN_URL');
1290: fnd_msg_pub.add();
1291: RAISE fnd_api.g_exc_error;

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

1290: fnd_msg_pub.add();
1291: RAISE fnd_api.g_exc_error;
1292: END IF;
1293:
1294: IF qltcompb.compare(p_upper_user_defined_limit, 6,
1295: p_lower_user_defined_limit, null, l_datatype) THEN
1296: fnd_message.set_name('QA', 'QA_LUL_GREATER_THAN_UUL');
1297: fnd_msg_pub.add();
1298: RAISE fnd_api.g_exc_error;