DBA Data[Home] [Help]

APPS.OE_DELAYED_REQUESTS_UTIL dependencies on OM_TAX_UTIL

Line 1487: l_tax_rec_out_tbl OM_TAX_UTIL.om_tax_out_tab_type;

1483: l_x_Header_Adj_Assoc_tbl OE_Order_PUB.Header_Adj_Assoc_Tbl_Type;
1484: l_x_Line_price_Att_tbl OE_Order_PUB.Line_Price_Att_Tbl_Type;
1485: l_x_Line_Adj_Att_tbl OE_Order_PUB.Line_Adj_Att_Tbl_Type;
1486: l_x_Line_Adj_Assoc_tbl OE_Order_PUB.Line_Adj_Assoc_Tbl_Type;
1487: l_tax_rec_out_tbl OM_TAX_UTIL.om_tax_out_tab_type;
1488: currency_code varchar2(30) := NULL;
1489: header_org_id number;
1490: inventory_org_id number;
1491: conversion_rate number;

Line 1519: OM_TAX_UTIL.TAX_LINE(p_line_rec => l_line_rec,

1515: -- Call the procedure to get the Tax on the order line
1516: oe_order_cache.load_order_header(l_line_rec.header_id);
1517: l_header_rec := oe_order_cache.g_header_rec;
1518:
1519: OM_TAX_UTIL.TAX_LINE(p_line_rec => l_line_rec,
1520: p_header_rec => l_header_Rec,
1521: x_tax_value => l_tax_value,
1522: x_tax_out_tbl => l_tax_rec_out_tbl,
1523: x_return_status => l_return_status );

Line 5367: l_tax_rec_out_tbl OM_TAX_UTIL.om_tax_out_tab_type;

5363: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
5364: v_start NUMBER;
5365: v_end NUMBER;
5366: l_entity_id_tbl OE_Delayed_Requests_PVT.Entity_Id_Tbl_Type ;
5367: l_tax_rec_out_tbl OM_TAX_UTIL.om_tax_out_tab_type;
5368: l_requesting_entity_id NUMBER; --TaxER
5369: l_request_ind NUMBER;
5370: l_call_credit_checking VARCHAR2(30);
5371: l_tax_on_charge NUMBER;

Line 5406: oe_debug_pub.add('Calling OM_TAX_UTIL.TAX_LINE',1);

5402: l_tax_rec_out_tbl.delete;
5403: /* initializing the l_tax_rec_out_tbl */
5404: /* calling tax_line procedure to calculate tax */
5405: IF l_debug_level > 0 THEN
5406: oe_debug_pub.add('Calling OM_TAX_UTIL.TAX_LINE',1);
5407: END IF;
5408:
5409: OM_TAX_UTIL.TAX_LINE( p_entity_id_tbl =>l_entity_id_tbl, x_tax_out_tbl => l_tax_rec_out_tbl, x_return_status => l_return_status);
5410: IF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN

Line 5409: OM_TAX_UTIL.TAX_LINE( p_entity_id_tbl =>l_entity_id_tbl, x_tax_out_tbl => l_tax_rec_out_tbl, x_return_status => l_return_status);

5405: IF l_debug_level > 0 THEN
5406: oe_debug_pub.add('Calling OM_TAX_UTIL.TAX_LINE',1);
5407: END IF;
5408:
5409: OM_TAX_UTIL.TAX_LINE( p_entity_id_tbl =>l_entity_id_tbl, x_tax_out_tbl => l_tax_rec_out_tbl, x_return_status => l_return_status);
5410: IF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
5411: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
5412: ELSIF l_return_status = FND_API.G_RET_STS_ERROR THEN
5413: RAISE FND_API.G_EXC_ERROR;