DBA Data[Home] [Help]

APPS.AP_AUTO_DM_CREATION_PKG dependencies on AP_UTILITIES_PKG

Line 523: ap_utilities_pkg.get_Invoice_LE(

519:
520:
521: --4552701, get le and payment attributes
522:
523: ap_utilities_pkg.get_Invoice_LE(
524: p_vendor_site_id => l_vendor_site_id,
525: p_inv_liab_ccid => l_accts_pay_ccid,
526: p_org_id => l_org_id,
527: p_le_id => l_le_id);

Line 1448: l_gl_period := ap_utilities_pkg.get_current_gl_date(l_inv_gl_date);

1444: debug_info);
1445: END IF;
1446:
1447:
1448: l_gl_period := ap_utilities_pkg.get_current_gl_date(l_inv_gl_date);
1449:
1450: If (l_gl_period is null) then
1451: ap_utilities_pkg.get_open_gl_date(
1452: l_inv_gl_date,

Line 1451: ap_utilities_pkg.get_open_gl_date(

1447:
1448: l_gl_period := ap_utilities_pkg.get_current_gl_date(l_inv_gl_date);
1449:
1450: If (l_gl_period is null) then
1451: ap_utilities_pkg.get_open_gl_date(
1452: l_inv_gl_date,
1453: l_gl_period,
1454: l_gl_date);
1455: l_inv_gl_date := l_gl_date;

Line 1586: l_invoice_amount := ap_utilities_pkg.ap_round_currency ((p_quantity * p_price),

1582: debug_info);
1583: END IF;
1584:
1585:
1586: l_invoice_amount := ap_utilities_pkg.ap_round_currency ((p_quantity * p_price),
1587: p_invoice_curr);
1588:
1589:
1590: --Introduced IF clause for bug#11890169

Line 1595: l_inv_base_amt := ap_utilities_pkg.ap_round_currency(

1591:
1592: IF (l_invoice_amount IS NOT NULL AND
1593: p_invoice_curr <> p_base_curr) THEN
1594:
1595: l_inv_base_amt := ap_utilities_pkg.ap_round_currency(
1596: nvl((l_invoice_amount * p_rcv_rate),0),
1597: p_base_curr);
1598: END IF;
1599: