Applies To
Dynamics NAV 2009

在法文版的 Microsoft 動態航行點 2009年匯出稅稽核報告 (10885) 時,會意外地匯出帳戶。請依照下列程式碼變更一節,若要解決這個問題的步驟。下列產品中,就會發生這個問題︰

  • 法文版的 Microsoft 動態航行點 2009 R2

  • 法文版的 Microsoft 動態航行點 2009 Service Pack 1 (SP1)

解決方案

Hotfix 資訊

已經可以從 Microsoft 取得支援的 hotfix。不過,它只被用來修正本文所述的問題。它只適用於發生此特定問題的系統上。此 hotfix 可能會接受其他測試。因此,如果此問題不會嚴重影響,我們建議您等候下一步的 Microsoft 動態航行點 2009 service pack 或包含此 hotfix 的下一個 Microsoft 動態航行點版本。注意 在特殊的情況下,通常會支援呼叫可能已被取消如果技術支援專業人員的 Microsoft 動態及相關的產品所產生的費用會決定某特定更新程式可以解決您的問題。收取支援費用會套用,如果有其他支援問題是,不能限定的特定更新程式。

安裝資訊

Microsoft 會提供程式設計範例僅供說明,而不做任何明示或默示的保證。這包括,但不限於適售性或適合某特定用途之默示擔保責任。本文假設您已相當熟悉使用的我們所示範的程式設計語言以及建立和偵錯程序所使用的工具。Microsoft 技術支援工程師可以協助解釋特定程序的功能。不過,它們不會修改這些範例以提供附加功能或建構程序來滿足您特定需求。注意套用此 hotfix 之前,請確認所有的 Microsoft 動態航行點用戶端使用者會登出系統。這包括 Microsoft 動態航行點應用程式伺服器 (NAS) 服務。您應該是唯一的用戶端使用者已登入,當您實作此 hotfix。若要實作此 hotfix,您必須有開發人員授權。我們建議您在 Windows 登入] 視窗中的色彩,或資料庫登入] 視窗中的使用者帳戶被指派 「 進階 」 的角色識別碼。如果使用者帳戶不能指派為 「 超級 」 的角色識別碼,您必須確認使用者帳戶具有下列權限︰

  • 您將會變更物件的 [修改] 權限。

  • 執行權限的系統物件 ID 5210物件和系統物件 ID 9015物件。

注意您沒有擁有資料存放區的權限,除非您需要執行資料修復。

程式碼變更

注意永遠測試程式碼修正在受控制的環境中才能套用到實際執行電腦的修正程式。若要解決這個問題,請依照下列步驟執行:

  1. 變更匯出 G/L 項目中-稅稽核報告 (10885) 的內容中的程式碼如下所示︰現有的程式碼 1

    ...ERROR(MissingStartingDateErr);                    IF EndingDate = 0D THEN                      ERROR(MissingEndingDateErr);                    GLEntry.SETRANGE("Posting Date",StartingDate,EndingDate);                    GLEntry.SETRANGE("Entry Type",GLEntry."Entry Type"::Definitive);...

    取代程式碼 1

    ...ERROR(MissingStartingDateErr);                    IF EndingDate = 0D THEN                      ERROR(MissingEndingDateErr);// Add the following lines.                   IF GLAccount.GETFILTER("No.") <> '' THEN                     GLAccNoFilter := GLAccount.GETFILTER("No.");// End of the added lines.                    GLEntry.SETRANGE("Posting Date",StartingDate,EndingDate);                    GLEntry.SETRANGE("Entry Type",GLEntry."Entry Type"::Definitive);...

    現有的程式碼 2

    ...GLEntry.SETRANGE("Posting Date",StartingDate,EndingDate);                    GLEntry.SETRANGE("Entry Type",GLEntry."Entry Type"::Definitive);                    IF GLEntry.ISEMPTY THEN                      ERROR(NoEntriestoExportErr);...

    取代程式碼 2

    ...GLEntry.SETRANGE("Posting Date",StartingDate,EndingDate);                    GLEntry.SETRANGE("Entry Type",GLEntry."Entry Type"::Definitive);// Add the following line.                   GLEntry.SETFILTER("G/L Account No.",GLAccNoFilter);                    IF GLEntry.ISEMPTY THEN                      ERROR(NoEntriestoExportErr);...
  2. 變更匯出 G/L 項目中-稅稽核報告 (10885) 的 Table15 DataItemTable 中的程式碼如下所示︰現有的程式碼 1

    ...DataItemTableView=SORTING(No.)                            WHERE(Account Type=CONST(Posting));          DataItemVarName=GLAccount;          OnAfterGetRecord=BEGIN                             IF IncludeOpeningBalances THEN                               WriteGLAccountToFile(GLAccount);...

    取代程式碼 1

    ...DataItemTableView=SORTING(No.)                            WHERE(Account Type=CONST(Posting));          DataItemVarName=GLAccount;// Add the following lines.         OnPreDataItem=BEGIN                         SETFILTER("No.",GLAccNoFilter);                       END;// End of the added lines.          OnAfterGetRecord=BEGIN                             IF IncludeOpeningBalances THEN                               WriteGLAccountToFile(GLAccount);...

    現有的程式碼 2

    ...IF IncludeOpeningBalances THEN                               WriteGLAccountToFile(GLAccount);                           END;        }        SECTIONS        {...

    取代程式碼 2

    ...IF IncludeOpeningBalances THEN                               WriteGLAccountToFile(GLAccount);                           END;// Add the following line.                                      ReqFilterFields=No.;        }        SECTIONS        {...
  3. 變更匯出 G/L 項目中-稅稽核報告 (10885) 的 Table17 DataItemTable 中的程式碼如下所示︰現有的程式碼

    ...OnPreDataItem=BEGIN                          SETRANGE("Posting Date",StartingDate,EndingDate);                          SETRANGE("Entry Type","Entry Type"::Definitive);                        END;          OnAfterGetRecord=BEGIN...

    取代程式碼

    ...OnPreDataItem=BEGIN                          SETRANGE("Posting Date",StartingDate,EndingDate);                          SETRANGE("Entry Type","Entry Type"::Definitive);// Add the following line.                         SETFILTER("G/L Account No.",GLAccount.GETFILTER("No."));                        END;          OnAfterGetRecord=BEGIN...
  4. 變更匯出 G/L 項目中-稅稽核報告 (10885) 的全域變數中的程式碼如下所示︰現有的程式碼

    ...OutputFileName@1120014 : Text[250];        StartingDate@1120001 : Date;        EndingDate@1120002 : Date;        ReportFileName@1120003 : Text[250];        ReportFilePath@1120019 : Text[250];        FileTypeTxt@1120005 : TextConst 'ENU=Text Files (*.txt)|*.txt|All Files (*.*)|*.*';...

    取代程式碼

    ...OutputFileName@1120014 : Text[250];        StartingDate@1120001 : Date;        EndingDate@1120002 : Date;// Add the following line.       GLAccNoFilter@1120006 : Code[250];        ReportFileName@1120003 : Text[250];        ReportFilePath@1120019 : Text[250];        FileTypeTxt@1120005 : TextConst 'ENU=Text Files (*.txt)|*.txt|All Files (*.*)|*.*';...
  5. 變更匯出 G/L 項目中-稅稽核報告 (10885) 的初始化函式中的程式碼如下所示︰現有的程式碼 1

    ...CustVendLedgEntryCurrencyCode@1120069 : Code[10];        PayRecAccount@1120070 : Code[20];// Delete the following line.     PROCEDURE Init@1120084(StartingDateValue@1120095 : Date;EndingDateValue@1120085 : Date;IncludeOpeningBalancesValue@1120086 : Boolean;ReportFileNameValue@1120087 : Text[250]);      BEGIN        StartingDate := StartingDateValue;        EndingDate := EndingDateValue;...

    取代程式碼 1

    ...CustVendLedgEntryCurrencyCode@1120069 : Code[10];        PayRecAccount@1120070 : Code[20];// Add the following line.     PROCEDURE Init@1120084(StartingDateValue@1120095 : Date;EndingDateValue@1120085 : Date;IncludeOpeningBalancesValue@1120086 : Boolean;AccNoFilter@1120088 : Code[250];ReportFileNameValue@1120087 : Text[250]);      BEGIN        StartingDate := StartingDateValue;        EndingDate := EndingDateValue;...

    現有的程式碼 2

    ...StartingDate := StartingDateValue;        EndingDate := EndingDateValue;        IncludeOpeningBalances := IncludeOpeningBalancesValue;        ReportFileName := ReportFileNameValue;      END;...

    取代程式碼 2

    ...StartingDate := StartingDateValue;        EndingDate := EndingDateValue;        IncludeOpeningBalances := IncludeOpeningBalancesValue;// Add the following line.       GLAccNoFilter := AccNoFilter;        ReportFileName := ReportFileNameValue;      END;...
  6. 變更匯出 G/L 項目中-稅稽核報告 (10885) 的GetTransPayRecEntriesCount函式中的程式碼如下所示︰現有的程式碼 1

    ...LOCAL PROCEDURE GetTransPayRecEntriesCount@1120029(TransactionNo@1120044 : Integer;PayRecAccount@1120000 : Code[20]) : Integer;      VAR        GLEntryCount@1120045 : Integer;// Delete the following line.     BEGIN        GLEntry.SETRANGE("G/L Account No.",PayRecAccount);        GLEntry.SETRANGE("Transaction No.",TransactionNo);        GLEntryCount := GLEntry.COUNT;...

    取代程式碼 1

    ...LOCAL PROCEDURE GetTransPayRecEntriesCount@1120029(TransactionNo@1120044 : Integer;PayRecAccount@1120000 : Code[20]) : Integer;      VAR        GLEntryCount@1120045 : Integer;// Add the following lines.       GLAccNoFilter@1120046 : Code[250];     BEGIN       GLAccNoFilter := GLEntry.GETFILTER("G/L Account No.");// End of the added lines.        GLEntry.SETRANGE("G/L Account No.",PayRecAccount);        GLEntry.SETRANGE("Transaction No.",TransactionNo);        GLEntryCount := GLEntry.COUNT;...

    現有的程式碼 2

    ...GLEntry.SETRANGE("Transaction No.",TransactionNo);        GLEntryCount := GLEntry.COUNT;        GLEntry.SETRANGE("Transaction No.");// Delete the following line.       GLEntry.SETRANGE("G/L Account No.");        EXIT(GLEntryCount)      END;...

    取代程式碼 2

    ...GLEntry.SETRANGE("Transaction No.",TransactionNo);        GLEntryCount := GLEntry.COUNT;        GLEntry.SETRANGE("Transaction No.");// Add the following line.       GLEntry.SETFILTER("G/L Account No.",GLAccNoFilter);        EXIT(GLEntryCount)      END;...

先決條件

您必須具備套用此 hotfix 之後安裝下列產品的其中一個︰

  • 法文版的 Microsoft 動態航行點 2009 R2

  • 法文版的 Microsoft 動態航行點 2009 SP1

移除資訊

您無法移除此 hotfix。

狀態

Microsoft 已確認這是<套用>一節所列出的 Microsoft 產品的問題。

注意這是直接從 Microsoft 支援組織內建立的「快速發行」文件。本文件所包含的現狀資訊是針對新興問題的回應。為縮短使其可用的時程,資料可能會包含印刷錯誤,且可能會隨時進行修改而不另行通知。如其他考量,請參閱 「使用規定」。

Need more help?

Want more options?

探索訂閱權益、瀏覽訓練課程、瞭解如何保護您的裝置等等。