DBA Data[Home] [Help]

APPS.INV_MGD_MVT_EXPORT_DATA dependencies on INV_MGD_MVT_UTILS_PKG

Line 201: l_base_currency := INV_MGD_MVT_UTILS_PKG.Get_LE_Currency(p_legal_entity_id);

197: --Temporary file for unit test,will remove after using concurrent pgm
198: --FND_FILE.Put_Names('yawang.log','yawang.out','/sqlcom/mgdev115');
199:
200: --Get base currency
201: l_base_currency := INV_MGD_MVT_UTILS_PKG.Get_LE_Currency(p_legal_entity_id);
202:
203: --Get profile value of NLS Numeric Character
204: l_nls_numeric_char := FND_PROFILE.Value('ICX_NUMERIC_CHARACTERS');
205:

Line 377: INV_MGD_MVT_UTILS_PKG.Get_Weight_Precision

373: END IF;
374:
375: --Fix bug 4866967 and 5203245, get weight precision and rounding
376: --method defined on parameter form
377: INV_MGD_MVT_UTILS_PKG.Get_Weight_Precision
378: (p_legal_entity_id => p_legal_entity_id
379: , p_zone_code => p_zone_code
380: , p_usage_type => p_usage_type
381: , p_stat_type => p_stat_type

Line 408: l_round_total_weight := INV_MGD_MVT_UTILS_PKG.Round_Number

404: --Fix bug 4866967 and 5203245 allow user to decide the round digit
405: --and rounding method
406: --Round total weight before formating (it is rounded already in processor
407: --but in case the value in db has different precision as defined, round again here
408: l_round_total_weight := INV_MGD_MVT_UTILS_PKG.Round_Number
409: ( p_number => mvt_rec.total_weight
410: , p_precision => l_weight_precision
411: , p_rounding_method => l_rounding_method
412: );

Line 414: l_round_alternate_qty := INV_MGD_MVT_UTILS_PKG.Round_Number

410: , p_precision => l_weight_precision
411: , p_rounding_method => l_rounding_method
412: );
413:
414: l_round_alternate_qty := INV_MGD_MVT_UTILS_PKG.Round_Number
415: ( p_number => mvt_rec.alternate_quantity
416: , p_precision => l_weight_precision
417: , p_rounding_method => l_rounding_method
418: );

Line 421: l_round_stat_ext_value := INV_MGD_MVT_UTILS_PKG.Round_Number

417: , p_rounding_method => l_rounding_method
418: );
419:
420: --Round statistics value and apply exchange rate
421: l_round_stat_ext_value := INV_MGD_MVT_UTILS_PKG.Round_Number
422: ( p_number => mvt_rec.stat_ext_value * l_exchange_rate
423: , p_precision => l_rounding_precision
424: , p_rounding_method => l_rounding_method
425: );

Line 428: l_round_invoice_value := INV_MGD_MVT_UTILS_PKG.Round_Number

424: , p_rounding_method => l_rounding_method
425: );
426:
427: --Round invoice value and apply exchange rate
428: l_round_invoice_value := INV_MGD_MVT_UTILS_PKG.Round_Number
429: ( p_number => l_invoice_value_local * l_exchange_rate
430: , p_precision => l_rounding_precision
431: , p_rounding_method => l_rounding_method
432: );