DBA Data[Home] [Help]

APPS.PO_MODIFY_REQUISITION_PVT dependencies on PO_TAX_INTERFACE_PVT

Line 941: PO_TAX_INTERFACE_PVT.calculate_tax_requisition(

937: PO_LOG.stmt(d_module_base,d_progress,'l_requisition_header_id',l_requisition_header_id);
938: END IF;
939: --Calculate the tax for the entire document again. The recoverable and non recoverable
940: --tax fields need to be updated appropriately.
941: PO_TAX_INTERFACE_PVT.calculate_tax_requisition(
942: p_requisition_header_id => l_requisition_header_id,
943: p_calling_program => g_CALLING_PROGRAM_SPLIT,
944: x_return_status => l_return_status);
945:

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

946: --
947: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
948: l_tax_message := FND_MESSAGE.get_string('PO','PO_TAX_CALCULATION')||' : ' ;
949:
950: FOR i IN 1..po_tax_interface_pvt.G_TAX_ERRORS_TBL.MESSAGE_TEXT.COUNT LOOP
951: l_message_text := l_tax_message || po_tax_interface_pvt.G_TAX_ERRORS_TBL.message_text(i);
952: FND_MESSAGE.set_name('PO','PO_CUSTOM_MSG');
953: FND_MESSAGE.set_token('TRANSLATED_TOKEN',l_message_text);
954: FND_MSG_PUB.Add;

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

947: IF l_return_status = FND_API.G_RET_STS_ERROR THEN
948: l_tax_message := FND_MESSAGE.get_string('PO','PO_TAX_CALCULATION')||' : ' ;
949:
950: FOR i IN 1..po_tax_interface_pvt.G_TAX_ERRORS_TBL.MESSAGE_TEXT.COUNT LOOP
951: l_message_text := l_tax_message || po_tax_interface_pvt.G_TAX_ERRORS_TBL.message_text(i);
952: FND_MESSAGE.set_name('PO','PO_CUSTOM_MSG');
953: FND_MESSAGE.set_token('TRANSLATED_TOKEN',l_message_text);
954: FND_MSG_PUB.Add;
955: END LOOP;