DBA Data[Home] [Help]

MDSYS.SDO_UNITS_OF_MEASURE_TRIGGER dependencies on MDERR

Line 32: MDSYS.MDERR.RAISE_MD_ERROR('MD', 'SDO', -13199, 'This unit name/short name has already been defined with another factor or base unit.');

28: and
29: min(factor_b/factor_c) < max(factor_b/factor_c));
30:
31: if(c > 0) then
32: MDSYS.MDERR.RAISE_MD_ERROR('MD', 'SDO', -13199, 'This unit name/short name has already been defined with another factor or base unit.');
33: end if;
34:
35: ------------------------------------------
36:

Line 49: MDSYS.MDERR.RAISE_MD_ERROR('MD', 'SDO', -13199, 'Unit and base unit have different types.');

45: uom1.target_uom_id = uom2.uom_id and
46: not(nls_lower(uom1.unit_of_meas_type) = nls_lower(uom2.unit_of_meas_type));
47:
48: if(c > 0) then
49: MDSYS.MDERR.RAISE_MD_ERROR('MD', 'SDO', -13199, 'Unit and base unit have different types.');
50: end if;
51:
52: END;