Triệu chứng
Khi bạn tạo một hóa đơn thanh toán trong Microsoft Dynamics NAV 2009, bạn nhận được thông báo lỗi sau:
"Vụ không. Nhóm phải có giá trị trong tiêu đề bán/mua."
Điều này chỉ xảy ra nếu bạn đã không thiết lập nhóm số cho hoá đơn thanh toán. 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:
-
Microsoft Dynamics NAV 2009 R2
-
Microsoft Dynamics NAV 2009 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:-
Thay đổi mã trong lĩnh vực bán hàng tiêu đề bảng (36) như sau:
Hiện có mã 1... IF "Prepayment No. Series" <> '' THEN BEGIN
SalesSetup.GET; SalesSetup.TESTFIELD("Posted Prepmt. Inv. Nos."); // Delete the following line. NoSeriesMgt.TestSeries(SalesSetup."Posted Prepmt. Inv. Nos.","Prepayment No. Series"); // End of the deleted line. END; TESTFIELD("Prepayment No.",''); END; ...Thay thế mã 1
...IF "Prepayment No. Series" <> '' THEN BEGIN
SalesSetup.GET; SalesSetup.TESTFIELD("Posted Prepmt. Inv. Nos."); // Add the following line. NoSeriesMgt.TestSeries(GetPostingPrepaymentNoSeriesCo,"Prepayment No. Series"); // End of the added line. END; TESTFIELD("Prepayment No.",''); END; ...Hiện có mã 2
...SalesHeader := Rec;
SalesSetup.GET; SalesSetup.TESTFIELD("Posted Prepmt. Inv. Nos."); // Delete the following line. IF NoSeriesMgt.LookupSeries(SalesSetup."Posted Prepmt. Inv. Nos.","Prepayment No. Series") THEN // End of the deleted line. VALIDATE("Prepayment No. Series"); Rec := SalesHeader; END; ...Thay thế mã 2
...
SalesHeader := Rec; SalesSetup.GET; SalesSetup.TESTFIELD("Posted Prepmt. Inv. Nos."); // Add the following line. IF NoSeriesMgt.LookupSeries(GetPostingPrepaymentNoSeriesCo,"Prepayment No. Series") THEN // End of the added line. VALIDATE("Prepayment No. Series"); Rec := SalesHeader; END; ...Mã hiện 3
... IF "Prepmt. Cr. Memo No." <> '' THEN BEGIN
SalesSetup.GET; SalesSetup.TESTFIELD("Posted Prepmt. Cr. Memo Nos."); // Delete the following line. NoSeriesMgt.TestSeries(SalesSetup."Posted Prepmt. Cr. Memo Nos.","Prepmt. Cr. Memo No."); // End of the deleted line. END; TESTFIELD("Prepmt. Cr. Memo No.",''); END; ...Thay thế mã 3
... IF "Prepmt. Cr. Memo No." <> '' THEN BEGIN
SalesSetup.GET; SalesSetup.TESTFIELD("Posted Prepmt. Cr. Memo Nos."); // Add the following line. NoSeriesMgt.TestSeries(GetPostingPrepaymentNoSeriesCo,"Prepmt. Cr. Memo No. Series"); // End of the added line. END; TESTFIELD("Prepmt. Cr. Memo No.",''); END; ...Mã hiện 4
...SalesHeader := Rec;
SalesSetup.GET; SalesSetup.TESTFIELD("Posted Prepmt. Cr. Memo Nos."); // Delete the following lines. IF NoSeriesMgt.LookupSeries(GetPostingNoSeriesCode,"Prepmt. Cr. Memo No.") THEN VALIDATE("Prepmt. Cr. Memo No."); // End of the deleted lines. Rec := SalesHeader; END; END; ...Thay thế mã 4
...SalesHeader := Rec;
SalesSetup.GET; SalesSetup.TESTFIELD("Posted Prepmt. Cr. Memo Nos."); // Add the following lines. IF NoSeriesMgt.LookupSeries(GetPostingPrepaymentNoSeriesCo,"Prepmt. Cr. Memo No. Series") THEN VALIDATE("Prepmt. Cr. Memo No. Series"); // End of the added lines. Rec := SalesHeader; END; END; ... -
Thay đổi mã trong GetPostingPrepaymentNoSeriesCo chức năng trong bán hàng tiêu đề bảng (36) như sau:
Mã hiện tại...EXIT(SalesSetup."Posted Invoice Nos.");
END; LOCAL PROCEDURE TestNoSeriesDate@40(No@1000 : Code[20];NoSeriesCode@1001 : Code[10];NoCapt@1002 : Text[1024];NoSeriesCapt@1004 : Text[1024]); VAR NoSeries@1005 : Record 308; ...Thay thế mã
... EXIT(SalesSetup."Posted Invoice Nos.");
END; // Add the following lines. LOCAL PROCEDURE GetPostingPrepaymentNoSeriesCo@59() : Code[10]; BEGIN IF "Document Type" IN ["Document Type"::"Return Order","Document Type"::"Credit Memo"] THEN EXIT(SalesSetup."Posted Prepmt. Cr. Memo Nos."); EXIT(SalesSetup."Posted Prepmt. Inv. Nos."); END; // End of the added lines. LOCAL PROCEDURE TestNoSeriesDate@40(No@1000 : Code[20];NoSeriesCode@1001 : Code[10];NoCapt@1002 : Text[1024];NoSeriesCapt@1004 : Text[1024]); VAR NoSeries@1005 : Record 308; ... -
Thay đổi mã trong lĩnh vực mua hàng tiêu đề bảng (38) như sau:
Hiện có mã 1...IF "Prepayment No. Series" <> '' THEN BEGIN
PurchSetup.GET; PurchSetup.TESTFIELD("Posted Prepmt. Inv. Nos."); // Delete the following line. NoSeriesMgt.TestSeries(PurchSetup."Posted Prepmt. Inv. Nos.","Prepayment No. Series"); // End of the deleted line. END; TESTFIELD("Prepayment No.",''); END; ...Thay thế mã 1
...IF "Prepayment No. Series" <> '' THEN BEGIN
PurchSetup.GET; PurchSetup.TESTFIELD("Posted Prepmt. Inv. Nos."); // Add the following line. NoSeriesMgt.TestSeries(GetPostingPrepaymentNoSeriesCo,"Prepayment No. Series"); // End of the added line. END; TESTFIELD("Prepayment No.",''); END; ...Hiện có mã 2
...PurchHeader := Rec;
PurchSetup.GET; PurchSetup.TESTFIELD("Posted Prepmt. Inv. Nos."); // Delete the following line. IF NoSeriesMgt.LookupSeries(PurchSetup."Posted Prepmt. Inv. Nos.","Prepayment No. Series") THEN // End of the deleted line. VALIDATE("Prepayment No. Series"); Rec := PurchHeader; END; ...Thay thế mã 2
...PurchHeader := Rec;
PurchSetup.GET; PurchSetup.TESTFIELD("Posted Prepmt. Inv. Nos."); // Add the following line. IF NoSeriesMgt.LookupSeries(GetPostingPrepaymentNoSeriesCo,"Prepayment No. Series") THEN // End of the added line. VALIDATE("Prepayment No. Series"); Rec := PurchHeader; END; ...Mã hiện 3
...IF "Prepmt. Cr. Memo No. Series" <> '' THEN BEGIN
PurchSetup.GET; PurchSetup.TESTFIELD("Posted Prepmt. Cr. Memo Nos."); // Delete the following line. NoSeriesMgt.TestSeries(PurchSetup."Posted Prepmt. Cr. Memo Nos.","Prepmt. Cr. Memo No. Series"); // End of the deleted line. END; // Delete the following line. TESTFIELD("Prepmt. Cr. Memo No. Series",''); // End of the deleted line. END; OnLookup=BEGIN ...Thay thế mã 3
...IF "Prepmt. Cr. Memo No. Series" <> '' THEN BEGIN
PurchSetup.GET; PurchSetup.TESTFIELD("Posted Prepmt. Cr. Memo Nos."); // Add the following line. NoSeriesMgt.TestSeries(GetPostingPrepaymentNoSeriesCo,"Prepmt. Cr. Memo No. Series"); // End of the added line. END; // Add the following line. TESTFIELD("Prepmt. Cr. Memo No.",''); // End of the added line. END; OnLookup=BEGIN ...Mã hiện 4
...PurchHeader := Rec;
PurchSetup.GET; PurchSetup.TESTFIELD("Posted Prepmt. Cr. Memo Nos."); // Delete the following line. IF NoSeriesMgt.LookupSeries(PurchSetup."Posted Prepmt. Cr. Memo Nos.","Prepmt. Cr. Memo No. Series") THEN // End of the deleted line. VALIDATE("Prepmt. Cr. Memo No. Series"); Rec := PurchHeader; END; ...Thay thế mã 4
...PurchHeader := Rec;
PurchSetup.GET; PurchSetup.TESTFIELD("Posted Prepmt. Cr. Memo Nos."); // Add the following line. IF NoSeriesMgt.LookupSeries(GetPostingPrepaymentNoSeriesCo,"Prepmt. Cr. Memo No. Series") THEN // End of the added line. VALIDATE("Prepmt. Cr. Memo No. Series"); Rec := PurchHeader; END; ... -
Thay đổi mã trong GetPostingPrepaymentNoSeriesCo chức năng mua hàng tiêu đề bảng (38) như sau:
Mã hiện tại...EXIT(PurchSetup."Posted Invoice Nos.");
END; LOCAL PROCEDURE TestNoSeriesDate@40(No@1000 : Code[20];NoSeriesCode@1001 : Code[10];NoCapt@1002 : Text[1024];NoSeriesCapt@1004 : Text[1024]); VAR NoSeries@1005 : Record 308; ...Thay thế mã
...EXIT(PurchSetup."Posted Invoice Nos.");
END; // Add the following lines. LOCAL PROCEDURE GetPostingPrepaymentNoSeriesCo@37() : Code[10]; BEGIN IF "Document Type" IN ["Document Type"::"Return Order","Document Type"::"Credit Memo"] THEN EXIT(PurchSetup."Posted Prepmt. Cr. Memo Nos."); EXIT(PurchSetup."Posted Prepmt. Inv. Nos."); END; // End of the added lines. LOCAL PROCEDURE TestNoSeriesDate@40(No@1000 : Code[20];NoSeriesCode@1001 : Code[10];NoCapt@1002 : Text[1024];NoSeriesCapt@1004 : Text[1024]); VAR NoSeries@1005 : Record 308; ...
Đ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:
-
Microsoft Dynamics NAV 2009 R2
-
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.