DBA Data[Home] [Help]

APPS.PO_MODIFY_REQUISITION_PVT dependencies on PO_TAX_INTERFACE_PVT

Line 1384: PO_TAX_INTERFACE_PVT.calculate_tax_requisition(

1380: PO_LOG.stmt(d_module_base,d_progress,'l_requisition_header_id',l_requisition_header_id);
1381: END IF;
1382: --Calculate the tax for the entire document again. The recoverable and non recoverable
1383: --tax fields need to be updated appropriately.
1384: PO_TAX_INTERFACE_PVT.calculate_tax_requisition(
1385: p_requisition_header_id => l_requisition_header_id,
1386: p_calling_program => g_CALLING_PROGRAM_SPLIT,
1387: x_return_status => l_return_status);
1388:

Line 1393: FOR i IN 1..po_tax_interface_pvt.G_TAX_ERRORS_TBL.MESSAGE_TEXT.COUNT LOOP

1389: --
1390: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
1391: l_tax_message := FND_MESSAGE.get_string('PO','PO_TAX_CALCULATION')||' : ' ;
1392:
1393: FOR i IN 1..po_tax_interface_pvt.G_TAX_ERRORS_TBL.MESSAGE_TEXT.COUNT LOOP
1394: l_message_text := l_tax_message || po_tax_interface_pvt.G_TAX_ERRORS_TBL.message_text(i);
1395: FND_MESSAGE.set_name('PO','PO_CUSTOM_MSG');
1396: FND_MESSAGE.set_token('TRANSLATED_TOKEN',l_message_text);
1397: FND_MSG_PUB.Add;

Line 1394: l_message_text := l_tax_message || po_tax_interface_pvt.G_TAX_ERRORS_TBL.message_text(i);

1390: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
1391: l_tax_message := FND_MESSAGE.get_string('PO','PO_TAX_CALCULATION')||' : ' ;
1392:
1393: FOR i IN 1..po_tax_interface_pvt.G_TAX_ERRORS_TBL.MESSAGE_TEXT.COUNT LOOP
1394: l_message_text := l_tax_message || po_tax_interface_pvt.G_TAX_ERRORS_TBL.message_text(i);
1395: FND_MESSAGE.set_name('PO','PO_CUSTOM_MSG');
1396: FND_MESSAGE.set_token('TRANSLATED_TOKEN',l_message_text);
1397: FND_MSG_PUB.Add;
1398: END LOOP;