DBA Data[Home] [Help]

APPS.POS_ASN_XML dependencies on MTL_UNITS_OF_MEASURE_TL

Line 1194: from mtl_units_of_measure_tl

1190: p_error_code := 0;
1191:
1192: select count(*)
1193: into l_count
1194: from mtl_units_of_measure_tl
1195: where uom_code = p_uom_code
1196: and language = USERENV('LANG');
1197:
1198: if (l_count = 0) then

Line 1214: from mtl_units_of_measure_tl

1210: else /* l_count = 1 */
1211:
1212: select unit_of_measure
1213: into p_unit_of_measure
1214: from mtl_units_of_measure_tl
1215: where uom_code = p_uom_code
1216: and language = USERENV('LANG');
1217:
1218: end if;