DBA Data[Home] [Help]

APPS.OKL_TAL_PVT dependencies on OKL_ACCOUNTING_UTIL

Line 1433: l_conv_amount := okl_accounting_util.cross_currency_round_amount(

1429: AND
1430: p_talv_rec.original_cost <> OKL_API.G_MISS_NUM) THEN
1431:
1432: l_conv_amount := NULL;
1433: l_conv_amount := okl_accounting_util.cross_currency_round_amount(
1434: p_amount => p_talv_rec.original_cost,
1435: p_currency_code => l_currency_code
1436: );
1437:

Line 1446: l_conv_amount := okl_accounting_util.cross_currency_round_amount(

1442: AND
1443: p_talv_rec.depreciation_cost <> OKL_API.G_MISS_NUM) THEN
1444:
1445: l_conv_amount := NULL;
1446: l_conv_amount := okl_accounting_util.cross_currency_round_amount(
1447: p_amount => p_talv_rec.depreciation_cost,
1448: p_currency_code => l_currency_code
1449: );
1450:

Line 1459: l_conv_amount := okl_accounting_util.cross_currency_round_amount(

1455: AND
1456: p_talv_rec.salvage_value <> OKL_API.G_MISS_NUM) THEN
1457:
1458: l_conv_amount := NULL;
1459: l_conv_amount := okl_accounting_util.cross_currency_round_amount(
1460: p_amount => p_talv_rec.salvage_value,
1461: p_currency_code => l_currency_code
1462: );
1463:

Line 1472: l_conv_amount := okl_accounting_util.cross_currency_round_amount(

1468: AND
1469: p_talv_rec.old_salvage_value <> OKL_API.G_MISS_NUM) THEN
1470:
1471: l_conv_amount := NULL;
1472: l_conv_amount := okl_accounting_util.cross_currency_round_amount(
1473: p_amount => p_talv_rec.old_salvage_value,
1474: p_currency_code => l_currency_code
1475: );
1476:

Line 1485: l_conv_amount := okl_accounting_util.cross_currency_round_amount(

1481: AND
1482: p_talv_rec.new_residual_value <> OKL_API.G_MISS_NUM) THEN
1483:
1484: l_conv_amount := NULL;
1485: l_conv_amount := okl_accounting_util.cross_currency_round_amount(
1486: p_amount => p_talv_rec.new_residual_value,
1487: p_currency_code => l_currency_code
1488: );
1489:

Line 1498: l_conv_amount := okl_accounting_util.cross_currency_round_amount(

1494: AND
1495: p_talv_rec.old_residual_value <> OKL_API.G_MISS_NUM) THEN
1496:
1497: l_conv_amount := NULL;
1498: l_conv_amount := okl_accounting_util.cross_currency_round_amount(
1499: p_amount => p_talv_rec.old_residual_value,
1500: p_currency_code => l_currency_code
1501: );
1502:

Line 1511: l_conv_amount := okl_accounting_util.cross_currency_round_amount(

1507: AND
1508: p_talv_rec.cost_retired <> OKL_API.G_MISS_NUM) THEN
1509:
1510: l_conv_amount := NULL;
1511: l_conv_amount := okl_accounting_util.cross_currency_round_amount(
1512: p_amount => p_talv_rec.cost_retired,
1513: p_currency_code => l_currency_code
1514: );
1515:

Line 1524: l_conv_amount := okl_accounting_util.cross_currency_round_amount(

1520: AND
1521: p_talv_rec.sale_proceeds <> OKL_API.G_MISS_NUM) THEN
1522:
1523: l_conv_amount := NULL;
1524: l_conv_amount := okl_accounting_util.cross_currency_round_amount(
1525: p_amount => p_talv_rec.sale_proceeds,
1526: p_currency_code => l_currency_code
1527: );
1528:

Line 1537: l_conv_amount := okl_accounting_util.cross_currency_round_amount(

1533: AND
1534: p_talv_rec.match_amount <> OKL_API.G_MISS_NUM) THEN
1535:
1536: l_conv_amount := NULL;
1537: l_conv_amount := okl_accounting_util.cross_currency_round_amount(
1538: p_amount => p_talv_rec.match_amount,
1539: p_currency_code => l_currency_code
1540: );
1541:

Line 1595: l_func_currency := okl_accounting_util.get_func_curr_code();

1591:
1592: BEGIN
1593:
1594: x_talv_rec := p_talv_rec;
1595: l_func_currency := okl_accounting_util.get_func_curr_code();
1596:
1597: --dbms_output.put_line('Func Curr: '||l_func_currency);
1598: --dbms_output.put_line('Trans Curr Code: '|| p_talv_rec.currency_code);
1599: --dbms_output.put_line('Trans Curr Rate: '|| p_talv_rec.currency_conversion_rate);

Line 1691: x_talv_rec.currency_conversion_rate := okl_accounting_util.get_curr_con_rate(

1687: x_talv_rec.currency_conversion_date := p_talv_rec.currency_conversion_date;
1688:
1689: ELSE -- conversion_type <> 'User'
1690:
1691: x_talv_rec.currency_conversion_rate := okl_accounting_util.get_curr_con_rate(
1692: p_from_curr_code => p_talv_rec.currency_code,
1693: p_to_curr_code => l_func_currency,
1694: p_con_date => p_talv_rec.currency_conversion_date,
1695: p_con_type => p_talv_rec.currency_conversion_type