本文適用於 Microsoft 動態航行點的印度的語言地區設定 (中)。
狀況
在印度版本的 Microsoft 動態航行點 2009 Service Pack 1 (SP1) 中,顯示"稅 %"值則是不正確的銷售訂單產品線在和中已張貼的業務發票行項目。您預期的稅款詳細資訊的安裝程式中的稅低於最小值與一致的 「 稅 %」 值。購買文件也會發生相同的問題。
解決方案
Hotfix 資訊
已經可以從 Microsoft 取得支援的 hotfix。不過,它只被用來修正本文所述的問題。它只適用於發生此特定問題的系統上。此 hotfix 可能會接受其他測試。因此,如果此問題不會嚴重影響,我們建議您等候下一步的 Microsoft 動態航行點 2009 service pack 或包含此 hotfix 的下一個 Microsoft 動態航行點版本。注意 在特殊的情況下,通常會支援呼叫可能已被取消如果技術支援專業人員的 Microsoft 動態及相關的產品所產生的費用會決定某特定更新程式可以解決您的問題。收取支援費用會套用,如果有其他支援問題是,不能限定的特定更新程式。
安裝資訊
Microsoft 會提供程式設計範例僅供說明,而不做任何明示或默示的保證。這包括,但不限於適售性或適合某特定用途之默示擔保責任。本文假設您已相當熟悉使用的我們所示範的程式設計語言以及建立和偵錯程序所使用的工具。Microsoft 技術支援工程師可以協助解釋特定程序中,功能,但它們不會修改這些範例以提供附加功能或建構程序來滿足您特定需求。注意套用此 hotfix 之前,請確認所有的 Microsoft Navision 用戶端使用者會登出系統。這包括 Microsoft Navision 應用程式服務 (NAS) 用戶端的使用者。您應該是唯一的用戶端使用者已登入,當您實作此 hotfix。若要實作此 hotfix,您必須有開發人員授權。我們建議您在 Windows 登入] 視窗中的色彩,或資料庫登入] 視窗中的使用者帳戶被指派 「 進階 」 的角色識別碼。如果使用者帳戶不能指派為 「 超級 」 的角色識別碼,您必須確認使用者帳戶具有下列權限︰
-
您將會變更物件的 [修改] 權限。
-
執行權限的系統物件 ID 5210物件和系統物件 ID 9015物件。
注意您沒有擁有資料存放區的權限,除非您需要執行資料修復。
程式碼變更
注意永遠測試程式碼修正在受控制的環境中才能套用到實際執行電腦的修正程式。若要解決這個問題,請依照下列步驟執行:
-
變更銷售列表 (37) 中的量包括稅中OnValidate觸發程序中的程式碼如下所示︰現有的程式碼
... ELSE "Amount To Customer" := ROUND("Line Amount" - "Inv. Discount Amount" + "Excise Amount" + "Charges To Customer" - "Bal. TDS/TCS Including SHECESS" + "Service Tax Amount" +"Service Tax eCess Amount" + "Service Tax SHE Cess Amount",Currency."Amount Rounding Precision"); END;// Delete the following lines. //IF "Tax Base Amount" <> 0 THEN // "Tax %" := ROUND(100 * ("Amount Including Tax" - "Tax Base Amount") / "Tax Base Amount",Currency."Amount Rounding Precision") //ELSE // "Tax %" := 0; // End of the deleted lines. InitOutstandingAmount; END; ...
取代程式碼
... ELSE "Amount To Customer" := ROUND("Line Amount" - "Inv. Discount Amount" + "Excise Amount" + "Charges To Customer" - "Bal. TDS/TCS Including SHECESS" + "Service Tax Amount" +"Service Tax eCess Amount" + "Service Tax SHE Cess Amount",Currency."Amount Rounding Precision"); END;// Add the following lines. IF "Tax Base Amount" = 0 THEN "Tax %" := 0; // End of the added lines. InitOutstandingAmount; END; ...
-
變更銷售列表 (37) 中的UpdateTaxAmounts函式中的程式碼如下所示︰現有的程式碼 1
... "Bal. TDS/TCS Including SHECESS" + "Service Tax Amount" + "Service Tax eCess Amount" + "Service Tax SHE Cess Amount",Currency."Amount Rounding Precision")END;IndianSalesTaxCalculate.SetCurrency("Currency Code" <>'');// Delete the following lines.//LineTaxAmount := IndianSalesTaxCalculate.CalculateTax( // "Tax Area Code","Tax Group Code","Tax Liable",SalesHeader."Posting Date", // "Tax Base Amount",Quantity,SalesHeader."Currency Factor","Form Code");// End of the deleted lines.TotalTaxAmount := 0;TotalStdDeductionAmt := 0;...
取代程式碼 1
... "Bal. TDS/TCS Including SHECESS" + "Service Tax Amount" + "Service Tax eCess Amount" + "Service Tax SHE Cess Amount",Currency."Amount Rounding Precision")END;IndianSalesTaxCalculate.SetCurrency("Currency Code" <>'');// Add the following lines.LineTaxAmount := IndianSalesTaxCalculate.CalculateTax( "Tax Area Code","Tax Group Code","Tax Liable",SalesHeader."Posting Date", "Tax Base Amount",Quantity,SalesHeader."Currency Factor","Form Code","Tax %"); // End of the added lines.TotalTaxAmount := 0;TotalStdDeductionAmt := 0;...
現有的程式碼 2
... END ELSE IndianSalesTaxCalculate.GetStandardDeductionAmt(Rec,StandardDeductionAmount,LineTaxAmount); ENDEND;"Amount Including Tax" := ROUND("Tax Base Amount" + LineTaxAmount,Currency."Amount Rounding Precision");// Delete the following lines.//IF "Tax Base Amount" <> 0 THEN // "Tax %" := // ROUND(100 * ("Amount Including Tax" - "Tax Base Amount") / "Tax Base Amount",Currency."Amount Rounding Precision") //ELSE // "Tax %" := 0; // End of the deleted lines.IF "Standard Deduction %" <>0 THEN "Standard Deduction Amount" := ("Tax Base Amount" * "Standard Deduction %" / 100) ...
取代程式碼 2
... END ELSE IndianSalesTaxCalculate.GetStandardDeductionAmt(Rec,StandardDeductionAmount,LineTaxAmount); ENDEND;"Amount Including Tax" := ROUND("Tax Base Amount" + LineTaxAmount,Currency."Amount Rounding Precision");// Add the following lines.IF "Tax Base Amount" = 0 THEN "Tax %" := 0; // End of the added lines.IF "Standard Deduction %" <>0 THEN "Standard Deduction Amount" := ("Tax Base Amount" * "Standard Deduction %" / 100) ...
-
變更購買行資料表 (39) 中的量包括稅中OnValidate觸發程序中的程式碼如下所示︰現有的程式碼
... "Amount To Vendor" := ROUND("Line Amount" -"Inv. Discount Amount" + "Excise Amount" + "Tax Amount" - "Bal. TDS Including SHE CESS" + "Charges To Vendor" + "Service Tax Amount" + "Service Tax eCess Amount" + "Service Tax SHE Cess Amount");END;// Delete the following lines.//IF "Tax Base Amount" <> 0 THEN // "Tax %" := ROUND(100 * ("Amount Including Tax" - "Tax Base Amount") / "Tax Base Amount", // Currency."Amount Rounding Precision") //ELSE // Delete// "Tax %" := 0; // End of the deleted lines.InitOutstandingAmount; ...取代程式碼
... "Amount To Vendor" := ROUND("Line Amount" -"Inv. Discount Amount" + "Excise Amount" + "Tax Amount" - "Bal. TDS Including SHE CESS" + "Charges To Vendor" + "Service Tax Amount" + "Service Tax eCess Amount" + "Service Tax SHE Cess Amount");END;// Add the following lines.IF "Tax Base Amount" = 0 THEN // Add// End of the added lines.InitOutstandingAmount; ... -
變更購買行資料表 (39) 中的UpdateTaxAmounts函式中的程式碼如下所示︰現有的程式碼 1
... "Bal. TDS Including SHECESS" + "Service Tax Amount" + "Service Tax eCess Amount" + "Service Tax SHE Cess Amount",Currency."Amount Rounding Precision")END;IndianSalesTaxCalculate.SetCurrency("Currency Code" <>'');// Delete the following lines.//LineTaxAmount := ROUND(IndianSalesTaxCalculate.CalculateTax( // "Tax Area Code","Tax Group Code","Tax Liable",PurchHeader."Posting Date", // "Tax Base Amount",Quantity,PurchHeader."Currency Factor","Form Code"),Currency."Amount Rounding Precision"); // End of the deleted lines.AmountonInventory := 0;InputTaxCreditAmount := 0;...
取代程式碼 1
... "Bal. TDS Including SHECESS" + "Service Tax Amount" + "Service Tax eCess Amount" + "Service Tax SHE Cess Amount",Currency."Amount Rounding Precision")END;IndianSalesTaxCalculate.SetCurrency("Currency Code" <>'');// Add the following lines. LineTaxAmount := ROUND(IndianSalesTaxCalculate.CalculateTax( "Tax Area Code","Tax Group Code","Tax Liable",PurchHeader."Posting Date", "Tax Base Amount",Quantity,PurchHeader."Currency Factor","Form Code","Tax %"),Currency."Amount Rounding Precision");// End of the added lines.AmountonInventory := 0;InputTaxCreditAmount := 0;...
現有的程式碼 2
... "Tax Amount" := ROUND(TaxAmount,Currency."Amount Rounding Precision");"Amount Including Tax" := ("Tax Base Amount" + "Tax Amount");// Delete the following lines.//IF "Tax Base Amount" <> 0 THEN// "Tax %" := ROUND(100 * ("Amount Including Tax" - "Tax Base Amount") / "Tax Base Amount", // Currency."Amount Rounding Precision") //ELSE // "Tax %" := 0; // End of the deleted lines.ServiceTaxSetup.RESET;...
取代程式碼 2
... "Tax Amount" := ROUND(TaxAmount,Currency."Amount Rounding Precision");"Amount Including Tax" := ("Tax Base Amount" + "Tax Amount");// Add the following lines.IF "Tax Base Amount" = 0 THEN "Tax %" := 0;// End of the added lines.ServiceTaxSetup.RESET;...
-
變更UpdateTaxAmount 增值稅開啟日誌資料表 (16569) 中的函式中的程式碼如下所示︰現有的程式碼
... IF "Transaction Type" = "Transaction Type"::Purchase THEN BEGIN// Delete the following lines. //LineTaxAmount := IndianSalesTaxCalculate.CalculateTax( // "Tax Area Code","Tax Group Code",TRUE,"Posting Date", // "Tax Base Amount",Quantity,0,''); // End of the deleted lines. IF LineTaxAmount <> 0 THEN IndianSalesTaxCalculate.GetVATOpeningInputTaxCredit(Rec,"Amount Loaded on Item", "Input Credit/Output Tax Amount",TRUE,TaxAmount); "Tax Amount" := TaxAmount; IF GLSetup."VAT Rounding Precision" <> 0 THEN "Tax Amount" := ROUND("Tax Amount",GLSetup."VAT Rounding Precision",Direction);// Delete the following lines. //IF "Tax Base Amount" <> 0 THEN // "Tax %" := 100 * (("Tax Base Amount" + "Tax Amount") - "Tax Base Amount") / "Tax Base Amount" //ELSE // "Tax %" := 0; // End of the deleted lines.END ELSE IF "Transaction Type" = "Transaction Type"::Sale THEN BEGIN IF ("Export or Deemed Export") THEN EXIT;// Delete the following lines. //LineTaxAmount := IndianSalesTaxCalculate.CalculateTax( // "Tax Area Code","Tax Group Code",TRUE,"Posting Date", // "Tax Base Amount",Quantity,0,''); // End of the deleted lines. IF LineTaxAmount <> 0 THEN IndianSalesTaxCalculate.GetVATOpeningSTD(Rec,StandardDeductionAmount,TaxAmount); "Tax Amount" := TaxAmount - StandardDeductionAmount;// Delete the following lines. //IF "Tax Base Amount" <> 0 THEN // "Tax %" := 100 * (("Tax Base Amount" + "Tax Amount") - "Tax Base Amount") / "Tax Base Amount" //ELSE // "Tax %" := 0; // End of the deleted lines. "Input Credit/Output Tax Amount" := "Tax Amount"; "Amount Loaded on Item" := 0;END;...
取代程式碼
... IF "Transaction Type" = "Transaction Type"::Purchase THEN BEGIN// Add the following lines. LineTaxAmount := IndianSalesTaxCalculate.CalculateTax( "Tax Area Code","Tax Group Code",TRUE,"Posting Date", "Tax Base Amount",Quantity,0,'',"Tax %"); // End of the added lines. IF LineTaxAmount <> 0 THEN IndianSalesTaxCalculate.GetVATOpeningInputTaxCredit(Rec,"Amount Loaded on Item", "Input Credit/Output Tax Amount",TRUE,TaxAmount); "Tax Amount" := TaxAmount; IF GLSetup."VAT Rounding Precision" <> 0 THEN "Tax Amount" := ROUND("Tax Amount",GLSetup."VAT Rounding Precision",Direction);// Add the following lines. IF "Tax Base Amount" = 0 THEN "Tax %" := 0; // End of the added lines.END ELSE IF "Transaction Type" = "Transaction Type"::Sale THEN BEGIN IF ("Export or Deemed Export") THEN EXIT; // Add the following lines. LineTaxAmount := IndianSalesTaxCalculate.CalculateTax( "Tax Area Code","Tax Group Code",TRUE,"Posting Date", "Tax Base Amount",Quantity,0,'',"Tax %"); // End of the added lines. IF LineTaxAmount <> 0 THEN IndianSalesTaxCalculate.GetVATOpeningSTD(Rec,StandardDeductionAmount,TaxAmount); "Tax Amount" := TaxAmount - StandardDeductionAmount; // Add the following lines. IF "Tax Base Amount" = 0 THEN // Add "Tax %" := 0; // Add// End of the added lines. "Input Credit/Output Tax Amount" := "Tax Amount"; "Amount Loaded on Item" := 0;END;...
-
變更印度的銷項稅計算codeunit (13704) 中的程式碼如下所示︰現有的程式碼
... Taxamount := TaxBaseAmount * TaxDetail."Tax Below Maximum" / 100; IF (TaxJurisdiction."Tax Type" = TaxJurisdiction."Tax Type"::VAT) OR (TaxJurisdiction."Tax Type" = TaxJurisdiction."Tax Type"::CST) ...
取代程式碼
... Taxamount := TaxBaseAmount * TaxDetail."Tax Below Maximum" / 100;// Add the following line. TaxPercent := TaxDetail."Tax Below Maximum";// End of the added line. IF (TaxJurisdiction."Tax Type" = TaxJurisdiction."Tax Type"::VAT) OR (TaxJurisdiction."Tax Type" = TaxJurisdiction."Tax Type"::CST)...7. Codeunit 13704 Indian Sales Tax Calculate Function CalculateTax Add the below Parameter VAR TaxPercent Type Decimal
先決條件
您必須套用此 hotfix 之後所安裝的印度版本的 Microsoft 動態航行點 2009 Service Pack 1 (SP1)。
移除資訊
您無法移除此 hotfix。
狀態
Microsoft 已確認這是<套用>一節所列出的 Microsoft 產品的問題。
參考
VSTF DynamicsNAV SE: 252133
注意這是直接從 Microsoft 支援組織內建立的「快速發行」文件。本文件所包含的現狀資訊是針對新興問題的回應。為縮短使其可用的時程,資料可能會包含印刷錯誤,且可能會隨時進行修改而不另行通知。如其他考量,請參閱 「使用規定」。