DBA Data[Home] [Help]

APPS.FTE_BULK_DTT_PKG dependencies on MTL_UNITS_OF_MEASURE_VL

Line 716: from mtl_units_of_measure_vl muomv,

712: --
713: cursor c_get_time_uom(x_unit_of_measure VARCHAR2,
714: x_language VARCHAR2) IS
715: select muomv.uom_code
716: from mtl_units_of_measure_vl muomv,
717: wsh_global_parameters wgp
718: where wgp.gu_time_class = muomv.uom_class
719: and muomv.unit_of_measure = x_unit_of_measure
720: and muomv.language = x_language;

Line 725: from mtl_units_of_measure_vl muomv,

721:
722: cursor c_get_distance_uom(y_unit_of_measure VARCHAR2,
723: y_language VARCHAR2) IS
724: select muomv.uom_code
725: from mtl_units_of_measure_vl muomv,
726: wsh_global_parameters wgp
727: where wgp.GU_DISTANCE_CLASS = muomv.uom_class
728: and muomv.UNIT_OF_MEASURE = y_unit_of_measure
729: and muomv.language = y_language;