DBA Data[Home] [Help]

APPS.AP_OTHR_CHRG_MATCH_PKG dependencies on AP_UTILITIES_PKG

Line 474: g_period_name := AP_UTILITIES_PKG.get_current_gl_date(g_accounting_date);

470: l_debug_info := 'select period for accounting date';
471:
472: --get_current_gl_date will return NULL if the date passed to it doesn't fall in a
473: --open period.
474: g_period_name := AP_UTILITIES_PKG.get_current_gl_date(g_accounting_date);
475:
476: IF (g_period_name IS NULL) THEN
477:
478: --Get gl_period and Date from a future period for the accounting date

Line 483: ap_utilities_pkg.get_open_gl_date(p_date => g_accounting_date,

479:
480: -- Bug16216470 Used l_accounting_date instead of g_accounting_date. Using
481: --same variable for in/out parmeters causing to make in parameters
482: -- as Null
483: ap_utilities_pkg.get_open_gl_date(p_date => g_accounting_date,
484: p_period_name => g_period_name,
485: p_gl_date => l_accounting_date); --Bug16216470
486:
487: g_accounting_date := l_accounting_date; --Bug16216470

Line 558: x_othr_chrg_tab(i).charge_amt:= AP_UTILITIES_PKG.ap_round_currency(

554:
555: l_charge_amount :=(x_othr_chrg_tab(i).rcv_qty /l_total_rcv_qty)
556: * x_total_amount;
557:
558: x_othr_chrg_tab(i).charge_amt:= AP_UTILITIES_PKG.ap_round_currency(
559: l_charge_amount, g_invoice_currency_code);
560:
561: --get the max of the invoice line number with largest amount
562: IF ( abs(x_othr_chrg_tab(i).charge_amt) >= abs(l_max_line_amount)) THEN --bug11075838: added ABS

Line 613: l_total_base_amount := AP_UTILITIES_PKG.ap_round_currency

609: FND_LOG.STRING(G_LEVEL_STATEMENT,G_MODULE_NAME||l_api_name,
610: 'Before foreign currency loop.');
611: END IF; --bug11075838
612:
613: l_total_base_amount := AP_UTILITIES_PKG.ap_round_currency
614: (g_exchange_rate * X_Total_Amount,
615: g_base_currency_code);
616:
617:

Line 622: l_base_amount := AP_UTILITIES_PKG.ap_round_currency

618: FOR I IN 1..X_row_count LOOP
619:
620: l_debug_info := 'calculate the base amount';
621:
622: l_base_amount := AP_UTILITIES_PKG.ap_round_currency
623: (g_exchange_rate * x_othr_chrg_tab(i).charge_amt,
624: g_base_currency_code);
625:
626: x_othr_chrg_tab(i).base_amt := l_base_amount;