DBA Data[Home] [Help]

APPS.IGC_CC_BUDGETARY_CTRL_PKG dependencies on IGC_ETAX_UTIL_PKG

Line 1613: IGC_ETAX_UTIL_PKG.Calculate_Tax

1609: l_taxable_flag := nvl(p_cc_acct_lines_rec.cc_acct_taxable_flag,'N');
1610: /* Bug 6719456 Added one more condition here. Call Tax calculation api only when l_enc_amt <> 0 */
1611: l_enc_tax_amt := 0;
1612: IF (l_taxable_flag = 'Y' AND l_enc_amt <> 0) THEN
1613: IGC_ETAX_UTIL_PKG.Calculate_Tax
1614: (P_CC_Header_Rec =>p_cc_headers_rec,
1615: P_Calling_Mode =>null,
1616: P_Amount =>l_enc_amt,
1617: P_Line_Id =>l_cc_interface_rec.cc_acct_line_id,

Line 1644: IGC_ETAX_UTIL_PKG.Calculate_Tax

1640: */
1641: /* Bug 6719456 Added one more condition here. Call Tax calculation api only when l_func_amt <> 0 */
1642: l_func_tax_amt := 0;
1643: IF (l_taxable_flag = 'Y' AND l_func_amt <> 0) THEN
1644: IGC_ETAX_UTIL_PKG.Calculate_Tax
1645: (P_CC_Header_Rec =>p_cc_headers_rec,
1646: P_Calling_Mode =>null,
1647: P_Amount =>l_func_amt,
1648: P_Line_Id =>l_cc_interface_rec.cc_acct_line_id,

Line 1675: IGC_ETAX_UTIL_PKG.Calculate_Tax

1671: */
1672: /* Bug 6719456 Added one more condition here. Call Tax calculation api only when l_unbilled_amt <> 0 */
1673: l_unbilled_tax_amt := 0;
1674: IF (l_taxable_flag = 'Y' AND l_unbilled_amt <> 0) THEN
1675: IGC_ETAX_UTIL_PKG.Calculate_Tax
1676: (P_CC_Header_Rec =>p_cc_headers_rec,
1677: P_Calling_Mode =>null,
1678: P_Amount =>l_unbilled_amt,
1679: P_Line_Id =>l_cc_interface_rec.cc_acct_line_id,