DBA Data[Home] [Help]

APPS.POS_ASN_XML dependencies on MTL_UNITS_OF_MEASURE_TL

Line 1225: from mtl_units_of_measure_tl

1221: p_error_code := 0;
1222:
1223: select count(*)
1224: into l_count
1225: from mtl_units_of_measure_tl
1226: where uom_code = p_uom_code
1227: and language = USERENV('LANG');
1228:
1229: if (l_count = 0) then

Line 1245: from mtl_units_of_measure_tl

1241: else /* l_count = 1 */
1242:
1243: select unit_of_measure
1244: into p_unit_of_measure
1245: from mtl_units_of_measure_tl
1246: where uom_code = p_uom_code
1247: and language = USERENV('LANG');
1248:
1249: end if;