SlideShare a Scribd company logo
1 of 5
Download to read offline
Oracle R12 Upgrade and E-Business Tax
Implementation Resources
Navigation
Oracle R12 E-Business Tax (EBTax) Implementation Resources
Comparision - Vertex, Taxware and Sabrix for Oracle EBTax
CV040 - EBTax Supplier Conversion Components for P2P Taxes
EBTax Third Party Tax Rate File Upload Solution Design &
Process Overview
Oracle E-Business Tax - Importing AP Invoices - Payables Open
Invoice Interface
Oracle E-Business Tax Implementation Scenarios for United
States
Oracle E-Business Tax Integration with Taxware
Oracle EBTax - Business Processes in Vertex and Taxware
Oracle EBTax BR100 Setup Document
Oracle EBTax Canadian VAT Setup Examples
Oracle EBTax Files and Documents
Oracle EBTax UK VAT Setup Examples
Oracle EBTax US Sales and Use Tax Setup Examples
Oracle R12 E-Business Tax Implementation Presentations
Oracle R12 E-Business Tax Integration with Oracle Payables -
Presentations
Oracle R12 EBTax SQL Queries for Functional Implementers
for Troubleshooting
Oracle R12 Enhancements Cheat Sheet
Oracle R12 Financials PreUpgrade Setup Tips
Oracle R12 Upgrade Enhancements - Financial Modules
R12 EB Tax Accounting - Setting Up Tax Accounts
R12 EBTax Upgrade Considerations
TCA Architechture in Oracle R12
Troubleshooting why eBTax does Not Calculate in Oracle
E-Business Suite
About Author
Oracle Applications (ERP) Financials Functional
Consultant with over 12 years of Experience
I can be easily reached at
Email - orafinr12docs@gmail.com
Oracle R12 EBTax Experience:
Total 8 Implementations (5 implementations & 3
upgrades – Industries Include)
- Utility
- Higher Education (University)
- Distribution
- Retail
- Semi- Conductor
- Bio Sciences & Nutritional (Web Sales)
Countries Implemented - United States, Canada, UK &
EU VAT
Expertise on P2P and O2C Side – Evaluations /
proposals/ solution Design / implementing complex
solutions etc
0
Oracle R12 EBTax SQL Queries for Functional Implementers for
Troubleshooting
Contents
1 -- EBTAX SETUP TABLES --
2 -- EBTAX TRANSACTION TABLES --
3 -- SQL FOR PARTY FISCAL CLASSIFICATION CODE --
4 -- BELOW QUERY RETRIEVES CUSTOMER ADDRESSES THAT DOESNT HAVE ANY GEOGRAPHY REFERENCE --
5 -- BELOW SQL QUERY RETRIEVES LIST OF JURISDICTIONS' FOR WHICH TAX RATES HAS BEEN DEFINED --
6 -- BELOW QUERY RETRIEVES LIST OF GEOGRAPHY'S WITHOUT JURISDICTIONS--
7 --SUPPLIER TAX REGISTRATION CREATION--
8 --EXCLUDE FREIGHT FROM DISCOUNT--
=========================================================================================================
-- EBTAX SETUP TABLES --
Following are the main E-Business tax tables that will
contain the setup information that will help support in
troubleshooting E-Business tax information.
a. Tax Regimes: ZX_REGIMES_B
b. Taxes: ZX_TAXES_B
c. Tax Status: ZX_STATUS_B
d. Tax Rates: ZX_RATES_B
e. Tax Jurisdictions: ZX_JURISDICTIONS_B
f. Tax Rules: ZX_RULES_B
To get a dump of the eTax setups, you can use the
following set of queries.
Please provide the tax regime code when prompted. If the
issue is limited to a tax then provide the tax name when
prompted else please leave it blank.
SELECT *
FROM zx_regimes_b
WHERE tax_regime_code = '&tax_regime_code';
SELECT *
FROM zx_taxes_b
WHERE DECODE('&tax_name',null,'xxx',tax) =
nvl('&tax_name','xxx')
AND tax_regime_code = '&tax_regime_code';
SELECT *
FROM zx_status_b
WHERE tax = '&tax_name'
AND tax_regime_code = '&tax_regime_code';
SELECT *
FROM zx_rates_b
WHERE tax = '&tax_name'
AND tax_regime_code = '&tax_regime_code';
SELECT *
FROM zx_jurisdictions_b
WHERE DECODE('&tax_name',null,'xxx',tax) =
nvl('&tax_name','xxx')
AND tax_regime_code = '&tax_regime_code';
SELECT *
FROM zx_rules_b
WHERE tax = '&tax_name'
AND tax_regime_code = '&tax_regime_code';
=====================================================================
-- EBTAX TRANSACTION TABLES --
Following are the main E-Business tax tables that will
contain the transaction information that will have the
tax details after tax is calculated.
a. ZX_LINES: This table will have the tax lines for
associated with PO/Release schedules.
TRX_ID: Transaction ID. This is linked to the
Search this site
CRM Strategy
Research
Build Deep Customer
Knowledge. Download
The Featured Report Now.
Forrester.com/CRM-White-Paper
Oracle R12 EBTax SQL Queries for Functional Implementers for Trou... https://sites.google.com/site/oracler12ebtax/oracle-r12-ebtax-sql-querie...
1 of 5 24/07/2012 12:55
PO_HEADERS_ALL.PO_HEADER_ID
TRX_LINE_ID: Transaction Line ID. This is linked to the
PO_LINE_LOCATIONS_ALL.LINE_LOCATION_ID
b. ZX_REC_NREC_DIST: This table will have the tax
distributions for associated with PO/Release distributions.
TRX_ID: Transaction ID. This is linked to the
PO_HEADERS_ALL.PO_HEADER_ID
TRX_LINE_ID: Transaction Line ID. This is linked to the
PO_LINE_LOCATIONS_ALL.LINE_LOCATION_ID
TRX_LINE_DIST_ID: Transaction Line Distribution ID. This
is linked to the
PO_DISTRIBUTIONS_ALL.PO_DISTRIBUTION_ID
RECOVERABLE_FLAG: Recoverable Flag. If the distribution
is recoverable then the flag will be set to Y and there will
be values in the RECOVERY_TYPE_CODE and
RECOVERY_RATE_CODE.
c. PO_REQ_DISTRIBUTIONS_ALL: This table will have the
tax distributions for associated with Requisition distribution.
RECOVERABLE_TAX: Recoverable tax amount
NONRECOVERABLE_TAX: Non Recoverable tax amount
d. ZX_LINES_DET_FACTORS: This table holds all the
information of the tax line transaction for both the
requisitions as well as the purchase orders/releases.
TRX_ID: Transaction ID. This is linked to the
PO_REQUISITION_HEADERS_ALL.REQUISITION_HEADER_ID
/
PO_HEADERS_ALL.PO_HEADER_ID
TRX_LINE_ID: Transaction Line ID. This is linked to the
PO_REQUISITION_LINES_ALL.REQUISITION_LINE_ID /
PO_LINE_LOCATIONS_ALL.LINE_LOCATION_ID
=============================================================================================================
-- SQL FOR PARTY FISCAL CLASSIFICATION
CODE --
SELECT HPP.PARTY_NAME,HP.PARTY_SITE_NAME ,HCA.*
FROM ZX_PARTY_TAX_PROFILE ZP
,HZ_CODE_ASSIGNMENTS HCA
,HZ_PARTY_SITES HP
,HZ_PARTIES HPP
WHERE ZP.PARTY_TAX_PROFILE_ID = HCA.OWNER_TABLE_ID
--AND ZP.PARTY_ID = :PARTY_ID
AND HCA.OWNER_TABLE_NAME = 'ZX_PARTY_TAX_PROFILE'
AND HP.PARTY_SITE_ID = ZP.PARTY_ID
AND HPP.PARTY_ID= HP.PARTY_ID
AND HCA.CLASS_CODE IS NOT NULL
ORDER BY ZP.LAST_UPDATE_DATE DESC
SELECT HP.PARTY_ID, HP.PARTY_NAME, HPS.PARTY_SITE_ID,
HPS.PARTY_SITE_NAME, ZP.PARTY_TAX_PROFILE_ID
FROM ZX_PARTY_TAX_PROFILE ZP,
HZ_PARTY_SITES HPS,
HZ_PARTIES HP,
HZ_CUST_ACCOUNTS_ALL CA
WHERE HP.PARTY_ID = HPS.PARTY_ID
AND HP.PARTY_ID = CA.PARTY_ID
AND HPS.PARTY_SITE_ID = ZP.PARTY_ID
AND CA.CUSTOMER_CLASS_CODE = 'WEB CUSTOMER'
AND UPPER(HP.PARTY_NAME) LIKE 'CAROLE%FINCK%'
AND EXISTS (
SELECT 1
FROM HZ_CODE_ASSIGNMENTS HCA
WHERE HCA.OWNER_TABLE_ID =
ZP.PARTY_TAX_PROFILE_ID
AND HCA.OWNER_TABLE_NAME =
'ZX_PARTY_TAX_PROFILE'
AND HCA.CLASS_CODE IS NOT NULL)
ORDER BY ZP.LAST_UPDATE_DATE DESC;
===============================================================================================================
-- BELOW QUERY RETRIEVES CUSTOMER
ADDRESSES THAT DOESNT HAVE ANY
GEOGRAPHY REFERENCE --
SELECT HCA.ACCOUNT_NUMBER
,HCA.ACCOUNT_NAME
,HCS_SHIP.SITE_USE_CODE
,HL_SHIP.ADDRESS1 ADDRESS
,HL_SHIP.STATE STATE
,HL_SHIP.COUNTY COUNTY
,HL_SHIP.CITY CITY
,HL_SHIP.POSTAL_CODE
FROM HZ_CUST_SITE_USES_ALL HCS_SHIP
, HZ_CUST_ACCT_SITES_ALL HCA_SHIP
, HZ_CUST_ACCOUNTS HCA
, HZ_PARTY_SITES HPS_SHIP
, HZ_LOCATIONS HL_SHIP
WHERE
HCA.CUST_ACCOUNT_ID=HCA_SHIP.CUST_ACCOUNT_ID(+)
AND HCS_SHIP.CUST_ACCT_SITE_ID(+) =
Oracle R12 EBTax SQL Queries for Functional Implementers for Trou... https://sites.google.com/site/oracler12ebtax/oracle-r12-ebtax-sql-querie...
2 of 5 24/07/2012 12:55
HCA_SHIP.CUST_ACCT_SITE_ID
-- AND HCA.ACCOUNT_NUMBER='10001'
AND HCA_SHIP.PARTY_SITE_ID =
HPS_SHIP.PARTY_SITE_ID
AND HPS_SHIP.LOCATION_ID = HL_SHIP.LOCATION_ID
AND HCA.STATUS='A'
AND HCS_SHIP.STATUS='A'
AND HCA_SHIP.STATUS='A'
AND HL_SHIP.COUNTRY='US'
AND NOT EXISTS (SELECT 1 FROM HZ_GEOGRAPHIES HG
WHERE
HG.GEOGRAPHY_ELEMENT2_CODE=HL_SHIP.STATE
AND
UPPER(HL_SHIP.COUNTY)=UPPER(HG.GEOGRAPHY_ELEMENT3_CODE)
AND
UPPER(HL_SHIP.CITY)=UPPER(HG.GEOGRAPHY_ELEMENT4_CODE)
AND SYSDATE BETWEEN HG.START_DATE
AND HG.END_DATE)
================================================================================================================
-- BELOW SQL QUERY RETRIEVES LIST OF
JURISDICTIONS' FOR WHICH TAX RATES HAS
BEEN DEFINED --
SELECT TAX,
TAX_JURISDICTION_CODE,
GEOGRAPHY_ELEMENT2_CODE STATE_CODE,
GEOGRAPHY_ELEMENT3_CODE COUNTY_CODE,
GEOGRAPHY_ELEMENT4_CODE CITY_CODE
FROM ZX_JURISDICTIONS_B ZJ,
HZ_GEOGRAPHIES HG
WHERE
ZJ.TAX_REGIME_CODE='US_SALE_AND_USE_TAX'
AND SYSDATE BETWEEN ZJ.EFFECTIVE_FROM AND
NVL(ZJ.EFFECTIVE_TO,'31-DEC-4999')
AND SYSDATE BETWEEN HG.START_DATE AND HG.END_DATE
AND ZJ.ZONE_GEOGRAPHY_ID=HG.GEOGRAPHY_ID
AND ZJ.TAX=HG.GEOGRAPHY_TYPE
AND NOT EXISTS (SELECT 1 FROM ZX_RATES_B ZR
WHERE
ZR.TAX_REGIME_CODE='US_SALE_AND_USE_TAX'
AND
ZR.TAX_JURISDICTION_CODE=ZJ.TAX_JURISDICTION_CODE)
ORDER BY TAX,
TAX_JURISDICTION_CODE,
GEOGRAPHY_ELEMENT2_CODE ,
GEOGRAPHY_ELEMENT3_CODE,
GEOGRAPHY_ELEMENT4_CODE
==================================================================================================================
-- BELOW QUERY RETRIEVES LIST OF
GEOGRAPHY'S WITHOUT JURISDICTIONS--
SELECT * FROM
(SELECT GEOGRAPHY_TYPE,
GEOGRAPHY_ELEMENT2_CODE STATE_CODE,
GEOGRAPHY_ELEMENT3_CODE COUNTY_CODE,
GEOGRAPHY_ELEMENT4_CODE CITY_CODE
FROM
HZ_GEOGRAPHIES HG
WHERE HG.GEOGRAPHY_TYPE='STATE'
AND SYSDATE BETWEEN HG.START_DATE AND
HG.END_DATE
AND GEOGRAPHY_ELEMENT1_CODE='US'
AND NOT EXISTS (SELECT 1 FROM ZX_JURISDICTIONS_B ZJ
WHERE
ZJ.ZONE_GEOGRAPHY_ID=HG.GEOGRAPHY_ID
AND
ZJ.TAX_REGIME_CODE='US_SALE_AND_USE_TAX'
AND SYSDATE BETWEEN ZJ.EFFECTIVE_FROM
AND NVL(ZJ.EFFECTIVE_TO,'31-DEC-4999')
AND ZJ.TAX=HG.GEOGRAPHY_TYPE)
UNION
SELECT GEOGRAPHY_TYPE,
GEOGRAPHY_ELEMENT2_CODE STATE_CODE,
GEOGRAPHY_ELEMENT3_CODE COUNTY_CODE,
GEOGRAPHY_ELEMENT4_CODE CITY_CODE
FROM
HZ_GEOGRAPHIES HG
WHERE HG.GEOGRAPHY_TYPE='COUNTY'
AND SYSDATE BETWEEN HG.START_DATE AND
HG.END_DATE
AND GEOGRAPHY_ELEMENT1_CODE='US'
AND NOT EXISTS (SELECT 1 FROM ZX_JURISDICTIONS_B ZJ
WHERE
ZJ.ZONE_GEOGRAPHY_ID=HG.GEOGRAPHY_ID
AND
ZJ.TAX_REGIME_CODE='US_SALE_AND_USE_TAX'
AND SYSDATE BETWEEN ZJ.EFFECTIVE_FROM
AND NVL(ZJ.EFFECTIVE_TO,'31-DEC-4999')
AND ZJ.TAX=HG.GEOGRAPHY_TYPE)
UNION
SELECT GEOGRAPHY_TYPE,
GEOGRAPHY_ELEMENT2_CODE STATE_CODE,
GEOGRAPHY_ELEMENT3_CODE COUNTY_CODE,
GEOGRAPHY_ELEMENT4_CODE CITY_CODE
FROM
HZ_GEOGRAPHIES HG
Oracle R12 EBTax SQL Queries for Functional Implementers for Trou... https://sites.google.com/site/oracler12ebtax/oracle-r12-ebtax-sql-querie...
3 of 5 24/07/2012 12:55
WHERE HG.GEOGRAPHY_TYPE='CITY'
AND SYSDATE BETWEEN HG.START_DATE AND
HG.END_DATE
AND GEOGRAPHY_ELEMENT1_CODE='US'
AND NOT EXISTS (SELECT 1 FROM ZX_JURISDICTIONS_B ZJ
WHERE
ZJ.ZONE_GEOGRAPHY_ID=HG.GEOGRAPHY_ID
AND
ZJ.TAX_REGIME_CODE='_US_SALE_AND_USE_TAX'
AND SYSDATE BETWEEN ZJ.EFFECTIVE_FROM
AND NVL(ZJ.EFFECTIVE_TO,'31-DEC-4999')
AND ZJ.TAX=HG.GEOGRAPHY_TYPE))
ORDER BY GEOGRAPHY_TYPE,STATE_CODE,
COUNTY_CODE,
CITY_CODE
===========================================================================================================
--SUPPLIER TAX REGISTRATION CREATION--
Use the below script to create Tax Registrations for suppliers - if you
have defined any tax rule based on Tax Registrations
DECLARE X_RETURN_STATUS VARCHAR2(1);
BEGIN
ZX_REGISTRATIONS_PKG.INSERT_ROW ( P_REQUEST_ID
=> NULL
,P_ATTRIBUTE1 => NULL
,P_ATTRIBUTE2 => NULL
,P_ATTRIBUTE3 => NULL
,P_ATTRIBUTE4 => NULL
,P_ATTRIBUTE5 => NULL
,P_ATTRIBUTE6 => NULL
,P_VALIDATION_RULE => NULL
,P_ROUNDING_RULE_CODE => 'UP'
,P_TAX_JURISDICTION_CODE => NULL
,P_SELF_ASSESS_FLAG => 'Y'
,P_REGISTRATION_STATUS_CODE =>
'REGISTERED'
,P_REGISTRATION_SOURCE_CODE =>
'IMPLICIT'
,P_REGISTRATION_REASON_CODE =>
NULL
,P_TAX => NULL
,P_TAX_REGIME_CODE => 'DAR'
,P_INCLUSIVE_TAX_FLAG => 'N'
,P_EFFECTIVE_FROM => TO_DATE('01-
DEC-2007','DD-MON-YYYY')
,P_EFFECTIVE_TO => NULL
,P_REP_PARTY_TAX_NAME => NULL
,P_DEFAULT_REGISTRATION_FLAG =>
'N'
,P_BANK_ACCOUNT_NUM => NULL
,P_RECORD_TYPE_CODE => NULL
,P_LEGAL_LOCATION_ID => NULL
,P_TAX_AUTHORITY_ID => NULL
,P_REP_TAX_AUTHORITY_ID => NULL
,P_COLL_TAX_AUTHORITY_ID => NULL
,P_REGISTRATION_TYPE_CODE =>
NULL
,P_REGISTRATION_NUMBER => NULL
,P_PARTY_TAX_PROFILE_ID => 812988
,P_LEGAL_REGISTRATION_ID => NULL
,P_BANK_ID => NULL
,P_BANK_BRANCH_ID => NULL
,P_ACCOUNT_SITE_ID => NULL
,P_ATTRIBUTE14 => NULL
,P_ATTRIBUTE15 => NULL
,P_ATTRIBUTE_CATEGORY => NULL
,P_PROGRAM_LOGIN_ID => NULL
,P_ACCOUNT_ID => NULL
,P_TAX_CLASSIFICATION_CODE =>
NULL
,P_ATTRIBUTE7 => NULL
,P_ATTRIBUTE8 => NULL
,P_ATTRIBUTE9 => NULL
,P_ATTRIBUTE10 => NULL
,P_ATTRIBUTE11 => NULL
,P_ATTRIBUTE12 => NULL
,P_ATTRIBUTE13 => NULL
,X_RETURN_STATUS =>
X_RETURN_STATUS
);
DBMS_OUTPUT.PUT_LINE('RETURN STATUS :'
||X_RETURN_STATUS);
COMMIT;
END;
===========================================================================================================
--EXCLUDE FREIGHT FROM DISCOUNT--
SELECT APS.VENDOR_NAME,
APS.EXCLUDE_FREIGHT_FROM_DISCOUNT VEND_EXCD,
APSS.VENDOR_SITE_CODE,
APSS.EXCLUDE_FREIGHT_FROM_DISCOUNT SITE_EXCD
FROM APPS.AP_SUPPLIERS APS,
APPS.AP_SUPPLIER_SITES_ALL APSS
WHERE APS.VENDOR_ID = APSS.VENDOR_ID
AND APS.VENDOR_ID NOT IN (1, 2, 3)
AND APSS.EXCLUDE_FREIGHT_FROM_DISCOUNT IS NULL
Oracle R12 EBTax SQL Queries for Functional Implementers for Trou... https://sites.google.com/site/oracler12ebtax/oracle-r12-ebtax-sql-querie...
4 of 5 24/07/2012 12:55
AND APS.EXCLUDE_FREIGHT_FROM_DISCOUNT IS NULL
==============================================================================================================
Sign in | Report Abuse | Print Page | Remove Access | Powered By Google Sites
Oracle R12 EBTax SQL Queries for Functional Implementers for Trou... https://sites.google.com/site/oracler12ebtax/oracle-r12-ebtax-sql-querie...
5 of 5 24/07/2012 12:55

More Related Content

What's hot

Pick pack and ship confirm process in oracle apps
Pick pack and ship confirm process in oracle appsPick pack and ship confirm process in oracle apps
Pick pack and ship confirm process in oracle appsshravan kumar chelika
 
Oracle Purchasing Internal Requisition
Oracle Purchasing Internal RequisitionOracle Purchasing Internal Requisition
Oracle Purchasing Internal RequisitionAhmed Elshayeb
 
Elshayeb Oracle R12 Order Management
Elshayeb Oracle R12 Order ManagementElshayeb Oracle R12 Order Management
Elshayeb Oracle R12 Order ManagementAhmed Elshayeb
 
Inventory in Oracle apps
Inventory in Oracle apps Inventory in Oracle apps
Inventory in Oracle apps gbalagee
 
Oracle R12 SCM Functional Interview Questions - Order Management,
Oracle R12 SCM Functional Interview Questions - Order Management, Oracle R12 SCM Functional Interview Questions - Order Management,
Oracle R12 SCM Functional Interview Questions - Order Management, Boopathy CS
 
Oracle R12 inventory Table name details with description
Oracle R12 inventory Table name details with descriptionOracle R12 inventory Table name details with description
Oracle R12 inventory Table name details with descriptionBoopathy CS
 
Oracle R12 Apps - Order Management Tables & Descriptions
Oracle R12 Apps - Order Management Tables & DescriptionsOracle R12 Apps - Order Management Tables & Descriptions
Oracle R12 Apps - Order Management Tables & DescriptionsBoopathy CS
 
Technical architecture for order management
Technical architecture for order managementTechnical architecture for order management
Technical architecture for order managementMohit kumar Gupta
 
Send mail with attached report layout
Send mail with attached report layoutSend mail with attached report layout
Send mail with attached report layoutAhmed Elshayeb
 
Oracle Personalization How To Restricting users from assigning items to diffe...
Oracle Personalization How To Restricting users from assigning items to diffe...Oracle Personalization How To Restricting users from assigning items to diffe...
Oracle Personalization How To Restricting users from assigning items to diffe...Ahmed Elshayeb
 
Oracle EBS R12 Order Management Notes
Oracle EBS R12 Order Management NotesOracle EBS R12 Order Management Notes
Oracle EBS R12 Order Management NotesTech Leads IT
 
Oracle R12 Apps - Purchasing Module Setup Steps
Oracle R12 Apps - Purchasing Module Setup Steps Oracle R12 Apps - Purchasing Module Setup Steps
Oracle R12 Apps - Purchasing Module Setup Steps Boopathy CS
 
Oracle Advanced Procurement Training@ERP OCEAN
Oracle Advanced Procurement Training@ERP OCEANOracle Advanced Procurement Training@ERP OCEAN
Oracle Advanced Procurement Training@ERP OCEANERP OCEAN Infotech Pvt Ltd
 
R12 inventory features
R12 inventory featuresR12 inventory features
R12 inventory featuresSuresh Mishra
 
Oracle min-max-planning
Oracle min-max-planningOracle min-max-planning
Oracle min-max-planningmgarg82
 

What's hot (20)

Pick pack and ship confirm process in oracle apps
Pick pack and ship confirm process in oracle appsPick pack and ship confirm process in oracle apps
Pick pack and ship confirm process in oracle apps
 
Oracle Purchasing Internal Requisition
Oracle Purchasing Internal RequisitionOracle Purchasing Internal Requisition
Oracle Purchasing Internal Requisition
 
BR100 Oracle AP Setup
BR100 Oracle AP SetupBR100 Oracle AP Setup
BR100 Oracle AP Setup
 
Oracle R12 Legal Entity
Oracle R12 Legal EntityOracle R12 Legal Entity
Oracle R12 Legal Entity
 
Oracle EBS Currency conversion
Oracle EBS Currency conversionOracle EBS Currency conversion
Oracle EBS Currency conversion
 
E-Business Tax Purchasing Whitepaper
E-Business Tax Purchasing WhitepaperE-Business Tax Purchasing Whitepaper
E-Business Tax Purchasing Whitepaper
 
Elshayeb Oracle R12 Order Management
Elshayeb Oracle R12 Order ManagementElshayeb Oracle R12 Order Management
Elshayeb Oracle R12 Order Management
 
Oracle Applications R12 Sourcing Training
Oracle Applications R12 Sourcing TrainingOracle Applications R12 Sourcing Training
Oracle Applications R12 Sourcing Training
 
Inventory in Oracle apps
Inventory in Oracle apps Inventory in Oracle apps
Inventory in Oracle apps
 
Oracle R12 SCM Functional Interview Questions - Order Management,
Oracle R12 SCM Functional Interview Questions - Order Management, Oracle R12 SCM Functional Interview Questions - Order Management,
Oracle R12 SCM Functional Interview Questions - Order Management,
 
Oracle R12 inventory Table name details with description
Oracle R12 inventory Table name details with descriptionOracle R12 inventory Table name details with description
Oracle R12 inventory Table name details with description
 
Oracle R12 Apps - Order Management Tables & Descriptions
Oracle R12 Apps - Order Management Tables & DescriptionsOracle R12 Apps - Order Management Tables & Descriptions
Oracle R12 Apps - Order Management Tables & Descriptions
 
Technical architecture for order management
Technical architecture for order managementTechnical architecture for order management
Technical architecture for order management
 
Send mail with attached report layout
Send mail with attached report layoutSend mail with attached report layout
Send mail with attached report layout
 
Oracle Personalization How To Restricting users from assigning items to diffe...
Oracle Personalization How To Restricting users from assigning items to diffe...Oracle Personalization How To Restricting users from assigning items to diffe...
Oracle Personalization How To Restricting users from assigning items to diffe...
 
Oracle EBS R12 Order Management Notes
Oracle EBS R12 Order Management NotesOracle EBS R12 Order Management Notes
Oracle EBS R12 Order Management Notes
 
Oracle R12 Apps - Purchasing Module Setup Steps
Oracle R12 Apps - Purchasing Module Setup Steps Oracle R12 Apps - Purchasing Module Setup Steps
Oracle R12 Apps - Purchasing Module Setup Steps
 
Oracle Advanced Procurement Training@ERP OCEAN
Oracle Advanced Procurement Training@ERP OCEANOracle Advanced Procurement Training@ERP OCEAN
Oracle Advanced Procurement Training@ERP OCEAN
 
R12 inventory features
R12 inventory featuresR12 inventory features
R12 inventory features
 
Oracle min-max-planning
Oracle min-max-planningOracle min-max-planning
Oracle min-max-planning
 

Viewers also liked

1 vocabulary and dictionary skills
1 vocabulary and dictionary skills1 vocabulary and dictionary skills
1 vocabulary and dictionary skillsShaun Wilden
 
03 r12 mrp_fr_logistics_overview
03 r12 mrp_fr_logistics_overview03 r12 mrp_fr_logistics_overview
03 r12 mrp_fr_logistics_overviewdreraser
 
Inspirage Rapid Start: S&OP Webinar - April 2014
Inspirage Rapid Start: S&OP Webinar - April 2014Inspirage Rapid Start: S&OP Webinar - April 2014
Inspirage Rapid Start: S&OP Webinar - April 2014Inspirage
 
Oracle apps technical tutorial
Oracle apps technical tutorialOracle apps technical tutorial
Oracle apps technical tutorialManu MK
 
RFID in Warehouse Management
RFID in Warehouse ManagementRFID in Warehouse Management
RFID in Warehouse Managementiaitoinfotech
 
Identifying Warehouse Management Value in the Connected Enterprise
Identifying Warehouse Management Value in the Connected EnterpriseIdentifying Warehouse Management Value in the Connected Enterprise
Identifying Warehouse Management Value in the Connected EnterpriseInspirage
 
Supply Chain Management
Supply Chain ManagementSupply Chain Management
Supply Chain ManagementGohar Saeed
 
Oracle Warehouse Management System(Oracle WMS)@ERP OCEAN
Oracle Warehouse Management System(Oracle WMS)@ERP OCEANOracle Warehouse Management System(Oracle WMS)@ERP OCEAN
Oracle Warehouse Management System(Oracle WMS)@ERP OCEANERP OCEAN Infotech Pvt Ltd
 
Oracle wms and oracle msca overview
Oracle wms and oracle msca overviewOracle wms and oracle msca overview
Oracle wms and oracle msca overviewRaj Khanna
 
6 Tips to Avoid a Failed Warehouse Management System (WMS) Implementation
6 Tips to Avoid a Failed Warehouse Management System (WMS) Implementation6 Tips to Avoid a Failed Warehouse Management System (WMS) Implementation
6 Tips to Avoid a Failed Warehouse Management System (WMS) ImplementationCommonwealth Supply Chain Advisors
 
Warehouse management using rfid
Warehouse management using rfidWarehouse management using rfid
Warehouse management using rfidSaurav Suman
 
Oracle Applications - R12 Approvals Management Engine - AME Training
Oracle Applications - R12 Approvals Management Engine - AME TrainingOracle Applications - R12 Approvals Management Engine - AME Training
Oracle Applications - R12 Approvals Management Engine - AME TrainingDharmalingam Kandampalayam Shanmugam
 
Webinar: Oracle R12 Warehouse Management System (WMS) Overview
Webinar: Oracle R12 Warehouse Management System (WMS) OverviewWebinar: Oracle R12 Warehouse Management System (WMS) Overview
Webinar: Oracle R12 Warehouse Management System (WMS) OverviewiWare Logic Technologies Pvt. Ltd.
 
Warehouse
WarehouseWarehouse
WarehouseBIT
 
Warehouse Operations and Inventory Management
Warehouse Operations and Inventory Management Warehouse Operations and Inventory Management
Warehouse Operations and Inventory Management Thomas Tanel
 
Project Proposal Sample: RFID on Warehouse Management System
Project Proposal Sample: RFID on Warehouse Management SystemProject Proposal Sample: RFID on Warehouse Management System
Project Proposal Sample: RFID on Warehouse Management SystemCheri Amour Calicdan
 
Warehouse Management System
Warehouse Management SystemWarehouse Management System
Warehouse Management SystemRRChandran
 

Viewers also liked (20)

1 vocabulary and dictionary skills
1 vocabulary and dictionary skills1 vocabulary and dictionary skills
1 vocabulary and dictionary skills
 
03 r12 mrp_fr_logistics_overview
03 r12 mrp_fr_logistics_overview03 r12 mrp_fr_logistics_overview
03 r12 mrp_fr_logistics_overview
 
Inspirage Rapid Start: S&OP Webinar - April 2014
Inspirage Rapid Start: S&OP Webinar - April 2014Inspirage Rapid Start: S&OP Webinar - April 2014
Inspirage Rapid Start: S&OP Webinar - April 2014
 
Oracle apps technical tutorial
Oracle apps technical tutorialOracle apps technical tutorial
Oracle apps technical tutorial
 
RFID in Warehouse Management
RFID in Warehouse ManagementRFID in Warehouse Management
RFID in Warehouse Management
 
Identifying Warehouse Management Value in the Connected Enterprise
Identifying Warehouse Management Value in the Connected EnterpriseIdentifying Warehouse Management Value in the Connected Enterprise
Identifying Warehouse Management Value in the Connected Enterprise
 
Supply Chain Management
Supply Chain ManagementSupply Chain Management
Supply Chain Management
 
WMS Overview
WMS OverviewWMS Overview
WMS Overview
 
Oracle Warehouse Management System(Oracle WMS)@ERP OCEAN
Oracle Warehouse Management System(Oracle WMS)@ERP OCEANOracle Warehouse Management System(Oracle WMS)@ERP OCEAN
Oracle Warehouse Management System(Oracle WMS)@ERP OCEAN
 
Oracle wms and oracle msca overview
Oracle wms and oracle msca overviewOracle wms and oracle msca overview
Oracle wms and oracle msca overview
 
6 Tips to Avoid a Failed Warehouse Management System (WMS) Implementation
6 Tips to Avoid a Failed Warehouse Management System (WMS) Implementation6 Tips to Avoid a Failed Warehouse Management System (WMS) Implementation
6 Tips to Avoid a Failed Warehouse Management System (WMS) Implementation
 
Warehouse management using rfid
Warehouse management using rfidWarehouse management using rfid
Warehouse management using rfid
 
WMS Overview
WMS OverviewWMS Overview
WMS Overview
 
Oracle Applications - R12 Approvals Management Engine - AME Training
Oracle Applications - R12 Approvals Management Engine - AME TrainingOracle Applications - R12 Approvals Management Engine - AME Training
Oracle Applications - R12 Approvals Management Engine - AME Training
 
Warehouse automation
Warehouse automationWarehouse automation
Warehouse automation
 
Webinar: Oracle R12 Warehouse Management System (WMS) Overview
Webinar: Oracle R12 Warehouse Management System (WMS) OverviewWebinar: Oracle R12 Warehouse Management System (WMS) Overview
Webinar: Oracle R12 Warehouse Management System (WMS) Overview
 
Warehouse
WarehouseWarehouse
Warehouse
 
Warehouse Operations and Inventory Management
Warehouse Operations and Inventory Management Warehouse Operations and Inventory Management
Warehouse Operations and Inventory Management
 
Project Proposal Sample: RFID on Warehouse Management System
Project Proposal Sample: RFID on Warehouse Management SystemProject Proposal Sample: RFID on Warehouse Management System
Project Proposal Sample: RFID on Warehouse Management System
 
Warehouse Management System
Warehouse Management SystemWarehouse Management System
Warehouse Management System
 

Similar to Oracle r12 eb tax sql queries for functional implementers for troubleshooting oracle r12 upgrade and e-business tax implementa

Concur integration with PI solution pack
Concur integration with PI solution pack Concur integration with PI solution pack
Concur integration with PI solution pack SatyaSuman Lakkimsetty
 
ORACLE APPS FINANCE FUNCTIONAL R12 ONLINE TRAINING COURSE CONTENT
ORACLE APPS FINANCE FUNCTIONAL R12 ONLINE TRAINING COURSE CONTENTORACLE APPS FINANCE FUNCTIONAL R12 ONLINE TRAINING COURSE CONTENT
ORACLE APPS FINANCE FUNCTIONAL R12 ONLINE TRAINING COURSE CONTENTseasofttraining
 
Boxcars and Cabooses: When one more XHR is too much - Peter Chittum - Codemot...
Boxcars and Cabooses: When one more XHR is too much - Peter Chittum - Codemot...Boxcars and Cabooses: When one more XHR is too much - Peter Chittum - Codemot...
Boxcars and Cabooses: When one more XHR is too much - Peter Chittum - Codemot...Codemotion
 
OData: A Standard API for Data Access
OData: A Standard API for Data AccessOData: A Standard API for Data Access
OData: A Standard API for Data AccessPat Patterson
 
Oracle E business tax purchasing whitepaper
Oracle E business tax purchasing whitepaperOracle E business tax purchasing whitepaper
Oracle E business tax purchasing whitepaperRizwan Ali Qumbrani
 
Document splitting in New GL in SAP
Document splitting in New GL in SAPDocument splitting in New GL in SAP
Document splitting in New GL in SAPRajesh Shanbhag
 
How to Use HTP to Complete the Close Process Puzzle
How to Use HTP to Complete the Close Process PuzzleHow to Use HTP to Complete the Close Process Puzzle
How to Use HTP to Complete the Close Process PuzzleAlithya
 
Customer bank account assignment detail report
Customer bank account assignment detail reportCustomer bank account assignment detail report
Customer bank account assignment detail reportlingaswamy vallapu
 
How to Deploy & Integrate Oracle EPM Cloud Profitability and Cost Management ...
How to Deploy & Integrate Oracle EPM Cloud Profitability and Cost Management ...How to Deploy & Integrate Oracle EPM Cloud Profitability and Cost Management ...
How to Deploy & Integrate Oracle EPM Cloud Profitability and Cost Management ...Alithya
 
New Charts Architectures (2)
New Charts Architectures (2)New Charts Architectures (2)
New Charts Architectures (2)guestf73e68
 
Omnichannel Convergent Billing.pdf
Omnichannel Convergent Billing.pdfOmnichannel Convergent Billing.pdf
Omnichannel Convergent Billing.pdfAmitKumarbishoyi2
 
dokumen.tips_collaborate12-baugh-r12-federal-financials-subledger-accounting-...
dokumen.tips_collaborate12-baugh-r12-federal-financials-subledger-accounting-...dokumen.tips_collaborate12-baugh-r12-federal-financials-subledger-accounting-...
dokumen.tips_collaborate12-baugh-r12-federal-financials-subledger-accounting-...sarfrajahamad1
 
Endeca information discovery for Oracle Receivables ( EBS)
Endeca information discovery for Oracle Receivables ( EBS)Endeca information discovery for Oracle Receivables ( EBS)
Endeca information discovery for Oracle Receivables ( EBS)Bizinsight Consulting Inc
 
Performance Tuning for Visualforce and Apex
Performance Tuning for Visualforce and ApexPerformance Tuning for Visualforce and Apex
Performance Tuning for Visualforce and ApexSalesforce Developers
 

Similar to Oracle r12 eb tax sql queries for functional implementers for troubleshooting oracle r12 upgrade and e-business tax implementa (20)

Oracle R12 Financials New Features Overview
Oracle R12 Financials New Features OverviewOracle R12 Financials New Features Overview
Oracle R12 Financials New Features Overview
 
R12 MOAC AND PAYABLES
R12 MOAC AND PAYABLESR12 MOAC AND PAYABLES
R12 MOAC AND PAYABLES
 
Concur integration with PI solution pack
Concur integration with PI solution pack Concur integration with PI solution pack
Concur integration with PI solution pack
 
ORACLE APPS FINANCE FUNCTIONAL R12 ONLINE TRAINING COURSE CONTENT
ORACLE APPS FINANCE FUNCTIONAL R12 ONLINE TRAINING COURSE CONTENTORACLE APPS FINANCE FUNCTIONAL R12 ONLINE TRAINING COURSE CONTENT
ORACLE APPS FINANCE FUNCTIONAL R12 ONLINE TRAINING COURSE CONTENT
 
Boxcars and Cabooses: When one more XHR is too much - Peter Chittum - Codemot...
Boxcars and Cabooses: When one more XHR is too much - Peter Chittum - Codemot...Boxcars and Cabooses: When one more XHR is too much - Peter Chittum - Codemot...
Boxcars and Cabooses: When one more XHR is too much - Peter Chittum - Codemot...
 
OData: A Standard API for Data Access
OData: A Standard API for Data AccessOData: A Standard API for Data Access
OData: A Standard API for Data Access
 
Oracle E business tax purchasing whitepaper
Oracle E business tax purchasing whitepaperOracle E business tax purchasing whitepaper
Oracle E business tax purchasing whitepaper
 
Document splitting in New GL in SAP
Document splitting in New GL in SAPDocument splitting in New GL in SAP
Document splitting in New GL in SAP
 
How to Use HTP to Complete the Close Process Puzzle
How to Use HTP to Complete the Close Process PuzzleHow to Use HTP to Complete the Close Process Puzzle
How to Use HTP to Complete the Close Process Puzzle
 
Sap fico training course
Sap fico training courseSap fico training course
Sap fico training course
 
Customer bank account assignment detail report
Customer bank account assignment detail reportCustomer bank account assignment detail report
Customer bank account assignment detail report
 
Copa realignment
Copa realignmentCopa realignment
Copa realignment
 
How to Deploy & Integrate Oracle EPM Cloud Profitability and Cost Management ...
How to Deploy & Integrate Oracle EPM Cloud Profitability and Cost Management ...How to Deploy & Integrate Oracle EPM Cloud Profitability and Cost Management ...
How to Deploy & Integrate Oracle EPM Cloud Profitability and Cost Management ...
 
New Charts Architectures (2)
New Charts Architectures (2)New Charts Architectures (2)
New Charts Architectures (2)
 
Omnichannel Convergent Billing.pdf
Omnichannel Convergent Billing.pdfOmnichannel Convergent Billing.pdf
Omnichannel Convergent Billing.pdf
 
dokumen.tips_collaborate12-baugh-r12-federal-financials-subledger-accounting-...
dokumen.tips_collaborate12-baugh-r12-federal-financials-subledger-accounting-...dokumen.tips_collaborate12-baugh-r12-federal-financials-subledger-accounting-...
dokumen.tips_collaborate12-baugh-r12-federal-financials-subledger-accounting-...
 
New features Oracle Fusion (Cloud) -r-13
New features  Oracle Fusion (Cloud) -r-13New features  Oracle Fusion (Cloud) -r-13
New features Oracle Fusion (Cloud) -r-13
 
Endeca information discovery for Oracle Receivables ( EBS)
Endeca information discovery for Oracle Receivables ( EBS)Endeca information discovery for Oracle Receivables ( EBS)
Endeca information discovery for Oracle Receivables ( EBS)
 
Performance Tuning for Visualforce and Apex
Performance Tuning for Visualforce and ApexPerformance Tuning for Visualforce and Apex
Performance Tuning for Visualforce and Apex
 
EBTax Rules
EBTax RulesEBTax Rules
EBTax Rules
 

Recently uploaded

The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
What is Artificial Intelligence?????????
What is Artificial Intelligence?????????What is Artificial Intelligence?????????
What is Artificial Intelligence?????????blackmambaettijean
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxBkGupta21
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESmohitsingh558521
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rick Flair
 

Recently uploaded (20)

The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
What is Artificial Intelligence?????????
What is Artificial Intelligence?????????What is Artificial Intelligence?????????
What is Artificial Intelligence?????????
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptx
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...
 

Oracle r12 eb tax sql queries for functional implementers for troubleshooting oracle r12 upgrade and e-business tax implementa

  • 1. Oracle R12 Upgrade and E-Business Tax Implementation Resources Navigation Oracle R12 E-Business Tax (EBTax) Implementation Resources Comparision - Vertex, Taxware and Sabrix for Oracle EBTax CV040 - EBTax Supplier Conversion Components for P2P Taxes EBTax Third Party Tax Rate File Upload Solution Design & Process Overview Oracle E-Business Tax - Importing AP Invoices - Payables Open Invoice Interface Oracle E-Business Tax Implementation Scenarios for United States Oracle E-Business Tax Integration with Taxware Oracle EBTax - Business Processes in Vertex and Taxware Oracle EBTax BR100 Setup Document Oracle EBTax Canadian VAT Setup Examples Oracle EBTax Files and Documents Oracle EBTax UK VAT Setup Examples Oracle EBTax US Sales and Use Tax Setup Examples Oracle R12 E-Business Tax Implementation Presentations Oracle R12 E-Business Tax Integration with Oracle Payables - Presentations Oracle R12 EBTax SQL Queries for Functional Implementers for Troubleshooting Oracle R12 Enhancements Cheat Sheet Oracle R12 Financials PreUpgrade Setup Tips Oracle R12 Upgrade Enhancements - Financial Modules R12 EB Tax Accounting - Setting Up Tax Accounts R12 EBTax Upgrade Considerations TCA Architechture in Oracle R12 Troubleshooting why eBTax does Not Calculate in Oracle E-Business Suite About Author Oracle Applications (ERP) Financials Functional Consultant with over 12 years of Experience I can be easily reached at Email - orafinr12docs@gmail.com Oracle R12 EBTax Experience: Total 8 Implementations (5 implementations & 3 upgrades – Industries Include) - Utility - Higher Education (University) - Distribution - Retail - Semi- Conductor - Bio Sciences & Nutritional (Web Sales) Countries Implemented - United States, Canada, UK & EU VAT Expertise on P2P and O2C Side – Evaluations / proposals/ solution Design / implementing complex solutions etc 0 Oracle R12 EBTax SQL Queries for Functional Implementers for Troubleshooting Contents 1 -- EBTAX SETUP TABLES -- 2 -- EBTAX TRANSACTION TABLES -- 3 -- SQL FOR PARTY FISCAL CLASSIFICATION CODE -- 4 -- BELOW QUERY RETRIEVES CUSTOMER ADDRESSES THAT DOESNT HAVE ANY GEOGRAPHY REFERENCE -- 5 -- BELOW SQL QUERY RETRIEVES LIST OF JURISDICTIONS' FOR WHICH TAX RATES HAS BEEN DEFINED -- 6 -- BELOW QUERY RETRIEVES LIST OF GEOGRAPHY'S WITHOUT JURISDICTIONS-- 7 --SUPPLIER TAX REGISTRATION CREATION-- 8 --EXCLUDE FREIGHT FROM DISCOUNT-- ========================================================================================================= -- EBTAX SETUP TABLES -- Following are the main E-Business tax tables that will contain the setup information that will help support in troubleshooting E-Business tax information. a. Tax Regimes: ZX_REGIMES_B b. Taxes: ZX_TAXES_B c. Tax Status: ZX_STATUS_B d. Tax Rates: ZX_RATES_B e. Tax Jurisdictions: ZX_JURISDICTIONS_B f. Tax Rules: ZX_RULES_B To get a dump of the eTax setups, you can use the following set of queries. Please provide the tax regime code when prompted. If the issue is limited to a tax then provide the tax name when prompted else please leave it blank. SELECT * FROM zx_regimes_b WHERE tax_regime_code = '&tax_regime_code'; SELECT * FROM zx_taxes_b WHERE DECODE('&tax_name',null,'xxx',tax) = nvl('&tax_name','xxx') AND tax_regime_code = '&tax_regime_code'; SELECT * FROM zx_status_b WHERE tax = '&tax_name' AND tax_regime_code = '&tax_regime_code'; SELECT * FROM zx_rates_b WHERE tax = '&tax_name' AND tax_regime_code = '&tax_regime_code'; SELECT * FROM zx_jurisdictions_b WHERE DECODE('&tax_name',null,'xxx',tax) = nvl('&tax_name','xxx') AND tax_regime_code = '&tax_regime_code'; SELECT * FROM zx_rules_b WHERE tax = '&tax_name' AND tax_regime_code = '&tax_regime_code'; ===================================================================== -- EBTAX TRANSACTION TABLES -- Following are the main E-Business tax tables that will contain the transaction information that will have the tax details after tax is calculated. a. ZX_LINES: This table will have the tax lines for associated with PO/Release schedules. TRX_ID: Transaction ID. This is linked to the Search this site CRM Strategy Research Build Deep Customer Knowledge. Download The Featured Report Now. Forrester.com/CRM-White-Paper Oracle R12 EBTax SQL Queries for Functional Implementers for Trou... https://sites.google.com/site/oracler12ebtax/oracle-r12-ebtax-sql-querie... 1 of 5 24/07/2012 12:55
  • 2. PO_HEADERS_ALL.PO_HEADER_ID TRX_LINE_ID: Transaction Line ID. This is linked to the PO_LINE_LOCATIONS_ALL.LINE_LOCATION_ID b. ZX_REC_NREC_DIST: This table will have the tax distributions for associated with PO/Release distributions. TRX_ID: Transaction ID. This is linked to the PO_HEADERS_ALL.PO_HEADER_ID TRX_LINE_ID: Transaction Line ID. This is linked to the PO_LINE_LOCATIONS_ALL.LINE_LOCATION_ID TRX_LINE_DIST_ID: Transaction Line Distribution ID. This is linked to the PO_DISTRIBUTIONS_ALL.PO_DISTRIBUTION_ID RECOVERABLE_FLAG: Recoverable Flag. If the distribution is recoverable then the flag will be set to Y and there will be values in the RECOVERY_TYPE_CODE and RECOVERY_RATE_CODE. c. PO_REQ_DISTRIBUTIONS_ALL: This table will have the tax distributions for associated with Requisition distribution. RECOVERABLE_TAX: Recoverable tax amount NONRECOVERABLE_TAX: Non Recoverable tax amount d. ZX_LINES_DET_FACTORS: This table holds all the information of the tax line transaction for both the requisitions as well as the purchase orders/releases. TRX_ID: Transaction ID. This is linked to the PO_REQUISITION_HEADERS_ALL.REQUISITION_HEADER_ID / PO_HEADERS_ALL.PO_HEADER_ID TRX_LINE_ID: Transaction Line ID. This is linked to the PO_REQUISITION_LINES_ALL.REQUISITION_LINE_ID / PO_LINE_LOCATIONS_ALL.LINE_LOCATION_ID ============================================================================================================= -- SQL FOR PARTY FISCAL CLASSIFICATION CODE -- SELECT HPP.PARTY_NAME,HP.PARTY_SITE_NAME ,HCA.* FROM ZX_PARTY_TAX_PROFILE ZP ,HZ_CODE_ASSIGNMENTS HCA ,HZ_PARTY_SITES HP ,HZ_PARTIES HPP WHERE ZP.PARTY_TAX_PROFILE_ID = HCA.OWNER_TABLE_ID --AND ZP.PARTY_ID = :PARTY_ID AND HCA.OWNER_TABLE_NAME = 'ZX_PARTY_TAX_PROFILE' AND HP.PARTY_SITE_ID = ZP.PARTY_ID AND HPP.PARTY_ID= HP.PARTY_ID AND HCA.CLASS_CODE IS NOT NULL ORDER BY ZP.LAST_UPDATE_DATE DESC SELECT HP.PARTY_ID, HP.PARTY_NAME, HPS.PARTY_SITE_ID, HPS.PARTY_SITE_NAME, ZP.PARTY_TAX_PROFILE_ID FROM ZX_PARTY_TAX_PROFILE ZP, HZ_PARTY_SITES HPS, HZ_PARTIES HP, HZ_CUST_ACCOUNTS_ALL CA WHERE HP.PARTY_ID = HPS.PARTY_ID AND HP.PARTY_ID = CA.PARTY_ID AND HPS.PARTY_SITE_ID = ZP.PARTY_ID AND CA.CUSTOMER_CLASS_CODE = 'WEB CUSTOMER' AND UPPER(HP.PARTY_NAME) LIKE 'CAROLE%FINCK%' AND EXISTS ( SELECT 1 FROM HZ_CODE_ASSIGNMENTS HCA WHERE HCA.OWNER_TABLE_ID = ZP.PARTY_TAX_PROFILE_ID AND HCA.OWNER_TABLE_NAME = 'ZX_PARTY_TAX_PROFILE' AND HCA.CLASS_CODE IS NOT NULL) ORDER BY ZP.LAST_UPDATE_DATE DESC; =============================================================================================================== -- BELOW QUERY RETRIEVES CUSTOMER ADDRESSES THAT DOESNT HAVE ANY GEOGRAPHY REFERENCE -- SELECT HCA.ACCOUNT_NUMBER ,HCA.ACCOUNT_NAME ,HCS_SHIP.SITE_USE_CODE ,HL_SHIP.ADDRESS1 ADDRESS ,HL_SHIP.STATE STATE ,HL_SHIP.COUNTY COUNTY ,HL_SHIP.CITY CITY ,HL_SHIP.POSTAL_CODE FROM HZ_CUST_SITE_USES_ALL HCS_SHIP , HZ_CUST_ACCT_SITES_ALL HCA_SHIP , HZ_CUST_ACCOUNTS HCA , HZ_PARTY_SITES HPS_SHIP , HZ_LOCATIONS HL_SHIP WHERE HCA.CUST_ACCOUNT_ID=HCA_SHIP.CUST_ACCOUNT_ID(+) AND HCS_SHIP.CUST_ACCT_SITE_ID(+) = Oracle R12 EBTax SQL Queries for Functional Implementers for Trou... https://sites.google.com/site/oracler12ebtax/oracle-r12-ebtax-sql-querie... 2 of 5 24/07/2012 12:55
  • 3. HCA_SHIP.CUST_ACCT_SITE_ID -- AND HCA.ACCOUNT_NUMBER='10001' AND HCA_SHIP.PARTY_SITE_ID = HPS_SHIP.PARTY_SITE_ID AND HPS_SHIP.LOCATION_ID = HL_SHIP.LOCATION_ID AND HCA.STATUS='A' AND HCS_SHIP.STATUS='A' AND HCA_SHIP.STATUS='A' AND HL_SHIP.COUNTRY='US' AND NOT EXISTS (SELECT 1 FROM HZ_GEOGRAPHIES HG WHERE HG.GEOGRAPHY_ELEMENT2_CODE=HL_SHIP.STATE AND UPPER(HL_SHIP.COUNTY)=UPPER(HG.GEOGRAPHY_ELEMENT3_CODE) AND UPPER(HL_SHIP.CITY)=UPPER(HG.GEOGRAPHY_ELEMENT4_CODE) AND SYSDATE BETWEEN HG.START_DATE AND HG.END_DATE) ================================================================================================================ -- BELOW SQL QUERY RETRIEVES LIST OF JURISDICTIONS' FOR WHICH TAX RATES HAS BEEN DEFINED -- SELECT TAX, TAX_JURISDICTION_CODE, GEOGRAPHY_ELEMENT2_CODE STATE_CODE, GEOGRAPHY_ELEMENT3_CODE COUNTY_CODE, GEOGRAPHY_ELEMENT4_CODE CITY_CODE FROM ZX_JURISDICTIONS_B ZJ, HZ_GEOGRAPHIES HG WHERE ZJ.TAX_REGIME_CODE='US_SALE_AND_USE_TAX' AND SYSDATE BETWEEN ZJ.EFFECTIVE_FROM AND NVL(ZJ.EFFECTIVE_TO,'31-DEC-4999') AND SYSDATE BETWEEN HG.START_DATE AND HG.END_DATE AND ZJ.ZONE_GEOGRAPHY_ID=HG.GEOGRAPHY_ID AND ZJ.TAX=HG.GEOGRAPHY_TYPE AND NOT EXISTS (SELECT 1 FROM ZX_RATES_B ZR WHERE ZR.TAX_REGIME_CODE='US_SALE_AND_USE_TAX' AND ZR.TAX_JURISDICTION_CODE=ZJ.TAX_JURISDICTION_CODE) ORDER BY TAX, TAX_JURISDICTION_CODE, GEOGRAPHY_ELEMENT2_CODE , GEOGRAPHY_ELEMENT3_CODE, GEOGRAPHY_ELEMENT4_CODE ================================================================================================================== -- BELOW QUERY RETRIEVES LIST OF GEOGRAPHY'S WITHOUT JURISDICTIONS-- SELECT * FROM (SELECT GEOGRAPHY_TYPE, GEOGRAPHY_ELEMENT2_CODE STATE_CODE, GEOGRAPHY_ELEMENT3_CODE COUNTY_CODE, GEOGRAPHY_ELEMENT4_CODE CITY_CODE FROM HZ_GEOGRAPHIES HG WHERE HG.GEOGRAPHY_TYPE='STATE' AND SYSDATE BETWEEN HG.START_DATE AND HG.END_DATE AND GEOGRAPHY_ELEMENT1_CODE='US' AND NOT EXISTS (SELECT 1 FROM ZX_JURISDICTIONS_B ZJ WHERE ZJ.ZONE_GEOGRAPHY_ID=HG.GEOGRAPHY_ID AND ZJ.TAX_REGIME_CODE='US_SALE_AND_USE_TAX' AND SYSDATE BETWEEN ZJ.EFFECTIVE_FROM AND NVL(ZJ.EFFECTIVE_TO,'31-DEC-4999') AND ZJ.TAX=HG.GEOGRAPHY_TYPE) UNION SELECT GEOGRAPHY_TYPE, GEOGRAPHY_ELEMENT2_CODE STATE_CODE, GEOGRAPHY_ELEMENT3_CODE COUNTY_CODE, GEOGRAPHY_ELEMENT4_CODE CITY_CODE FROM HZ_GEOGRAPHIES HG WHERE HG.GEOGRAPHY_TYPE='COUNTY' AND SYSDATE BETWEEN HG.START_DATE AND HG.END_DATE AND GEOGRAPHY_ELEMENT1_CODE='US' AND NOT EXISTS (SELECT 1 FROM ZX_JURISDICTIONS_B ZJ WHERE ZJ.ZONE_GEOGRAPHY_ID=HG.GEOGRAPHY_ID AND ZJ.TAX_REGIME_CODE='US_SALE_AND_USE_TAX' AND SYSDATE BETWEEN ZJ.EFFECTIVE_FROM AND NVL(ZJ.EFFECTIVE_TO,'31-DEC-4999') AND ZJ.TAX=HG.GEOGRAPHY_TYPE) UNION SELECT GEOGRAPHY_TYPE, GEOGRAPHY_ELEMENT2_CODE STATE_CODE, GEOGRAPHY_ELEMENT3_CODE COUNTY_CODE, GEOGRAPHY_ELEMENT4_CODE CITY_CODE FROM HZ_GEOGRAPHIES HG Oracle R12 EBTax SQL Queries for Functional Implementers for Trou... https://sites.google.com/site/oracler12ebtax/oracle-r12-ebtax-sql-querie... 3 of 5 24/07/2012 12:55
  • 4. WHERE HG.GEOGRAPHY_TYPE='CITY' AND SYSDATE BETWEEN HG.START_DATE AND HG.END_DATE AND GEOGRAPHY_ELEMENT1_CODE='US' AND NOT EXISTS (SELECT 1 FROM ZX_JURISDICTIONS_B ZJ WHERE ZJ.ZONE_GEOGRAPHY_ID=HG.GEOGRAPHY_ID AND ZJ.TAX_REGIME_CODE='_US_SALE_AND_USE_TAX' AND SYSDATE BETWEEN ZJ.EFFECTIVE_FROM AND NVL(ZJ.EFFECTIVE_TO,'31-DEC-4999') AND ZJ.TAX=HG.GEOGRAPHY_TYPE)) ORDER BY GEOGRAPHY_TYPE,STATE_CODE, COUNTY_CODE, CITY_CODE =========================================================================================================== --SUPPLIER TAX REGISTRATION CREATION-- Use the below script to create Tax Registrations for suppliers - if you have defined any tax rule based on Tax Registrations DECLARE X_RETURN_STATUS VARCHAR2(1); BEGIN ZX_REGISTRATIONS_PKG.INSERT_ROW ( P_REQUEST_ID => NULL ,P_ATTRIBUTE1 => NULL ,P_ATTRIBUTE2 => NULL ,P_ATTRIBUTE3 => NULL ,P_ATTRIBUTE4 => NULL ,P_ATTRIBUTE5 => NULL ,P_ATTRIBUTE6 => NULL ,P_VALIDATION_RULE => NULL ,P_ROUNDING_RULE_CODE => 'UP' ,P_TAX_JURISDICTION_CODE => NULL ,P_SELF_ASSESS_FLAG => 'Y' ,P_REGISTRATION_STATUS_CODE => 'REGISTERED' ,P_REGISTRATION_SOURCE_CODE => 'IMPLICIT' ,P_REGISTRATION_REASON_CODE => NULL ,P_TAX => NULL ,P_TAX_REGIME_CODE => 'DAR' ,P_INCLUSIVE_TAX_FLAG => 'N' ,P_EFFECTIVE_FROM => TO_DATE('01- DEC-2007','DD-MON-YYYY') ,P_EFFECTIVE_TO => NULL ,P_REP_PARTY_TAX_NAME => NULL ,P_DEFAULT_REGISTRATION_FLAG => 'N' ,P_BANK_ACCOUNT_NUM => NULL ,P_RECORD_TYPE_CODE => NULL ,P_LEGAL_LOCATION_ID => NULL ,P_TAX_AUTHORITY_ID => NULL ,P_REP_TAX_AUTHORITY_ID => NULL ,P_COLL_TAX_AUTHORITY_ID => NULL ,P_REGISTRATION_TYPE_CODE => NULL ,P_REGISTRATION_NUMBER => NULL ,P_PARTY_TAX_PROFILE_ID => 812988 ,P_LEGAL_REGISTRATION_ID => NULL ,P_BANK_ID => NULL ,P_BANK_BRANCH_ID => NULL ,P_ACCOUNT_SITE_ID => NULL ,P_ATTRIBUTE14 => NULL ,P_ATTRIBUTE15 => NULL ,P_ATTRIBUTE_CATEGORY => NULL ,P_PROGRAM_LOGIN_ID => NULL ,P_ACCOUNT_ID => NULL ,P_TAX_CLASSIFICATION_CODE => NULL ,P_ATTRIBUTE7 => NULL ,P_ATTRIBUTE8 => NULL ,P_ATTRIBUTE9 => NULL ,P_ATTRIBUTE10 => NULL ,P_ATTRIBUTE11 => NULL ,P_ATTRIBUTE12 => NULL ,P_ATTRIBUTE13 => NULL ,X_RETURN_STATUS => X_RETURN_STATUS ); DBMS_OUTPUT.PUT_LINE('RETURN STATUS :' ||X_RETURN_STATUS); COMMIT; END; =========================================================================================================== --EXCLUDE FREIGHT FROM DISCOUNT-- SELECT APS.VENDOR_NAME, APS.EXCLUDE_FREIGHT_FROM_DISCOUNT VEND_EXCD, APSS.VENDOR_SITE_CODE, APSS.EXCLUDE_FREIGHT_FROM_DISCOUNT SITE_EXCD FROM APPS.AP_SUPPLIERS APS, APPS.AP_SUPPLIER_SITES_ALL APSS WHERE APS.VENDOR_ID = APSS.VENDOR_ID AND APS.VENDOR_ID NOT IN (1, 2, 3) AND APSS.EXCLUDE_FREIGHT_FROM_DISCOUNT IS NULL Oracle R12 EBTax SQL Queries for Functional Implementers for Trou... https://sites.google.com/site/oracler12ebtax/oracle-r12-ebtax-sql-querie... 4 of 5 24/07/2012 12:55
  • 5. AND APS.EXCLUDE_FREIGHT_FROM_DISCOUNT IS NULL ============================================================================================================== Sign in | Report Abuse | Print Page | Remove Access | Powered By Google Sites Oracle R12 EBTax SQL Queries for Functional Implementers for Trou... https://sites.google.com/site/oracler12ebtax/oracle-r12-ebtax-sql-querie... 5 of 5 24/07/2012 12:55