DBA Data[Home] [Help]

APPS.OE_BULK_TAX_UTIL dependencies on ZX_API_PUB

Line 482: l_transaction_rec zx_api_pub.transaction_rec_type;

478: l_bill_to_customer_id NUMBER;
479: l_bill_to_postal_code VARCHAR2(60);
480: l_internal_org_location_id NUMBER;
481: l_bill_to_customer_name VARCHAR2(360);
482: l_transaction_rec zx_api_pub.transaction_rec_type;
483: l_entity_code_crsr zx_detail_tax_lines_gt.entity_code%TYPE := 'OE_ORDER_HEADERS';
484: l_event_class_code_crsr zx_detail_tax_lines_gt.event_class_code%TYPE := 'SALES_TRANSACTION_TAX_QUOTE';
485: l_trx_level_type_crsr zx_detail_tax_lines_gt.trx_level_type%TYPE;
486: l_application_id NUMBER := 660;

Line 1362: oe_debug_pub.add( ' Call zx_api_pub.calculate_tax ',1);

1358:
1359: SELECT hsecs INTO l_start_time from v$timer;
1360:
1361: IF l_call_tax = 'Y' THEN --Call ZX api only if there is atleast one eligible line to be taxed
1362: oe_debug_pub.add( ' Call zx_api_pub.calculate_tax ',1);
1363:
1364: zx_api_pub.calculate_tax(
1365: p_api_version => 1.0,
1366: p_init_msg_list => FND_API.G_TRUE,

Line 1364: zx_api_pub.calculate_tax(

1360:
1361: IF l_call_tax = 'Y' THEN --Call ZX api only if there is atleast one eligible line to be taxed
1362: oe_debug_pub.add( ' Call zx_api_pub.calculate_tax ',1);
1363:
1364: zx_api_pub.calculate_tax(
1365: p_api_version => 1.0,
1366: p_init_msg_list => FND_API.G_TRUE,
1367: p_commit => NULL,
1368: p_validation_level => NULL,

Line 1380: FND_FILE.PUT_LINE(FND_FILE.LOG,'Time spent in zx_api_pub.calculate_tax is (sec) '||((l_end_time-l_start_time)/100));

1376: END IF;
1377:
1378: SELECT hsecs INTO l_end_time from v$timer;
1379:
1380: FND_FILE.PUT_LINE(FND_FILE.LOG,'Time spent in zx_api_pub.calculate_tax is (sec) '||((l_end_time-l_start_time)/100));
1381:
1382: IF l_debug_level > 0 THEN
1383: oe_debug_pub.add('Message returned by tax API ZX_API_PUB.calculate_tax: '||l_msg_count,2);
1384: END IF;

Line 1383: oe_debug_pub.add('Message returned by tax API ZX_API_PUB.calculate_tax: '||l_msg_count,2);

1379:
1380: FND_FILE.PUT_LINE(FND_FILE.LOG,'Time spent in zx_api_pub.calculate_tax is (sec) '||((l_end_time-l_start_time)/100));
1381:
1382: IF l_debug_level > 0 THEN
1383: oe_debug_pub.add('Message returned by tax API ZX_API_PUB.calculate_tax: '||l_msg_count,2);
1384: END IF;
1385:
1386:
1387: IF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN