|
|
|
In this Document
Applies to:
Oracle Receivables - Version 12.0.1 and later
Abstract This note provides the information regarding various data corruption issues, identification queries and GDF/RCA patches to rectify the data corruption. History
Author: ssohal,armitra
Details Section 1: ZX_LINES_SUMMARY_U1 / ZX_SUMMARY_CONSTRAINT_VIOLATED / A mandatory constraint to generate unique summary tax line is violated Please refer to Note 1152123.1 for complete details. Section 2: Frozen Tax distributions deleted by EB-Tax / AP_FRZN_TAX_DIST_DEL / Frozen Tax distributions tax lines that need to be deleted are found on this invoice Please refer to Note 1152029.1 for complete details. Section 3: For Cross Currency Transactions, tax amount in functional currency is not populated for some tax distributions. This leads to incorrect accounting of the cross currency transactions. Please refer to Note 1396732.1 for complete details. Section 4: Summary Tax Line deleted by EB-Tax / AP_SUM_TAX_LINE_DEL / Summary tax lines that need to be deleted are found on this invoice
DESCRIPTION:
IDENTIFICATION SQL
(2.1) Summary Tax Line gets deleted during tax processing because of mismatch in any summarization criteria column. Sometimes this cannot be predicted from the current state of data (APList). Please apply following code-fix patches and data-fixes.
Please note that some of the above patches are recommended to have the latest version of the source files.
For R12.2.X Please apply Patch:23728207 (2.2) Summary Tax Line gets deleted during tax processing if user does not have the latest code for handling zero amount reference tax line and cancels the zero amount reference tax line. To fix this issue customer has to first apply the data-fix to remove the tax data of the invoice and apply the following code-fix patches:
RECOMMENDED SOLUTION:
For 12.2.X (R12.ZX.C) - Patch:13883460 To get the data-fix for such problemtic invoices, please log a bug against EB-Tax (Product_Id 1087) with latest APList and FND Debug log file. OR if issue persists after applying these code-fix patches and data-fixes then extract the APList, FND Debug Log file of Online Invoice Validation and log a bug against EB-Tax.
(3) Confirm the value of the tax_amt_included_flag is not the same at the ZX_LINES level and temp table zx_detail_tax_lines_gt. You can check the values from the FND.
Section 5: Missing Reversal Tax Distributions for Tax Distributions/ Tax lines for discarded or cancelled Transaction Lines are not marked as canceled causing Invoice to be placed on Hold / Error AP_ERR_TAX_DIST_SYNC during invoice cancellation
IDENTIFICATION SQLs
-- 1.Invoices with tax lines of discarded or cancelled item lines that are not marked as canceled or do not have zero tax amount
SELECT /*+ leading(ai) parallel(ai) index(ail AP_INVOICE_LINES_U1)*/
-- 2.Invoices on Dist Variance or Line Variance hold where tax lines tax amount is not matching with the sum of amounts of their distributions SELECT /*+ leading ah */ DISTINCT ai.invoice_id, ai.invoice_date, ai.org_id FROM ap_invoices_all ai, ap_holds_all ah WHERE NVL(ai.historical_flag,'N') <> 'Y' AND ai.cancelled_date IS NULL AND ai.invoice_id = ah.invoice_id AND ah.hold_lookup_code IN ('DIST VARIANCE','LINE VARIANCE') AND ah.release_lookup_code IS NULL AND EXISTS (SELECT /*+ first_rows(1) leading zl index(zl ZX_LINES_N4) index(zd ZX_REC_NREC_DIST_U2) */ zd.tax_line_id, zl.tax_amt, SUM(zd.rec_nrec_tax_amt) tot_rec_nrec_amt FROM zx_lines zl, zx_rec_nrec_dist zd WHERE zl.application_id = 200 AND zl.trx_id = ai.invoice_id AND zd.tax_line_id = zl.tax_line_id AND zd.application_id = zl.application_id AND zd.entity_code = zl.entity_code AND zd.event_class_code = zl.event_class_code AND zd.trx_id = zl.trx_id GROUP BY zd.tax_line_id, zl.tax_amt HAVING zl.tax_amt <> SUM(zd.rec_nrec_tax_amt)); -- 3.Invoices on Dist Variance or Line Variance hold where amount of tax distrbutions in ZX is not matching with the amount of tax distributions in AP SELECT /*+ leading ah */ DISTINCT ai.invoice_id, ai.invoice_date, ai.org_id FROM ap_invoices_all ai, ap_holds_all ah WHERE NVL(ai.historical_flag,'N') <> 'Y' AND ai.cancelled_date IS NULL AND ai.invoice_id = ah.invoice_id AND ah.hold_lookup_code IN ('DIST VARIANCE','LINE VARIANCE') AND ah.release_lookup_code IS NULL AND (EXISTS (SELECT /*+ first_rows(1) leading aid index(zd ZX_REC_NREC_DIST_U1) */ aid.detail_tax_dist_id, zd.rec_nrec_tax_amt, SUM(aid.amount) ap_rec_nrec_amt FROM ap_invoice_distributions_all aid, zx_rec_nrec_dist zd WHERE aid.invoice_id = ai.invoice_id AND aid.line_type_lookup_code IN ('REC_TAX','NONREC_TAX','TRV','TIPV','TERV') AND aid.detail_tax_dist_id IS NOT NULL AND zd.rec_nrec_tax_dist_id = aid.detail_tax_dist_id GROUP BY aid.detail_tax_dist_id, zd.rec_nrec_tax_amt HAVING zd.rec_nrec_tax_amt <> SUM(aid.amount)) OR EXISTS (SELECT /*+ first_rows(1) leading asad index(zd ZX_REC_NREC_DIST_U1) */ 1 FROM ap_self_assessed_tax_dist_all asad, zx_rec_nrec_dist zd WHERE asad.invoice_id = ai.invoice_id AND asad.line_type_lookup_code IN ('REC_TAX','NONREC_TAX') AND asad.detail_tax_dist_id IS NOT NULL AND zd.rec_nrec_tax_dist_id = asad.detail_tax_dist_id AND zd.rec_nrec_tax_amt <> asad.amount));
Also, it is mandatory to apply RCA Patch 19711877 to avoid this issue to re-occur for future invoices (specifically, Patch 19711877:R12.ZX.A for 12.0.x, Patch 19711877:R12.ZX.B for 12.1.x and Patch 19711877:R12.ZX.C for 12.2.x). This patch is the replacement patch of 16095365 and has the code-fix for both the issues mentioned above. Section 6: AP_UNFROZEN_DIST_EXIST/Unfrozen Tax Distributions exist for this Invoice DESCRIPTION:
IDENTIFICATION SQL
To prevent the issue please apply the following Patch in Pre-Install Mode during next Upgrade Patch:12648752 : RCA : POPULATE CORRECT VALUE OF FRZ_FLG AND ASSOC_CHILD_FRZN_FLG DURING UPGRADE Section 7: Cancel_Flag not stamped on Summary Tax Line
DESCRIPTION:
IDENTIFICATION SQL
Section 8: Issue with the Output of Tax Classification Code LOV
DESCRIPTION:
IDENTIFICATION SQL
Section 9: Account based Tax Rules do not evaluate
DESCRIPTION:
IDENTIFICATION SQL
Section 10: Import fails with error 'ZX_TRX_BIZ_FC_CODE_NOT_EXIST'
DESCRIPTION:
IDENTIFICATION SQL
Section 11: Tax Setup not migrated
DESCRIPTION:
Identification SQL for missing tax status
Data Fix: Log a Service Request to obtain Datafix from support .
3. Pre-Install
Patch:13963357
:RCA: SUPPLIER TYPE RECOVERY RULES ARE NOT EVALUATED AFTER MIGRATING TO R12(For R12.1.X)
Section 12: Tax not calculating after upgrading from 11.5.9 to 12.1.1
DESCRIPTION:
IDENTIFICATION SQL
Section 13: Default Rate Flag Incorrect For Non Recovery Based Rates
DESCRIPTION:
IDENTIFICATION SQL
Section 14: Set Auto_Tax_Calc_Flag at Supplier Site Level for Supplier Type EMPLOYEE
DESCRIPTION:
IDENTIFICATION SQL
This is already approved by Development. So no need to log an SR for this.
UPDATE AP_SUPPLIER_SITES_ALL
Section 15: Tax Tolerance is not upgraded to Configuration Owner Tax Options In R12
DESCRIPTION:
IDENTIFICATION SQL
Update zx_evnt_cls_options set allow_override_flag=’Y’ WHERE application_id = 200AND entity_code = 'AP_INVOICES' AND record_type_code = 'MIGRATED' AND NVL(allow_override_flag,'N') <> 'Y'; Commit;
Ask Customer to apply Preinstall Patch:13019385 to prevent the issue during next upgrade.
Section16: Supplier's Tax Code Description is Different in 11i and R12
DESCRIPTION:
Go to Tax Configuration->Tax Rates
User may not find the Tax Descriptions in Tax related reports as well which in turn may cause Tax Reporting issues In Invoice workbench->Invoice Lines user will not be able to see the Tax Rate description in Tax Classification Code LOV
IDENTIFICATION SQL
Ask Customer to apply Preinstall Patch: 13963357 to prevent the issue during next upgrade. For 12.2: If customer is performing a new upgrade, please request customer to uptake patch 21224981 in pre-install mode For already upgraded environments, please requests customer to create a new SR to obtain script b21224981.sql to fix the issue. NOTE:1594893.1 - Upgrade Fails On Script Zxmigratefc.sql Running Driver 6678700 Section 17: Migrated Tax Lines have NULL Regime-to-Rate information in ZX_LINES
DESCRIPTION:
IDENTIFICATION SQL
RECOMMENDED SOLUTION:
Section 18: Event Class Options Are Not Migrated For Payables
DESCRIPTION:
IDENTIFICATION SQL
Ask Customer to apply Preinstall Patch: 8495719 to prevent the issue during next upgrade
Section 19: Payables Tax Codes are not Migrated
DESCRIPTION:
IDENTIFICATION SQL
SELECT text FROM all_source
For all customers on 12.2 i.e., 12.2.0, 12.2.1, 12.2.2, 12.2.3, 12.2.4, 12.2.5
This patch will be the only additional step for 12.2 customers and no impact for 12.1 customers
.
Ask Customer to apply Preinstall Patch: 13963357 and Patch: 14588757 to prevent the issue during next upgrade
Section 20: Tax Groups are not Migrated
DESCRIPTION:
IDENTIFICATION SQL for Payables Tax Group
SELECT text FROM all_source
Post patch application, run the setup upgrade script
For all customers on 12.2 i.e., 12.2.0, 12.2.1, 12.2.2, 12.2.3, 12.2.4, 12.2.5
This patch will be the only additional step for 12.2 customers and no impact for 12.1 customers
Ask Customer to apply Preinstall Patch: 13963357 and Patch:14789335 to prevent the issue during next upgrade
For R12.ZX.C Please check note 1594893.1
Section 21: Can Not Update Application Tax Options After Upgrading To R12 from 11i
DESCRIPTION:
IDENTIFICATION SQL
update ZX_PRODUCT_OPTIONS_ALL
commit;
Please consider the following on your research:
Section 22: Verifying the Tax Reporting Codes Set up not Upgraded DESCRIPTION: Verify that all the reporting codes are created with the country codes corresponding to the European Union member states in which the suppliers are located whose invoices are to be reported in the Intra EU Audit Trail report along with the member state in which the organization is located.
IDENTIFICATION SQL
The above query should return no records which means that member states corresponding to each organization in European Union that Customer had in 11i instance have been created. Once Verified if there are still some member states missing for which Customer has invoices belong to this supplier location, then customer need to manually create the reporting codes. Ideally Customer should create Reporting Codes corresponding to all the Countries located in the European Union to not face any issue later when any new supplier invoice is created. Steps to Create Reporting Codes manually: Login into the application and follow the below Navigation > Tax Managers Responsibility -> Defaults and Controls -> Tax Reporting Types Search for the Reporting Type 'MEMBER STATE' and click on update icon Click on ‘Add Another Row’ button in the Tax Reporting Codes section Then Enter the Country Code in 'Reporting Code' and 'Description', Date in 'Effective From' Click on Apply and Save. commit; Section 23: Unable to Validate Historical Invoices after R12 Upgrade due to Data mismatch of TIPV amount between AP and ZX Entities DESCRIPTION: Identify invoices where distribution amount in zx_rec_nrec_dist does not match with corresponding migrated tax distribution in ap_invoice_distributions_all. This also identifies invoice where tax amount on summary lines does not match with corresponding migrated tax line in ZX_Lines.
IDENTIFICATION SQL
Data-Fix : Please apply the GDF Patch: 13802001 to resolve the Issue. Section 24: Invoice validation/Tax Calculation fails with error ‘Cannot update AP_INVOICE_LINES_ALL.AMOUNT to NULL’
DESCRIPTION:
IDENTIFICATION SQL
RCA Patch for this issue is Patch:9698016 :R12.AP.A or Patch:9698016 :R12.AP.B Section 25: Associations created for Member State Set up at the party Tax profile level by user sometimes are not populated with Reporting Code unique identifier causing issues with Intra EU Audit trail report DESCRIPTION: Associations created for Member State Set up at the party Tax profile level by user sometimes are not populated with Reporting Code unique identifier causing issues with Intra EU Audit trail report
IDENTIFICATION SQL
Data-Fix : Please apply the following Data Fix.This is already approved by Development. So no need to log an SR for this. UPDATE ZX_REPORT_CODES_ASSOC ASSOC SET REPORTING_CODE_ID = ( SELECT REPORTING_CODE_ID FROM ZX_REPORTING_CODES_B CODES, ZX_REPORTING_TYPES_B type WHERE type.REPORTING_TYPE_CODE = 'MEMBER STATE' AND CODES.REPORTING_TYPE_ID = type.REPORTING_TYPE_ID AND CODES.REPORTING_CODE_CHAR_VALUE = ASSOC.REPORTING_CODE_CHAR_VALUE ) WHERE ASSOC.ENTITY_CODE = 'ZX_PARTY_TAX_PROFILE' AND ASSOC.REPORTING_CODE_ID IS NULL AND ASSOC.REPORTING_CODE_CHAR_VALUE IS NOT NULL AND ASSOC.REPORTING_TYPE_ID IN ( SELECT REPORTING_TYPE_ID FROM ZX_REPORTING_TYPES_B TYPES WHERE TYPES.REPORTING_TYPE_CODE = 'MEMBER STATE' ); commit; Section 26: Associations created for Member State Set up at the party Tax profile level during upgrade are not being visible in the Reporting Code tab under Party tax profile for the Legal Establishment causing issues with Intra EU Audit trail report. DESCRIPTION: Associations created for Member State Set up at the party Tax profile level during upgrade are not being visible in the Reporting Code tab under Party tax profile for the Legal Establishment causing issues with Intra EU Audit trail report.
IDENTIFICATION SQL
Data-Fix : Please apply the following Data Fix.This is already approved by Development. So no need to log an SR for this.
UPDATE ZX_REPORT_CODES_ASSOC ASSOC SET REPORTING_CODE_CHAR_VALUE = ( SELECT REPORTING_CODE_CHAR_VALUE FROM ZX_REPORTING_CODES_B CODE WHERE CODE.REPORTING_TYPE_ID = ASSOC.REPORTING_TYPE_ID AND CODE.REPORTING_CODE_ID = ASSOC.REPORTING_CODE_ID ) WHERE ENTITY_CODE = 'ZX_PARTY_TAX_PROFILE' AND REPORTING_TYPE_ID IN (SELECT REPORTING_TYPE_ID FROM ZX_REPORTING_TYPES_B WHERE REPORTING_TYPE_CODE = 'MEMBER STATE') AND REPORTING_CODE_CHAR_VALUE IS NULL AND REPORTING_CODE_ID IS NOT NULL; Commit;
Ask Customer to apply Preinstall Patch: 14528148 to prevent the issue during next upgrade. Section 27: Migrated Tax Rate cannot be manually entered in Tax Details Window
DESCRIPTION:
IDENTIFICATION SQL
UPDATE ZX.ZX_STATUS_B
commit;
Please Note that 'OFFSET' type Tax cannot be entered manually in Tax Details window. If user is still not able to enter a manual tax line, verify the "Allow Entry of Manual Tax Lines" in TAX / Configuration Owner Tax Option Level
Section 28: User can not choose input tax classification codes in Supplier Site Tax Classifications LOV after updating Application Tax Options in R12
DESCRIPTION:
IDENTIFICATION SQL
Data-Fix : Please apply the following Data Fix.This is already approved by Development. So no need to log an SR for this.
UPDATE ZX.ZX_PRODUCT_OPTIONS_ALL
Please follow the below action plan before you update the "Application Tax Options" next time.
If the following file version of is less than mentioned apply
patch: 16845689:R12.ZX.B
Section 29: Effective Dates of Jurisdictions are not in sync with Rates after Setup Migration DESCRIPTION: Identify Effective Dates which are not in sync between Jurisdictions, Regime to Rate and Subscriptions
IDENTIFICATION SQL
select RATES.TAX_RATE_CODE, RATES.CONTENT_OWNER_ID, RATES.ACTIVE_FLAG,
Data-Fix : Please apply the GDF Patch: 16932979 to resolve the Issue.
Section 30: Set Auto_Tax_Calc_Flag at Supplier Site Level for Non Employee type Supplier
DESCRIPTION:
IDENTIFICATION SQL
Update Calculate Tax as "Yes" in Supplier Site.
Steps to enable tax calculation for Supplier Site
Section 31: DEFAULT_FLG_EFF_TO AND EFF_TO VALUES IN ZX_RATES_B TABLE HAVING INCORRECT VALUES
DESCRIPTION:
1)
Identification SQLs for incorrect values in default_flg_effective_to and effective_to in zx_rates_b
Data Fix: Data-Fix : Please apply the GDF Patch: 20551027 to resolve the Issue
Section 32: OFFSET_TAX_RATE_CODE is wrongly populated in ZX_Lines DESCRIPTION:
ZX_LINES.OFFSET_TAX_RATE_CODE was getting populated on upgraded tax lines even when supplier site had offset tax calculation disabled causing issues in EMEA
1) While Validating the Upgraded PO matched Invoice through Actions Button we get the following error: Unexpected error during Invoice validation. Contact your System Administrator. Error as per the log: "-1: ORA-00001: unique constraint (ZX.ZX_DETAIL_TAX_LINES_GT_U1) " 2) ECE Payables VAT Register shows Functional Amount as Taxable amount.For migrated invoices in JG_ZZ_VAT_TRX_DETAILS no offset line is present whereas offset_tax_rate_code is present.Because of which the report output is coming incorrect. 3) An extra Offset tax line has been added to some of migrated invoices after migration, even though these invoices were fully validated and accounted before migration from 11i to R12. The line is of an offset tax rate that is not used after migration
IDENTIFICATION SQL
SELECT DISTINCT APPLICATION_ID,LEGAL_ENTITY_ID,SET_OF_BOOKS_ID,INVOICE_DATE,INVOICE_ID
Data-Fix :
Please apply the GDF Patch: 19170382 to resolve the Issue.
Section 33: a.Customer is missing seeded tax classification codes in UI OR b. Customer is able to find some duplicate tax classification codes in UI
IDENTIFICATION SQL
Data-Fix : Please apply the following Development Approved Datafix for the Issue.
UPDATE zx_rates_b_tmp
Section 34: The HQ Establishment Registration Number populated with NULL or incorrect value on Tax Lines
IDENTIFICATION SQL
RECOMMENDED SOLUTION: Data-Fix : Please apply GDF Patch 27857755 to resolve the issue Section 35: Invoice validation/Tax Calculation fails with error for wrong rounding rule code
DESCRIPTION:
IDENTIFICATION SQL
RCA Patch for this issue is Patch 18948930 Section 36: The VAT REGISTRATION NUMBER is Null for the following Customers and Customer Sites
DESCRIPTION:
Identification Query For Customer:
Section 37: The tax information(Tax Link ID) populated with NULL values on Receipt Application Distributions
DESCRIPTION:
Identification Query:
Section 38: The tax information(Tax Link ID) populated with NULL values on Adjustment Distributions
DESCRIPTION:
Identification Query:
Section 39: The tax information (Tax Reference IDS) populated with NULL on Accounting Tax Distributions for Payable Invoices
DESCRIPTION:
Identification Query:
Section 40: The Accounting Tax Distributions not created for Payable Invoices
DESCRIPTION:
Identification Query:
Section 41: The tax information (Tax Reference IDS) populated with NULL on Accounting Tax Distributions for Receivable Invoices
DESCRIPTION:
Identification Query:
Section 42: The Accounting Tax Distributions not created for Receivable Invoices
DESCRIPTION:
Identification Query:
Section 43: The Receivable Invoices with COMPLETED status are appearing with INCOMPLETE status on Tax tables
DESCRIPTION:
Identification Query:
Section 44: The Third Party Account and Account Site information on Tax Data not matching with Receivable Invoices
DESCRIPTION:
Identification Query:
Section 45: Tax status effective_from is later than that of the rates
DESCRIPTION:
IDENTIFICATION SQL
Section 46: City Tax will not getting calculated and instead gets calculated for Outside City Limits customers also after upgrade from 11i
DESCRIPTION:
IDENTIFICATION SQL
Section 47: Incase tax is created through Latin Tax Engine,tax calculation for Intercompany invoice failing with error 'Tax rate code is not defined in Payables'
DESCRIPTION:
IDENTIFICATION SQL
Section 48 : Tax Calculation issues on Sales Order Pattern 1 : User is not allowed to update the USP of the Sales order line, after the order line was ever mass updated with line(s) from other order(/s) DESCRIPTION: User is not allowed to update the USP of the Sales order line, after the order line was ever mass updated with line(s) from other order(/s). Tax Debug Log file shows the following messages.
"Error: A mandatory constraint to generate unique record in ZX_LINES_DET_FACTORS is violated with error code ORA-00001. Please generate FND Debug Log and APList of the invoice and log a Service Request Error: An unexpected error has occurred. Please contact your system administrator. Pattern 2 : Tax engine used is Latin Tax Engine and the tax is not calculated. DESCRIPTION : Tax is not calculated when any Order line is added or Sales Order is updated but if User goes and Copies this Sales Order, the tax is correctly calculated without any issues. Tax Debug Log file shows the following messages.
Transaction Condition Class => Condition Name: TRANSACTION_REASON and Value: COMERCIALIZACAO for Tax Category: ICMS_C does not match with values of Class Code: SALES_TRANSACTION/COMERCIALIZACAO APP-JL-62589: There are no applicable tax categories for the tax group. Please set up Tax Category details for ICMS_C from SALES_TRANSACTION/COMERCIALIZACAO Transaction Condition Class, to match the Tax Group details for the PIS COFINS ICMS IPI Tax Category. Exception while expanding Latin Tax Group -20001: ORA-20001: APP-JL-62589: There are no applicable tax categories for the tax group. Please set up Tax Category details for ICMS_C from SALES_TRANSACTION/COMERCIALIZACAO Transaction Condition Class, to match the Tax Group details for the PIS COFINS ICMS IPI Tax Category. ZX_API_PUB: ADD_MSG()+ ZX_API_PUB: ADD_MSG()- ZX_PRODUCT_INTEGRATION_PKG.calculate_tax_lte(-) Errored out when calculate tax. ZX_PRODUCT_INTEGRATION_PKG: calculate_tax (-) LTE calculate tax returned errors. Return_Status = E
IDENTIFICATION SQL
RECOMMENDED SOLUTION:
Section 49: Unable to validate invoice due to any of the following errors from log
DESCRIPTION:
Identification Query:-
SELECT application_id,entity_code,
RECOMMENDED SOLUTION:
Section 50: Create Accounting Ending in Error
Identification Query
SELECT ai.invoice_num,ai.org_id,
RECOMMENDED SOLUTION:
Section 51: Disabling Intended Use classifications
Identification Query
SELECT count(*)
RECOMMENDED SOLUTION: Data-Fix : Log a Service Request with EBTax Team to obtain Datafix from support.
Section 52: The date range of associations is out of sync with the parent entities
DESCRIPTION:
Identification Query
SELECT 'RATE' as entity, count(*) AS no_records
RECOMMENDED SOLUTION:
RCA fix: Customers on 12.1.x must uptake patch 16924194
Data Fix: If the above query returns > 0 then log a Service Request with EBTax Team to obtain Datafix from support.
Section 53: Through UI, customer views multiple rates for the same tax rate code DESCRIPTION: Customer is able to see duplicate rates in tax classification LOV's where as multiple rates are not defined in the system Identification Query
SELECT count(*)
RECOMMENDED SOLUTION:
RCA fix: Customers must make sure that they enter tax rate name and description consistently
Data Fix: If the above query returns > 0 then log a Service Request with EBTax Team to obtain Datafix from support.
Summary
References
NOTE:1299331.1
- R12: Invoice Validation Error: Summary Tax Line deleted by EB-Tax
|
|
|
未找到您要查找的产品?
|
|
|
- b17328044 (5.48 KB)
- b23130463 (9.27 KB)
- zx_mig_missing_setup.sql (8.42 KB)
|
|
|
In this Document
Applies to:
Oracle Receivables - Version 12.0.1 and later
Abstract This note provides the information regarding various data corruption issues, identification queries and GDF/RCA patches to rectify the data corruption. History
Author: ssohal,armitra
Details Section 1: ZX_LINES_SUMMARY_U1 / ZX_SUMMARY_CONSTRAINT_VIOLATED / A mandatory constraint to generate unique summary tax line is violated Please refer to Note 1152123.1 for complete details. Section 2: Frozen Tax distributions deleted by EB-Tax / AP_FRZN_TAX_DIST_DEL / Frozen Tax distributions tax lines that need to be deleted are found on this invoice Please refer to Note 1152029.1 for complete details. Section 3: For Cross Currency Transactions, tax amount in functional currency is not populated for some tax distributions. This leads to incorrect accounting of the cross currency transactions. Please refer to Note 1396732.1 for complete details. Section 4: Summary Tax Line deleted by EB-Tax / AP_SUM_TAX_LINE_DEL / Summary tax lines that need to be deleted are found on this invoice
DESCRIPTION:
IDENTIFICATION SQL
(2.1) Summary Tax Line gets deleted during tax processing because of mismatch in any summarization criteria column. Sometimes this cannot be predicted from the current state of data (APList). Please apply following code-fix patches and data-fixes.
Please note that some of the above patches are recommended to have the latest version of the source files.
For R12.2.X Please apply Patch:23728207 (2.2) Summary Tax Line gets deleted during tax processing if user does not have the latest code for handling zero amount reference tax line and cancels the zero amount reference tax line. To fix this issue customer has to first apply the data-fix to remove the tax data of the invoice and apply the following code-fix patches:
RECOMMENDED SOLUTION:
For 12.2.X (R12.ZX.C) - Patch:13883460 To get the data-fix for such problemtic invoices, please log a bug against EB-Tax (Product_Id 1087) with latest APList and FND Debug log file. OR if issue persists after applying these code-fix patches and data-fixes then extract the APList, FND Debug Log file of Online Invoice Validation and log a bug against EB-Tax.
(3) Confirm the value of the tax_amt_included_flag is not the same at the ZX_LINES level and temp table zx_detail_tax_lines_gt. You can check the values from the FND.
Section 5: Missing Reversal Tax Distributions for Tax Distributions/ Tax lines for discarded or cancelled Transaction Lines are not marked as canceled causing Invoice to be placed on Hold / Error AP_ERR_TAX_DIST_SYNC during invoice cancellation
IDENTIFICATION SQLs
-- 1.Invoices with tax lines of discarded or cancelled item lines that are not marked as canceled or do not have zero tax amount
SELECT /*+ leading(ai) parallel(ai) index(ail AP_INVOICE_LINES_U1)*/
-- 2.Invoices on Dist Variance or Line Variance hold where tax lines tax amount is not matching with the sum of amounts of their distributions SELECT /*+ leading ah */ DISTINCT ai.invoice_id, ai.invoice_date, ai.org_id FROM ap_invoices_all ai, ap_holds_all ah WHERE NVL(ai.historical_flag,'N') <> 'Y' AND ai.cancelled_date IS NULL AND ai.invoice_id = ah.invoice_id AND ah.hold_lookup_code IN ('DIST VARIANCE','LINE VARIANCE') AND ah.release_lookup_code IS NULL AND EXISTS (SELECT /*+ first_rows(1) leading zl index(zl ZX_LINES_N4) index(zd ZX_REC_NREC_DIST_U2) */ zd.tax_line_id, zl.tax_amt, SUM(zd.rec_nrec_tax_amt) tot_rec_nrec_amt FROM zx_lines zl, zx_rec_nrec_dist zd WHERE zl.application_id = 200 AND zl.trx_id = ai.invoice_id AND zd.tax_line_id = zl.tax_line_id AND zd.application_id = zl.application_id AND zd.entity_code = zl.entity_code AND zd.event_class_code = zl.event_class_code AND zd.trx_id = zl.trx_id GROUP BY zd.tax_line_id, zl.tax_amt HAVING zl.tax_amt <> SUM(zd.rec_nrec_tax_amt)); -- 3.Invoices on Dist Variance or Line Variance hold where amount of tax distrbutions in ZX is not matching with the amount of tax distributions in AP SELECT /*+ leading ah */ DISTINCT ai.invoice_id, ai.invoice_date, ai.org_id FROM ap_invoices_all ai, ap_holds_all ah WHERE NVL(ai.historical_flag,'N') <> 'Y' AND ai.cancelled_date IS NULL AND ai.invoice_id = ah.invoice_id AND ah.hold_lookup_code IN ('DIST VARIANCE','LINE VARIANCE') AND ah.release_lookup_code IS NULL AND (EXISTS (SELECT /*+ first_rows(1) leading aid index(zd ZX_REC_NREC_DIST_U1) */ aid.detail_tax_dist_id, zd.rec_nrec_tax_amt, SUM(aid.amount) ap_rec_nrec_amt FROM ap_invoice_distributions_all aid, zx_rec_nrec_dist zd WHERE aid.invoice_id = ai.invoice_id AND aid.line_type_lookup_code IN ('REC_TAX','NONREC_TAX','TRV','TIPV','TERV') AND aid.detail_tax_dist_id IS NOT NULL AND zd.rec_nrec_tax_dist_id = aid.detail_tax_dist_id GROUP BY aid.detail_tax_dist_id, zd.rec_nrec_tax_amt HAVING zd.rec_nrec_tax_amt <> SUM(aid.amount)) OR EXISTS (SELECT /*+ first_rows(1) leading asad index(zd ZX_REC_NREC_DIST_U1) */ 1 FROM ap_self_assessed_tax_dist_all asad, zx_rec_nrec_dist zd WHERE asad.invoice_id = ai.invoice_id AND asad.line_type_lookup_code IN ('REC_TAX','NONREC_TAX') AND asad.detail_tax_dist_id IS NOT NULL AND zd.rec_nrec_tax_dist_id = asad.detail_tax_dist_id AND zd.rec_nrec_tax_amt <> asad.amount));
Also, it is mandatory to apply RCA Patch 19711877 to avoid this issue to re-occur for future invoices (specifically, Patch 19711877:R12.ZX.A for 12.0.x, Patch 19711877:R12.ZX.B for 12.1.x and Patch 19711877:R12.ZX.C for 12.2.x). This patch is the replacement patch of 16095365 and has the code-fix for both the issues mentioned above. Section 6: AP_UNFROZEN_DIST_EXIST/Unfrozen Tax Distributions exist for this Invoice DESCRIPTION:
IDENTIFICATION SQL
To prevent the issue please apply the following Patch in Pre-Install Mode during next Upgrade Patch:12648752 : RCA : POPULATE CORRECT VALUE OF FRZ_FLG AND ASSOC_CHILD_FRZN_FLG DURING UPGRADE Section 7: Cancel_Flag not stamped on Summary Tax Line
DESCRIPTION:
IDENTIFICATION SQL
Section 8: Issue with the Output of Tax Classification Code LOV
DESCRIPTION:
IDENTIFICATION SQL
Section 9: Account based Tax Rules do not evaluate
DESCRIPTION:
IDENTIFICATION SQL
Section 10: Import fails with error 'ZX_TRX_BIZ_FC_CODE_NOT_EXIST'
DESCRIPTION:
IDENTIFICATION SQL
Section 11: Tax Setup not migrated
DESCRIPTION:
Identification SQL for missing tax status
Data Fix: Log a Service Request to obtain Datafix from support .
3. Pre-Install
Patch:13963357
:RCA: SUPPLIER TYPE RECOVERY RULES ARE NOT EVALUATED AFTER MIGRATING TO R12(For R12.1.X)
Section 12: Tax not calculating after upgrading from 11.5.9 to 12.1.1
DESCRIPTION:
IDENTIFICATION SQL
Section 13: Default Rate Flag Incorrect For Non Recovery Based Rates
DESCRIPTION:
IDENTIFICATION SQL
Section 14: Set Auto_Tax_Calc_Flag at Supplier Site Level for Supplier Type EMPLOYEE
DESCRIPTION:
IDENTIFICATION SQL
This is already approved by Development. So no need to log an SR for this.
UPDATE AP_SUPPLIER_SITES_ALL
Section 15: Tax Tolerance is not upgraded to Configuration Owner Tax Options In R12
DESCRIPTION:
IDENTIFICATION SQL
Update zx_evnt_cls_options set allow_override_flag=’Y’ WHERE application_id = 200AND entity_code = 'AP_INVOICES' AND record_type_code = 'MIGRATED' AND NVL(allow_override_flag,'N') <> 'Y'; Commit;
Ask Customer to apply Preinstall Patch:13019385 to prevent the issue during next upgrade.
Section16: Supplier's Tax Code Description is Different in 11i and R12
DESCRIPTION:
Go to Tax Configuration->Tax Rates
User may not find the Tax Descriptions in Tax related reports as well which in turn may cause Tax Reporting issues In Invoice workbench->Invoice Lines user will not be able to see the Tax Rate description in Tax Classification Code LOV
IDENTIFICATION SQL
Ask Customer to apply Preinstall Patch: 13963357 to prevent the issue during next upgrade. For 12.2: If customer is performing a new upgrade, please request customer to uptake patch 21224981 in pre-install mode For already upgraded environments, please requests customer to create a new SR to obtain script b21224981.sql to fix the issue. NOTE:1594893.1 - Upgrade Fails On Script Zxmigratefc.sql Running Driver 6678700 Section 17: Migrated Tax Lines have NULL Regime-to-Rate information in ZX_LINES
DESCRIPTION:
IDENTIFICATION SQL
RECOMMENDED SOLUTION:
Section 18: Event Class Options Are Not Migrated For Payables
DESCRIPTION:
IDENTIFICATION SQL
Ask Customer to apply Preinstall Patch: 8495719 to prevent the issue during next upgrade
Section 19: Payables Tax Codes are not Migrated
DESCRIPTION:
IDENTIFICATION SQL
SELECT text FROM all_source
For all customers on 12.2 i.e., 12.2.0, 12.2.1, 12.2.2, 12.2.3, 12.2.4, 12.2.5
This patch will be the only additional step for 12.2 customers and no impact for 12.1 customers
.
Ask Customer to apply Preinstall Patch: 13963357 and Patch: 14588757 to prevent the issue during next upgrade
Section 20: Tax Groups are not Migrated
DESCRIPTION:
IDENTIFICATION SQL for Payables Tax Group
SELECT text FROM all_source
Post patch application, run the setup upgrade script
For all customers on 12.2 i.e., 12.2.0, 12.2.1, 12.2.2, 12.2.3, 12.2.4, 12.2.5
This patch will be the only additional step for 12.2 customers and no impact for 12.1 customers
Ask Customer to apply Preinstall Patch: 13963357 and Patch:14789335 to prevent the issue during next upgrade
For R12.ZX.C Please check note 1594893.1
Section 21: Can Not Update Application Tax Options After Upgrading To R12 from 11i
DESCRIPTION:
IDENTIFICATION SQL
update ZX_PRODUCT_OPTIONS_ALL
commit;
Please consider the following on your research:
Section 22: Verifying the Tax Reporting Codes Set up not Upgraded DESCRIPTION: Verify that all the reporting codes are created with the country codes corresponding to the European Union member states in which the suppliers are located whose invoices are to be reported in the Intra EU Audit Trail report along with the member state in which the organization is located.
IDENTIFICATION SQL
The above query should return no records which means that member states corresponding to each organization in European Union that Customer had in 11i instance have been created. Once Verified if there are still some member states missing for which Customer has invoices belong to this supplier location, then customer need to manually create the reporting codes. Ideally Customer should create Reporting Codes corresponding to all the Countries located in the European Union to not face any issue later when any new supplier invoice is created. Steps to Create Reporting Codes manually: Login into the application and follow the below Navigation > Tax Managers Responsibility -> Defaults and Controls -> Tax Reporting Types Search for the Reporting Type 'MEMBER STATE' and click on update icon Click on ‘Add Another Row’ button in the Tax Reporting Codes section Then Enter the Country Code in 'Reporting Code' and 'Description', Date in 'Effective From' Click on Apply and Save. commit; Section 23: Unable to Validate Historical Invoices after R12 Upgrade due to Data mismatch of TIPV amount between AP and ZX Entities DESCRIPTION: Identify invoices where distribution amount in zx_rec_nrec_dist does not match with corresponding migrated tax distribution in ap_invoice_distributions_all. This also identifies invoice where tax amount on summary lines does not match with corresponding migrated tax line in ZX_Lines.
IDENTIFICATION SQL
Data-Fix : Please apply the GDF Patch: 13802001 to resolve the Issue. Section 24: Invoice validation/Tax Calculation fails with error ‘Cannot update AP_INVOICE_LINES_ALL.AMOUNT to NULL’
DESCRIPTION:
IDENTIFICATION SQL
RCA Patch for this issue is Patch:9698016 :R12.AP.A or Patch:9698016 :R12.AP.B Section 25: Associations created for Member State Set up at the party Tax profile level by user sometimes are not populated with Reporting Code unique identifier causing issues with Intra EU Audit trail report DESCRIPTION: Associations created for Member State Set up at the party Tax profile level by user sometimes are not populated with Reporting Code unique identifier causing issues with Intra EU Audit trail report
IDENTIFICATION SQL
Data-Fix : Please apply the following Data Fix.This is already approved by Development. So no need to log an SR for this. UPDATE ZX_REPORT_CODES_ASSOC ASSOC SET REPORTING_CODE_ID = ( SELECT REPORTING_CODE_ID FROM ZX_REPORTING_CODES_B CODES, ZX_REPORTING_TYPES_B type WHERE type.REPORTING_TYPE_CODE = 'MEMBER STATE' AND CODES.REPORTING_TYPE_ID = type.REPORTING_TYPE_ID AND CODES.REPORTING_CODE_CHAR_VALUE = ASSOC.REPORTING_CODE_CHAR_VALUE ) WHERE ASSOC.ENTITY_CODE = 'ZX_PARTY_TAX_PROFILE' AND ASSOC.REPORTING_CODE_ID IS NULL AND ASSOC.REPORTING_CODE_CHAR_VALUE IS NOT NULL AND ASSOC.REPORTING_TYPE_ID IN ( SELECT REPORTING_TYPE_ID FROM ZX_REPORTING_TYPES_B TYPES WHERE TYPES.REPORTING_TYPE_CODE = 'MEMBER STATE' ); commit; Section 26: Associations created for Member State Set up at the party Tax profile level during upgrade are not being visible in the Reporting Code tab under Party tax profile for the Legal Establishment causing issues with Intra EU Audit trail report. DESCRIPTION: Associations created for Member State Set up at the party Tax profile level during upgrade are not being visible in the Reporting Code tab under Party tax profile for the Legal Establishment causing issues with Intra EU Audit trail report.
IDENTIFICATION SQL
Data-Fix : Please apply the following Data Fix.This is already approved by Development. So no need to log an SR for this.
UPDATE ZX_REPORT_CODES_ASSOC ASSOC SET REPORTING_CODE_CHAR_VALUE = ( SELECT REPORTING_CODE_CHAR_VALUE FROM ZX_REPORTING_CODES_B CODE WHERE CODE.REPORTING_TYPE_ID = ASSOC.REPORTING_TYPE_ID AND CODE.REPORTING_CODE_ID = ASSOC.REPORTING_CODE_ID ) WHERE ENTITY_CODE = 'ZX_PARTY_TAX_PROFILE' AND REPORTING_TYPE_ID IN (SELECT REPORTING_TYPE_ID FROM ZX_REPORTING_TYPES_B WHERE REPORTING_TYPE_CODE = 'MEMBER STATE') AND REPORTING_CODE_CHAR_VALUE IS NULL AND REPORTING_CODE_ID IS NOT NULL; Commit;
Ask Customer to apply Preinstall Patch: 14528148 to prevent the issue during next upgrade. Section 27: Migrated Tax Rate cannot be manually entered in Tax Details Window
DESCRIPTION:
IDENTIFICATION SQL
UPDATE ZX.ZX_STATUS_B
commit;
Please Note that 'OFFSET' type Tax cannot be entered manually in Tax Details window. If user is still not able to enter a manual tax line, verify the "Allow Entry of Manual Tax Lines" in TAX / Configuration Owner Tax Option Level
Section 28: User can not choose input tax classification codes in Supplier Site Tax Classifications LOV after updating Application Tax Options in R12
DESCRIPTION:
IDENTIFICATION SQL
Data-Fix : Please apply the following Data Fix.This is already approved by Development. So no need to log an SR for this.
UPDATE ZX.ZX_PRODUCT_OPTIONS_ALL
Please follow the below action plan before you update the "Application Tax Options" next time.
If the following file version of is less than mentioned apply
patch: 16845689:R12.ZX.B
Section 29: Effective Dates of Jurisdictions are not in sync with Rates after Setup Migration DESCRIPTION: Identify Effective Dates which are not in sync between Jurisdictions, Regime to Rate and Subscriptions
IDENTIFICATION SQL
select RATES.TAX_RATE_CODE, RATES.CONTENT_OWNER_ID, RATES.ACTIVE_FLAG,
Data-Fix : Please apply the GDF Patch: 16932979 to resolve the Issue.
Section 30: Set Auto_Tax_Calc_Flag at Supplier Site Level for Non Employee type Supplier
DESCRIPTION:
IDENTIFICATION SQL
Update Calculate Tax as "Yes" in Supplier Site.
Steps to enable tax calculation for Supplier Site
Section 31: DEFAULT_FLG_EFF_TO AND EFF_TO VALUES IN ZX_RATES_B TABLE HAVING INCORRECT VALUES
DESCRIPTION:
1)
Identification SQLs for incorrect values in default_flg_effective_to and effective_to in zx_rates_b
Data Fix: Data-Fix : Please apply the GDF Patch: 20551027 to resolve the Issue
Section 32: OFFSET_TAX_RATE_CODE is wrongly populated in ZX_Lines DESCRIPTION:
ZX_LINES.OFFSET_TAX_RATE_CODE was getting populated on upgraded tax lines even when supplier site had offset tax calculation disabled causing issues in EMEA
1) While Validating the Upgraded PO matched Invoice through Actions Button we get the following error: Unexpected error during Invoice validation. Contact your System Administrator. Error as per the log: "-1: ORA-00001: unique constraint (ZX.ZX_DETAIL_TAX_LINES_GT_U1) " 2) ECE Payables VAT Register shows Functional Amount as Taxable amount.For migrated invoices in JG_ZZ_VAT_TRX_DETAILS no offset line is present whereas offset_tax_rate_code is present.Because of which the report output is coming incorrect. 3) An extra Offset tax line has been added to some of migrated invoices after migration, even though these invoices were fully validated and accounted before migration from 11i to R12. The line is of an offset tax rate that is not used after migration
IDENTIFICATION SQL
SELECT DISTINCT APPLICATION_ID,LEGAL_ENTITY_ID,SET_OF_BOOKS_ID,INVOICE_DATE,INVOICE_ID
Data-Fix :
Please apply the GDF Patch: 19170382 to resolve the Issue.
Section 33: a.Customer is missing seeded tax classification codes in UI OR b. Customer is able to find some duplicate tax classification codes in UI
IDENTIFICATION SQL
Data-Fix : Please apply the following Development Approved Datafix for the Issue.
UPDATE zx_rates_b_tmp
Section 34: The HQ Establishment Registration Number populated with NULL or incorrect value on Tax Lines
IDENTIFICATION SQL
RECOMMENDED SOLUTION: Data-Fix : Please apply GDF Patch 27857755 to resolve the issue Section 35: Invoice validation/Tax Calculation fails with error for wrong rounding rule code
DESCRIPTION:
IDENTIFICATION SQL
RCA Patch for this issue is Patch 18948930 Section 36: The VAT REGISTRATION NUMBER is Null for the following Customers and Customer Sites
DESCRIPTION:
Identification Query For Customer:
Section 37: The tax information(Tax Link ID) populated with NULL values on Receipt Application Distributions
DESCRIPTION:
Identification Query:
Section 38: The tax information(Tax Link ID) populated with NULL values on Adjustment Distributions
DESCRIPTION:
Identification Query:
Section 39: The tax information (Tax Reference IDS) populated with NULL on Accounting Tax Distributions for Payable Invoices
DESCRIPTION:
Identification Query:
Section 40: The Accounting Tax Distributions not created for Payable Invoices
DESCRIPTION:
Identification Query:
Section 41: The tax information (Tax Reference IDS) populated with NULL on Accounting Tax Distributions for Receivable Invoices
DESCRIPTION:
Identification Query:
Section 42: The Accounting Tax Distributions not created for Receivable Invoices
DESCRIPTION:
Identification Query:
Section 43: The Receivable Invoices with COMPLETED status are appearing with INCOMPLETE status on Tax tables
DESCRIPTION:
Identification Query:
Section 44: The Third Party Account and Account Site information on Tax Data not matching with Receivable Invoices
DESCRIPTION:
Identification Query:
Section 45: Tax status effective_from is later than that of the rates
DESCRIPTION:
IDENTIFICATION SQL
Section 46: City Tax will not getting calculated and instead gets calculated for Outside City Limits customers also after upgrade from 11i
DESCRIPTION:
IDENTIFICATION SQL
Section 47: Incase tax is created through Latin Tax Engine,tax calculation for Intercompany invoice failing with error 'Tax rate code is not defined in Payables'
DESCRIPTION:
IDENTIFICATION SQL
Section 48 : Tax Calculation issues on Sales Order Pattern 1 : User is not allowed to update the USP of the Sales order line, after the order line was ever mass updated with line(s) from other order(/s) DESCRIPTION: User is not allowed to update the USP of the Sales order line, after the order line was ever mass updated with line(s) from other order(/s). Tax Debug Log file shows the following messages.
"Error: A mandatory constraint to generate unique record in ZX_LINES_DET_FACTORS is violated with error code ORA-00001. Please generate FND Debug Log and APList of the invoice and log a Service Request Error: An unexpected error has occurred. Please contact your system administrator. Pattern 2 : Tax engine used is Latin Tax Engine and the tax is not calculated. DESCRIPTION : Tax is not calculated when any Order line is added or Sales Order is updated but if User goes and Copies this Sales Order, the tax is correctly calculated without any issues. Tax Debug Log file shows the following messages.
Transaction Condition Class => Condition Name: TRANSACTION_REASON and Value: COMERCIALIZACAO for Tax Category: ICMS_C does not match with values of Class Code: SALES_TRANSACTION/COMERCIALIZACAO APP-JL-62589: There are no applicable tax categories for the tax group. Please set up Tax Category details for ICMS_C from SALES_TRANSACTION/COMERCIALIZACAO Transaction Condition Class, to match the Tax Group details for the PIS COFINS ICMS IPI Tax Category. Exception while expanding Latin Tax Group -20001: ORA-20001: APP-JL-62589: There are no applicable tax categories for the tax group. Please set up Tax Category details for ICMS_C from SALES_TRANSACTION/COMERCIALIZACAO Transaction Condition Class, to match the Tax Group details for the PIS COFINS ICMS IPI Tax Category. ZX_API_PUB: ADD_MSG()+ ZX_API_PUB: ADD_MSG()- ZX_PRODUCT_INTEGRATION_PKG.calculate_tax_lte(-) Errored out when calculate tax. ZX_PRODUCT_INTEGRATION_PKG: calculate_tax (-) LTE calculate tax returned errors. Return_Status = E
IDENTIFICATION SQL
RECOMMENDED SOLUTION:
Section 49: Unable to validate invoice due to any of the following errors from log
DESCRIPTION:
Identification Query:-
SELECT application_id,entity_code,
RECOMMENDED SOLUTION:
Section 50: Create Accounting Ending in Error
Identification Query
SELECT ai.invoice_num,ai.org_id,
RECOMMENDED SOLUTION:
Section 51: Disabling Intended Use classifications
Identification Query
SELECT count(*)
RECOMMENDED SOLUTION: Data-Fix : Log a Service Request with EBTax Team to obtain Datafix from support.
Section 52: The date range of associations is out of sync with the parent entities
DESCRIPTION:
Identification Query
SELECT 'RATE' as entity, count(*) AS no_records
RECOMMENDED SOLUTION:
RCA fix: Customers on 12.1.x must uptake patch 16924194
Data Fix: If the above query returns > 0 then log a Service Request with EBTax Team to obtain Datafix from support.
Section 53: Through UI, customer views multiple rates for the same tax rate code DESCRIPTION: Customer is able to see duplicate rates in tax classification LOV's where as multiple rates are not defined in the system Identification Query
SELECT count(*)
RECOMMENDED SOLUTION:
RCA fix: Customers must make sure that they enter tax rate name and description consistently
Data Fix: If the above query returns > 0 then log a Service Request with EBTax Team to obtain Datafix from support.
Summary
References
NOTE:1299331.1
- R12: Invoice Validation Error: Summary Tax Line deleted by EB-Tax
|
|
|
未找到您要查找的产品?
|
|
|
- b17328044 (5.48 KB)
- b23130463 (9.27 KB)
- zx_mig_missing_setup.sql (8.42 KB)