DBA Data[Home] [Help]

APPS.IGC_CC_BUDGETARY_CTRL_PKG dependencies on IGC_ETAX_UTIL_PKG

Line 1664: IGC_ETAX_UTIL_PKG.Calculate_Tax

1660: l_taxable_flag := nvl(p_cc_acct_lines_rec.cc_acct_taxable_flag,'N');
1661: /* Bug 6719456 Added one more condition here. Call Tax calculation api only when l_enc_amt <> 0 */
1662: l_enc_tax_amt := 0;
1663: IF (l_taxable_flag = 'Y' AND l_enc_amt <> 0) THEN
1664: IGC_ETAX_UTIL_PKG.Calculate_Tax
1665: (P_CC_Header_Rec =>p_cc_headers_rec,
1666: P_Calling_Mode =>null,
1667: P_Amount =>l_enc_amt,
1668: P_Line_Id =>l_cc_interface_rec.cc_acct_line_id,

Line 1695: IGC_ETAX_UTIL_PKG.Calculate_Tax

1691: */
1692: /* Bug 6719456 Added one more condition here. Call Tax calculation api only when l_func_amt <> 0 */
1693: l_func_tax_amt := 0;
1694: IF (l_taxable_flag = 'Y' AND l_func_amt <> 0) THEN
1695: IGC_ETAX_UTIL_PKG.Calculate_Tax
1696: (P_CC_Header_Rec =>p_cc_headers_rec,
1697: P_Calling_Mode =>null,
1698: P_Amount =>l_func_amt,
1699: P_Line_Id =>l_cc_interface_rec.cc_acct_line_id,

Line 1726: IGC_ETAX_UTIL_PKG.Calculate_Tax

1722: */
1723: /* Bug 6719456 Added one more condition here. Call Tax calculation api only when l_unbilled_amt <> 0 */
1724: l_unbilled_tax_amt := 0;
1725: IF (l_taxable_flag = 'Y' AND l_unbilled_amt <> 0) THEN
1726: IGC_ETAX_UTIL_PKG.Calculate_Tax
1727: (P_CC_Header_Rec =>p_cc_headers_rec,
1728: P_Calling_Mode =>null,
1729: P_Amount =>l_unbilled_amt,
1730: P_Line_Id =>l_cc_interface_rec.cc_acct_line_id,