Bỏ qua để tới nội dung chính
Đăng nhập với Microsoft
Đăng nhập hoặc tạo một tài khoản.
Xin chào,
Chọn một tài khoản khác.
Bạn có nhiều tài khoản
Chọn tài khoản bạn muốn đăng nhập.

Sự cố này xảy ra khi nhập báo cáo ngân hàng với CAMT trong phiên bản tiếng Hà Lan của Microsoft Dynamics NAV 2009. Ngoài ra, khách hàng mở sổ cái mục nhập đối chiếu không tự động. Làm theo các bước trong phần thay đổi mã để giải quyết vấn đề này. Sự cố này xảy ra trong các sản phẩm sau:

  • Phiên bản Microsoft Dynamics NAV 2009 R2 bằng tiếng Hà Lan

  • Phiên bản tiếng Hà Lan của Microsoft Dynamics NAV 2009 Service Pack 1 (SP1)

Giải pháp

Thông tin về cập nhật nóng

Microsoft hiện đã cung cấp bản cập nhật nóng được hỗ trợ. Tuy nhiên, nó chỉ được dùng để khắc phục sự cố được mô tả trong bài viết này. Áp dụng cho các hệ thống đang gặp sự cố cụ thể này. Hotfix này có thể được kiểm tra thêm. Vì vậy, nếu bạn không bị ảnh hưởng bởi sự cố này, chúng tôi khuyến nghị bạn đợi cho gói dịch vụ tiếp theo của Microsoft Dynamics NAV 2009 hoặc phiên bản Microsoft Dynamics NAV tiếp theo có chứa hotfix này.

Lưu ý Trong trường hợp đặc biệt, chi phí thường phát sinh để hỗ trợ cuộc gọi có thể bị hủy bỏ nếu chuyên viên hỗ trợ kỹ thuật cho Microsoft Dynamics và sản phẩm liên quan xác định rằng một Cập Nhật cụ thể sẽ giải quyết vấn đề của bạn. Chi phí hỗ trợ thông thường sẽ áp dụng cho các vấn đề không phù hợp với bản Cập Nhật cụ thể trong câu hỏi và câu hỏi hỗ trợ bổ sung.

Thông tin cài đặt

Microsoft cung cấp mô hình lập trình để minh hoạ, không bảo hành hoặc rõ ràng hay ngụ ý. Điều này bao gồm, nhưng không giới hạn ở các bảo đảm cho một mục đích cụ thể hoặc sự. Bài viết này giả định rằng bạn đã quen với ngôn ngữ lập trình đang được giải thích và các công cụ được sử dụng để tạo và quy trình gỡ lỗi. Các kỹ sư hỗ trợ Microsoft có thể giúp giải thích các chức năng của một quy trình cụ thể. Tuy nhiên, họ sẽ không sửa đổi các ví dụ để cung cấp thêm chức năng hoặc xây dựng quy trình nhằm đáp ứng các yêu cầu cụ thể của bạn.

Lưu ý Trước khi cài đặt hotfix này, xác minh rằng tất cả người dùng máy khách Microsoft Dynamics NAV đã đăng xuất hệ thống. Điều này bao gồm dịch vụ Microsoft Dynamics NAV ứng dụng máy chủ (NAS). Bạn nên khách hàng chỉ người được đăng nhập khi bạn áp dụng hotfix này.

Để áp dụng hotfix này, bạn phải có giấy phép nhà phát triển.

Chúng tôi khuyên bạn nên tài khoản người dùng trong cửa sổ thông tin đăng nhập Windows hoặc trong cửa sổ thông tin đăng nhập cơ sở dữ liệu được gán vai trò "Siêu" của bạn. Nếu tài khoản người dùng không thể gán vai trò "SUPER" ID, bạn phải xác minh rằng tài khoản người dùng có các quyền sau đây:

  • Thay đổi quyền cho các đối tượng mà bạn sẽ thay đổi.

  • Quyền thực thi các đối tượng hệ thống đối tượng ID 5210 và hệ thống đối tượng ID 9015

    đối tượng.

Lưu ý Bạn không cần phải có quyền để lưu trữ dữ liệu nếu bạn phải tiến hành sửa chữa dữ liệu.

Thay đổi mã

Lưu ý Luôn kiểm tra mã khắc phục trong một môi trường được kiểm soát trước khi bạn áp dụng bản vá để sản xuất máy tính của bạn.

Để khắc phục sự cố này, hãy làm theo các bước sau:

  1. Thay đổi mã trong thuộc tính trong CBG tuyên bố hòa codeuint (11000006) như sau:
    Mã hiện tại

    ...CBGStatementRec@1000000 : Record 11400;
    BEGIN
    ResetNumbers;

    // Delete the following lines.
    IF CBGStatementRec.FIND('-') THEN BEGIN
    REPEAT
    MatchCBGStatement(CBGStatementRec);
    UNTIL CBGStatementRec.NEXT() = 0;
    END;
    // End of the deleted lines.

    END;

    }
    ...

    Thay thế mã

    ...CBGStatementRec@1000000 : Record 11400;
    BEGIN
    ResetNumbers;

    // Add the following lines.
    IF CBGStatementRec.FIND('-') THEN
    REPEAT
    MatchCBGStatement(CBGStatementRec);
    UNTIL CBGStatementRec.NEXT = 0;
    // End of the added lines.

    END;

    }
    ...
  2. Thay đổi mã trong biến toàn cầu trong CBG tuyên bố hòa codeuint (11000006) như sau:
    Hiện có mã 1

    ...PostDesRec@1000016 : Record 11000006;
    PaymenthistorylineRec@1000017 : Record 11000002;
    TransactionModeRec@1000018 : Record 11000004;

    // Delete the following lines.
    Tab@1000019 : Text[2];
    BankaccountNo@1000020 : ARRAY [5] OF Code[40];
    Name@1000021 : Code[40];
    // End of the deleted lines.

    Address@1000022 : Code[40];
    City@1000023 : Code[40];
    Identification@1000024 : Code[40];
    ...

    Thay thế mã 1

    ...PostDesRec@1000016 : Record 11000006;
    PaymenthistorylineRec@1000017 : Record 11000002;
    TransactionModeRec@1000018 : Record 11000004;

    // Add the following lines.
    TempBankAccount@1000025 : Record 270;
    Name@1000021 : Code[80];
    // End of the added lines.

    Address@1000022 : Code[40];
    City@1000023 : Code[40];
    Identification@1000024 : Code[40];
    ...

    Hiện có mã 2

    ...Address@1000022 : Code[40];
    City@1000023 : Code[40];
    Identification@1000024 : Code[40];

    // Delete the following lines.
    Invoicenumber@1000025 : Text[250];
    Len@1000026 : Integer;
    NumberOfPossibleBankAccounts@1000027 : Integer;
    // End of the deleted lines.

    NumberOfDocumentNumbers@1000028 : Integer;
    NumberOfLinesProcessed@1000029 : Integer;
    NumberOfLinesChanged@1000030 : Integer;
    ...

    Thay thế mã 2

    ...Address@1000022 : Code[40];
    City@1000023 : Code[40];
    Identification@1000024 : Code[40];
    NumberOfDocumentNumbers@1000028 : Integer;
    NumberOfLinesProcessed@1000029 : Integer;
    NumberOfLinesChanged@1000030 : Integer;
    ...

    Mã hiện 3

    ...Window@1000040 : Dialog;
    LocalFunctionalityMgt@1000041 : Codeunit 11400;
    HideMessages@1000042 : Boolean;

    PROCEDURE MatchCBGStatement@1000000(CBGStatementRec@1000000 : Record 11400);
    VAR
    ...

    Thay thế mã 3

    ...Window@1000040 : Dialog;
    LocalFunctionalityMgt@1000041 : Codeunit 11400;
    HideMessages@1000042 : Boolean;

    // Add the following line.
    BankAccountCharsToKeep@1000019 : Text[250];

    PROCEDURE MatchCBGStatement@1000000(CBGStatementRec@1000000 : Record 11400);
    VAR
    ...
  3. Thay đổi mã trong hàm MatchCBGStatementLine CBG tuyên bố hòa codeuint (11000006) như sau:
    Hiện có mã 1

    ...PROCEDURE MatchCBGStatementLine@1000001(CBGStatementRec@1000000 : Record 11400;VAR CBGStatementlineRec@1000001 : Record 11401);
    VAR
    RecChanged@1000002 : Boolean;

    // Delete the following line.
    Found@1000003 : Boolean;

    PaymentHistoryFound@1000004 : Boolean;
    i@1000005 : Integer;
    strFilter@1000006 : Text[250];
    ...

    Thay thế mã 1

    ...PROCEDURE MatchCBGStatementLine@1000001(CBGStatementRec@1000000 : Record 11400;VAR CBGStatementlineRec@1000001 : Record 11401);
    VAR
    RecChanged@1000002 : Boolean;
    PaymentHistoryFound@1000004 : Boolean;
    i@1000005 : Integer;
    strFilter@1000006 : Text[250];
    ...

    Hiện có mã 2

    ...NumberOfLinesProcessed := NumberOfLinesProcessed + 1;
    RecChanged := FALSE;

    - CLEAR(BankaccountNo);
    CLEAR(Name);
    CLEAR(Address);
    CLEAR(City);
    ...

    Thay thế mã 2

    ...NumberOfLinesProcessed := NumberOfLinesProcessed + 1;
    RecChanged := FALSE;

    // Add the following line.
    CLEAR(TempBankAccount);

    CLEAR(Name);
    CLEAR(Address);
    CLEAR(City);
    ...

    Mã hiện 3

    ...CLEAR(Address);
    CLEAR(City);
    CLEAR(Identification);

    // Delete the following line.
    NumberOfPossibleBankAccounts := 0;

    PostDesRec.SETRANGE("Journal Template Name", CBGStatementlineRec."Journal Template Name");
    PostDesRec.SETRANGE("CBG Statement No.", CBGStatementlineRec."No.");
    ...

    Thay thế mã 3

    ...CLEAR(Address);
    CLEAR(City);
    CLEAR(Identification);

    PostDesRec.SETRANGE("Journal Template Name", CBGStatementlineRec."Journal Template Name");
    PostDesRec.SETRANGE("CBG Statement No.", CBGStatementlineRec."No.");
    ...

    Mã hiện 4

    ...PostDesRec.SETRANGE("CBG Statement No.", CBGStatementlineRec."No.");
    PostDesRec.SETRANGE("CBG Statement Line No.", CBGStatementlineRec."Line No.");

    // Delete the following line.
    IF PostDesRec.FIND('-') THEN BEGIN

    REPEAT
    CASE PostDesRec."Information Type" OF
    PostDesRec."Information Type"::"Description and Sundries":
    ...

    Thay thế mã 4

    ...PostDesRec.SETRANGE("CBG Statement No.", CBGStatementlineRec."No.");
    PostDesRec.SETRANGE("CBG Statement Line No.", CBGStatementlineRec."Line No.");

    // Add the following line.
    IF PostDesRec.FIND('-') THEN

    REPEAT
    CASE PostDesRec."Information Type" OF
    PostDesRec."Information Type"::"Description and Sundries":
    ...

    Hiện có mã 5

    ...REPEAT
    CASE PostDesRec."Information Type" OF
    PostDesRec."Information Type"::"Description and Sundries":

    // Delete the following lines.
    IF NOT SplitAccountnumber(PostDesRec.Description) THEN
    SplitInvoicenumber(PostDesRec.Description);
    PostDesRec."Information Type"::"Account No. Balancing Account":
    SplitAccountnumber(PostDesRec.Description);
    // End of the dle

    PostDesRec."Information Type"::"Name Acct. Holder":
    Name := PostDesRec.Description;
    PostDesRec."Information Type"::"Address Acct. Holder":
    ...

    Thay thế mã 5

    ...REPEAT
    CASE PostDesRec."Information Type" OF
    PostDesRec."Information Type"::"Description and Sundries":

    // Add the following lines.
    SplitAccountNumber(PostDesRec.Description);
    PostDesRec."Information Type"::"Account No. Balancing Account":
    AddPossibleBankAccount(PostDesRec.Description);
    // End of the added lines.

    PostDesRec."Information Type"::"Name Acct. Holder":
    Name := PostDesRec.Description;
    PostDesRec."Information Type"::"Address Acct. Holder":
    ...

    Mã hiện 6

    ...Identification := PostDesRec.Description;
    END;
    UNTIL PostDesRec.NEXT = 0;

    // Delete the following lines.
    END;

    IF CBGStatementlineRec."Account No." = '' THEN BEGIN
    FOR i := 1 TO 5 DO BEGIN
    IF BankaccountNo[i] <> '' THEN BEGIN
    IF CBGStatementlineRec.Credit > 0 THEN BEGIN
    IF FindAccountnumber(BankaccountNo[i], TempRec."Source Type"::Customer,CBGStatementlineRec."Account No.") THEN BEGIN
    // End of the deleted lines.

    CBGStatementlineRec."Account Type" := CBGStatementlineRec."Account Type"::Customer;
    CBGStatementlineRec.VALIDATE("Account No.", CBGStatementlineRec."Account No.");
    CBGStatementlineRec."Reconciliation Status" := CBGStatementlineRec."Reconciliation Status"::Changed;
    ...

    Thay thế mã 6

    ...Identification := PostDesRec.Description;
    END;
    UNTIL PostDesRec.NEXT = 0;

    // Add the following lines.
    IF CBGStatementlineRec."Account No." = '' THEN BEGIN
    IF TempBankAccount.FINDFIRST THEN
    REPEAT
    IF TempBankAccount.IBAN <> '' THEN BEGIN
    IF CBGStatementlineRec.Credit > 0 THEN BEGIN
    IF FindAccountnumber(TempBankAccount.IBAN,TempRec."Source Type"::Customer,CBGStatementlineRec."Account No.") THEN BEGIN
    // End of the added lines.

    CBGStatementlineRec."Account Type" := CBGStatementlineRec."Account Type"::Customer;
    CBGStatementlineRec.VALIDATE("Account No.", CBGStatementlineRec."Account No.");
    CBGStatementlineRec."Reconciliation Status" := CBGStatementlineRec."Reconciliation Status"::Changed;
    ...

    Mã hiện 7

    ...RecChanged := TRUE;
    END;
    END ELSE BEGIN

    // Delete the following line.
    IF FindAccountnumber(BankaccountNo[i], TempRec."Source Type"::Vendor,CBGStatementlineRec."Account No.") THEN BEGIN

    CBGStatementlineRec."Account Type" := CBGStatementlineRec."Account Type"::Vendor;
    CBGStatementlineRec.VALIDATE("Account No.", CBGStatementlineRec."Account No.");
    CBGStatementlineRec."Reconciliation Status" := CBGStatementlineRec."Reconciliation Status"::Changed;
    ...

    Thay thế mã 7

    ...RecChanged := TRUE;
    END;
    END ELSE BEGIN

    // Add the following line.
    IF FindAccountnumber(TempBankAccount.IBAN,TempRec."Source Type"::Vendor,CBGStatementlineRec."Account No.") THEN BEGIN

    CBGStatementlineRec."Account Type" := CBGStatementlineRec."Account Type"::Vendor;
    CBGStatementlineRec.VALIDATE("Account No.", CBGStatementlineRec."Account No.");
    CBGStatementlineRec."Reconciliation Status" := CBGStatementlineRec."Reconciliation Status"::Changed;
    ...

    Mã hiện 8

    ...END;
    END;
    END;

    // Delete the following line.
    END;

    IF NOT RecChanged THEN BEGIN
    IF Name <> '' THEN BEGIN
    IF CBGStatementlineRec.Credit > 0 THEN BEGIN
    ...

    Thay thế mã 8

    ...END;
    END;
    END;

    // Add the following line.
    UNTIL TempBankAccount.NEXT = 0;

    IF NOT RecChanged THEN BEGIN
    IF Name <> '' THEN BEGIN
    IF CBGStatementlineRec.Credit > 0 THEN BEGIN
    ...

    Mã hiện 9

    ...END;
    END;

    // Delete the following lines.
    IF RecChanged THEN BEGIN
    CBGStatementlineRec.MODIFY(TRUE);
    // End of the deleted lines.

    END;
    END;
    ...

    Thay thế mã 9

    ...END;
    END;

    // Add the following lines.
    IF RecChanged THEN
    CBGStatementlineRec.MODIFY(TRUE);
    END;

    PROCEDURE SplitAccountNumber@1000002(strBuf@1000001 : Text[250]);
    VAR
    AccNo@1000003 : Text[30];
    BEGIN
    IF LocalFunctionalityMgt.CheckBankAccNo(COPYSTR(strBuf,1,30),'',AccNo) THEN
    AddPossibleBankAccount(AccNo);
    END;

    PROCEDURE FindAccountnumber@1000004("Account Name"@1000001 : Code[80];"Source Type"@1000002 : Integer;VAR Sourcenumber@1000003 : Code[20]) found@1000000 : Boolean;
    BEGIN
    TempRec.SETRANGE("Data Type",TempRec."Data Type"::Bankaccount);
    TempRec.SETRANGE("Source Type","Source Type");
    TempRec.SETRANGE(Word,"Account Name");
    IF TempRec.FIND('-') THEN BEGIN
    Sourcenumber := TempRec."Source No.";
    EXIT(TRUE);
    // End of the added lines.

    END;
    END;
    ...
  4. Thay đổi mã trong hàm SplitAccountnumber CBG tuyên bố hòa codeuint (11000006) như sau:
    Mã hiện tại

    ...END;
    END;

    // Delete the following lines.
    PROCEDURE SplitAccountnumber@1000002(VAR strBuf@1000001 : Text[250]) result@1000000 : Boolean;
    VAR
    strHlpBuf@1000002 : Text[250];
    AccNo@1000003 : Text[30];
    BEGIN
    result := LocalFunctionalityMgt.CheckBankAccNo(COPYSTR(strBuf,1,30), '', AccNo);
    IF result THEN BEGIN
    NumberOfPossibleBankAccounts := NumberOfPossibleBankAccounts + 1;
    BankaccountNo[NumberOfPossibleBankAccounts] :=
    LocalFunctionalityMgt.CharacterFilter(AccNo,'0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ');
    END;
    END;

    PROCEDURE SplitInvoicenumber@1000003(strBuf@1000000 : Text[250]);
    BEGIN
    END;

    PROCEDURE FindAccountnumber@1000004("Account Name"@1000001 : Code[80];"Source Type"@1000002 : Integer;VAR Sourcenumber@1000003 : Code[20]) found@1000000 : Boolean;
    BEGIN
    TempRec.SETRANGE(TempRec."Data Type", TempRec."Data Type"::Bankaccount);
    TempRec.SETRANGE(TempRec."Source Type", "Source Type");
    TempRec.SETRANGE(TempRec.Word, "Account Name");
    IF TempRec.FIND('-') THEN BEGIN
    Sourcenumber := TempRec."Source No.";
    EXIT(TRUE);
    END;
    END;
    // End of the deleted lines.

    PROCEDURE FindNAC@1000005(Name@1000001 : Code[80];Address@1000002 : Code[80];City@1000003 : Code[80];"Source Type"@1000004 : Integer;VAR SourcenumberFound@1000005 : Code[20]) found@1000000 : Boolean;
    VAR
    NameResultTemp@1000006 : TEMPORARY Record 11000008;
    ...

    Thay thế mã

    ...END;
    END;

    PROCEDURE FindNAC@1000005(Name@1000001 : Code[80];Address@1000002 : Code[80];City@1000003 : Code[80];"Source Type"@1000004 : Integer;VAR SourcenumberFound@1000005 : Code[20]) found@1000000 : Boolean;
    VAR
    NameResultTemp@1000006 : TEMPORARY Record 11000008;
    ...
  5. Thay đổi mã trong hàm FindNAC CBG tuyên bố hòa codeuint (11000006) như sau:
    Hiện có mã 1

    ...AddressResultTemp.SETCURRENTKEY("Source Type", "Source No.");
    CityResultTemp.SETCURRENTKEY("Source Type", "Source No.");

    // Delete the following lines.
    TempRec.SETRANGE(TempRec."Source Type", "Source Type");
    TempRec.SETRANGE(TempRec."Data Type", TempRec."Data Type"::Name);
    TempRec.SETRANGE(TempRec.Word, COPYSTR(Name,1,20));
    // End of the deleted lines.

    IF TempRec.FIND('-') THEN
    REPEAT
    NameResultTemp := TempRec;
    ...

    Thay thế mã 1

    ...AddressResultTemp.SETCURRENTKEY("Source Type", "Source No.");
    CityResultTemp.SETCURRENTKEY("Source Type", "Source No.");

    // Add the following lines.
    TempRec.SETRANGE("Source Type","Source Type");
    TempRec.SETRANGE("Data Type",TempRec."Data Type"::Name);
    TempRec.SETRANGE(Word,COPYSTR(Name,1,20));
    // End of the added lines.

    IF TempRec.FIND('-') THEN
    REPEAT
    NameResultTemp := TempRec;
    ...

    Hiện có mã 2

    ...NameResultTemp.INSERT;
    UNTIL TempRec.NEXT = 0;

    // Delete the following lines.
    TempRec.RESET();
    TempRec.SETRANGE(TempRec."Source Type", "Source Type");
    TempRec.SETRANGE(TempRec."Data Type", TempRec."Data Type"::Street);
    TempRec.SETRANGE(TempRec.Word, COPYSTR(Address,1,20));
    // End of the deleted lines.

    IF TempRec.FIND('-') THEN
    REPEAT
    NameResultTemp.SETRANGE("Source Type",TempRec."Source Type");
    ...

    Thay thế mã 2

    ...NameResultTemp.INSERT;        UNTIL TempRec.NEXT = 0;

    // Add the following lines.
    TempRec.RESET;
    TempRec.SETRANGE("Source Type","Source Type");
    TempRec.SETRANGE("Data Type",TempRec."Data Type"::Street);
    TempRec.SETRANGE(Word,COPYSTR(Address,1,20));
    // End of the added lines.

    IF TempRec.FIND('-') THEN
    REPEAT
    NameResultTemp.SETRANGE("Source Type",TempRec."Source Type");
    ...

    Mã hiện 3

    ...END;
    UNTIL TempRec.NEXT = 0;

    // Delete the following lines.
    TempRec.RESET();
    TempRec.SETRANGE(TempRec."Source Type", "Source Type");
    TempRec.SETRANGE(TempRec."Data Type", TempRec."Data Type"::City);
    TempRec.SETRANGE(TempRec.Word, COPYSTR(City,1,20));
    // End of the deleted lines.

    IF TempRec.FIND('-') THEN
    REPEAT
    AddressResultTemp.SETRANGE("Source Type",TempRec."Source Type");
    ...

    Thay thế mã 3

    ...END;
    UNTIL TempRec.NEXT = 0;

    // Add the following lines.
    TempRec.RESET;
    TempRec.SETRANGE("Source Type","Source Type");
    TempRec.SETRANGE("Data Type",TempRec."Data Type"::City);
    TempRec.SETRANGE(Word,COPYSTR(City,1,20));
    // End of the added lines.

    IF TempRec.FIND('-') THEN
    REPEAT
    AddressResultTemp.SETRANGE("Source Type",TempRec."Source Type");
    ...
  6. Thay đổi mã trong hàm MakeTempfile CBG tuyên bố hòa codeuint (11000006) như sau:
    Mã hiện tại

    ...VAR
    NumberRec@1000000 : Integer;
    RecNumerator@1000001 : Integer;

    // Delete the following line.
    BankAccountCharsToKeep@1000002 : Text[50];

    BEGIN
    BankAccountCharsToKeep := 'ABCDEFGHIJKLMNOPQRSTUVWYXZ0123456789';
    TempRec.RESET();
    ...

    Thay thế mã

    ...VAR
    NumberRec@1000000 : Integer;
    RecNumerator@1000001 : Integer;
    BEGIN
    BankAccountCharsToKeep := 'ABCDEFGHIJKLMNOPQRSTUVWYXZ0123456789';
    TempRec.RESET();
    ...
  7. Thay đổi mã trong hàm GetTransactionModeFilter CBG tuyên bố hòa codeuint (11000006) như sau:
    Hiện có mã 1

    ...LOCAL PROCEDURE GetTransactionModeFilter@1000012(VAR CBGStatementLineRec@1000000 : Record 11401;VAR strFilter@1000001 : Text[250];Account_Type@1000002 : Integer);
    VAR
    CBGStatementRec@1000003 : Record 11400;

    // Delete the following line.
    BankAccountRec@1000004 : Record 270;

    BEGIN
    strFilter := '';
    IF CBGStatementRec.GET(CBGStatementLineRec."Journal Template Name",CBGStatementLineRec."No.") THEN BEGIN
    ...

    Thay thế mã 1

    ...LOCAL PROCEDURE GetTransactionModeFilter@1000012(VAR CBGStatementLineRec@1000000 : Record 11401;VAR strFilter@1000001 : Text[250];Account_Type@1000002 : Integer);
    VAR
    CBGStatementRec@1000003 : Record 11400;
    BEGIN
    strFilter := '';
    IF CBGStatementRec.GET(CBGStatementLineRec."Journal Template Name",CBGStatementLineRec."No.") THEN BEGIN
    ...

    Hiện có mã 2

    ...strFilter := '';
    IF CBGStatementRec.GET(CBGStatementLineRec."Journal Template Name",CBGStatementLineRec."No.") THEN BEGIN
    TransactionModeRec.SETRANGE("Account Type", Account_Type);

    // Delete the following line.
    TransactionModeRec.SETRANGE(TransactionModeRec."Our Bank", CBGStatementRec."Account No.");

    IF TransactionModeRec.FIND('-') THEN BEGIN
    strFilter := '''''';
    REPEAT
    ...

    Thay thế mã 2

    ...strFilter := '';
    IF CBGStatementRec.GET(CBGStatementLineRec."Journal Template Name",CBGStatementLineRec."No.") THEN BEGIN
    TransactionModeRec.SETRANGE("Account Type", Account_Type);

    // Add the following line.
    TransactionModeRec.SETRANGE("Our Bank",CBGStatementRec."Account No.");

    IF TransactionModeRec.FIND('-') THEN BEGIN
    strFilter := '''''';
    REPEAT
    ...
  8. Thay đổi mã trong hàm SetHideMessages CBG tuyên bố hòa codeuint (11000006) như sau:
    Mã hiện tại

    ...HideMessages := HideMessages2;
    END;

    // Delete the following lines.
    BEGIN
    {

    // Bankafschriften matchen, automatisch boekstuk(regels) vereffenen
    }
    // End of the deleted lines.

    END.
    }
    }
    ...

    Thay thế mã

    ...HideMessages := HideMessages2;
    END;

    // Add the following lines.
    LOCAL PROCEDURE AddPossibleBankAccount@1000018(AccountNumber@1000000 : Text[30]);
    BEGIN
    TempBankAccount.INIT;
    TempBankAccount.VALIDATE(TempBankAccount."No.",FORMAT(TempBankAccount.COUNT + 1));
    TempBankAccount.IBAN := LocalFunctionalityMgt.CharacterFilter(AccountNumber,BankAccountCharsToKeep);
    TempBankAccount.INSERT;
    END;

    BEGIN
    // End of the added lines.

    END.
    }
    }
    ...


Điều kiện tiên quyết

Bạn phải có một trong các sản phẩm được cài đặt để áp dụng hotfix này:

  • Phiên bản Microsoft Dynamics NAV 2009 R2 bằng tiếng Hà Lan

  • Phiên bản tiếng Hà Lan của Microsoft Dynamics NAV 2009 SP1

Thông tin về việc loại bỏ

Bạn không thể xoá hotfix này.

Trạng thái

Microsoft đã xác nhận rằng đây là sự cố trong sản phẩm của Microsoft được liệt kê trong phần "Áp dụng cho".

Lưu ý Đây là một bài viết "XUẤT BẢN NHANH" được tạo trực tiếp từ trung tâm hỗ trợ của Microsoft. Thông tin này được cung cấp-trả lời cho các vấn đề mới xuất hiện. Vì nhanh chóng có sẵn, các tài liệu có thể bao gồm lỗi và có thể được sửa đổi bất kỳ lúc nào mà không cần thông báo. Xem Điều khoản sử dụngđể xem xét khác.

Bạn cần thêm trợ giúp?

Bạn muốn xem các tùy chọn khác?

Khám phá các lợi ích của gói đăng ký, xem qua các khóa đào tạo, tìm hiểu cách bảo mật thiết bị của bạn và hơn thế nữa.

Cộng đồng giúp bạn đặt và trả lời các câu hỏi, cung cấp phản hồi và lắng nghe ý kiến từ các chuyên gia có kiến thức phong phú.

Thông tin này có hữu ích không?

Bạn hài lòng đến đâu với chất lượng dịch thuật?
Điều gì ảnh hưởng đến trải nghiệm của bạn?
Khi nhấn gửi, phản hồi của bạn sẽ được sử dụng để cải thiện các sản phẩm và dịch vụ của Microsoft. Người quản trị CNTT của bạn sẽ có thể thu thập dữ liệu này. Điều khoản về quyền riêng tư.

Cảm ơn phản hồi của bạn!

×