DBA Data[Home] [Help]

APPS.ARP_ETAX_INVAPI_UTIL dependencies on ARP_ETAX_UTIL

Line 360: TL.extended_amount * arp_etax_util.get_discount_rate(T.customer_trx_id),

356: ZTH.internal_organization_id, -- poa_party_id
357: ZTH.internal_org_location_id, -- poa_location_id
358: ZTH.internal_organization_id, -- poo_party_id (default value)
359: ZTH.internal_org_location_id, -- poo_location_id (default value)
360: TL.extended_amount * arp_etax_util.get_discount_rate(T.customer_trx_id),
361: ZTH.internal_org_location_id, -- bill_from_location_id
362: TLG.trx_business_category, -- 6033706
363: TLG.product_fisc_classification, -- 6033706
364: NVL(TLG.product_category,ML.tax_product_category),

Line 838: arp_etax_util.set_default_tax_classification(p_request_id,rec.type);

834: For rec in ctt
835: LOOP
836: /* Stamp transaction lines with tax_classification
837: from ZX_LINES_DET_FACTORS */
838: arp_etax_util.set_default_tax_classification(p_request_id,rec.type);
839:
840: /* adjust for inclusive tax */
841: arp_etax_util.adjust_for_inclusive_tax(null, p_request_id, rec.type);
842:

Line 841: arp_etax_util.adjust_for_inclusive_tax(null, p_request_id, rec.type);

837: from ZX_LINES_DET_FACTORS */
838: arp_etax_util.set_default_tax_classification(p_request_id,rec.type);
839:
840: /* adjust for inclusive tax */
841: arp_etax_util.adjust_for_inclusive_tax(null, p_request_id, rec.type);
842:
843: END LOOP;
844: END IF;
845:

Line 847: arp_etax_util.set_recoverable(null, p_request_id,null);

843: END LOOP;
844: END IF;
845:
846: /* Set line_recoverable and tax_recoverable */
847: arp_etax_util.set_recoverable(null, p_request_id,null);
848:
849:
850:
851: IF PG_DEBUG in ('Y', 'C') THEN

Line 946: arp_etax_util.validate_tax_int(l_return_status);

942: IF g_headers_inserted > 0 AND
943: (g_lines_inserted > 0 OR g_tax_lines_inserted > 0)
944: THEN
945: /* Call validate_and_default_tax_attr */
946: arp_etax_util.validate_tax_int(l_return_status);
947: p_return_status := l_return_status;
948:
949: IF l_return_status = 0 OR l_return_status = 1
950: THEN

Line 952: arp_etax_util.calculate_tax_int(l_return_status);

948:
949: IF l_return_status = 0 OR l_return_status = 1
950: THEN
951: /* Call import_document_with_tax */
952: arp_etax_util.calculate_tax_int(l_return_status);
953: p_return_status := l_return_status;
954: END IF;
955:
956: IF l_return_status = 0 OR l_return_status = 1

Line 985: ARP_ETAX_UTIL.global_document_update(p_trx_id,

981:
982: BEGIN
983:
984: /* Now call the API to synchronize the repository */
985: ARP_ETAX_UTIL.global_document_update(p_trx_id,
986: NULL,
987: 'DELETE');
988:
989: END cleanup_tax;