Masuk dengan Microsoft
Masuk atau buat akun.
Halo,
Pilih akun lain.
Anda memiliki beberapa akun
Pilih akun yang ingin Anda gunakan untuk masuk.

Artikel ini berlaku untuk Microsoft Dynamics NAV untuk bahasa Inggris (en-gb) lokal.

Gejala

Saat pengiriman sebagian faktur dalam versi Inggris dari Microsoft Dynamics NAV 2009, laporan dikirimkan saham menerima faktur tidak menampilkan Total salah.

Masalah ini terjadi di dalam produk berikut ini:

  • Versi Inggris dari Microsoft Dynamics NAV 2009 Paket Layanan 1

  • Versi Inggris dari Microsoft Dynamics NAV 2009 R2


Pemecahan masalah

Informasi Hotfix

Sekarang tersedia hotfix yang didukung dari Microsoft. Namun, hanya ditujukan untuk memperbaiki masalah yang dijelaskan di artikel ini. Terapkan hanya ke sistem yang mengalami masalah khusus ini. Perbaikan terbaru ini dapat menerima pengujian tambahan. Oleh karena itu, jika Anda tidak terlalu dipengaruhi oleh masalah ini, kami sarankan Anda menunggu paket layanan Microsoft Dynamics NAV 2009 atau versi Microsoft Dynamics NAV berikutnya yang berisi perbaikan terbaru ini.

Catatan Dalam kasus tertentu, biaya yang biasanya diadakan untuk panggilan mungkin dibatalkan apabila profesional dukungan teknis untuk Microsoft Dynamics dan produk-produk terkait dukungan menentukan bahwa pembaruan khusus akan memecahkan masalah Anda. Biaya dukungan biasa akan berlaku untuk pertanyaan dan masalah yang tidak termasuk pada pembaruan tertentu yang dimaksud dukungan tambahan.

Informasi penginstalan

Microsoft menyediakan contoh pemrogaman hanya untuk ilustrasi, tanpa garansi baik tersurat maupun tersirat. Ini mencakup, namun tidak terbatas pada, garansi yang tersirat dapat diperjualbelikan atau kesesuaian untuk tujuan tertentu. Artikel ini menganggap bahwa Anda sudah terbiasa dengan bahasa pemrograman yang ditunjukkan dan terbiasa dengan alat-alat yang digunakan untuk membuat dan prosedur debug. Teknisi dukungan Microsoft dapat membantu menjelaskan fungsionalitas prosedur tertentu. Namun, mereka tidak akan mengubah contoh tersebut untuk memberikan fungsionalitas tambahan atau menyusun prosedur untuk memenuhi persyaratan khusus Anda.

Catatan Sebelum Anda menginstal perbaikan terbaru ini, verifikasi bahwa semua pengguna klien Microsoft Dynamics NAV log off sistem. Ini termasuk layanan Microsoft Dynamics NAV aplikasi Server (NAS). Anda harus klien hanya pengguna yang masuk saat Anda menerapkan perbaikan terbaru ini.

Untuk menerapkan hotfix ini, Anda harus memiliki lisensi pengembang.

Kami menyarankan bahwa akun pengguna di jendela login Windows atau jendela login Database ditetapkan id peran "SUPER" Jika account pengguna tidak dapat menetapkan ID peran "SUPER", Anda harus memverifikasi bahwa account pengguna yang memiliki izin berikut ini:

  • Ubah izin untuk objek yang Anda akan berubah.

  • Izin eksekusi untuk objek sistem objek ID 5210 dan sistem objek ID 9015

    objek.

Catatan Anda tidak harus memiliki hak untuk penyimpanan data kecuali jika Anda harus melakukan perbaikan data.

Perubahan kode

Catatan Selalu menguji kode perbaikan di lingkungan yang dikontrol sebelum menerapkan perbaikan untuk komputer produksi.

Untuk mengatasi masalah ini, ikuti langkah-langkah berikut:

  1. Ubah kode Data Item nomor 1 dalam saham dikirimkan tidak menerima faktur laporan (10541) sebagai berikut:
    Kode yang ada

    ...OnPreDataItem=BEGIN

    // Delete the following lines.
    CurrReport.CREATETOTALS(
    "Item Ledger Entry".Quantity,"Item Ledger Entry"."Invoiced Quantity","Item Ledger Entry"."Cost Amount (Expected)");
    // End of the deleted lines.

    CurrReport.CREATETOTALS("Value Entry"."Cost Amount (Actual)","Value Entry"."Invoiced Quantity");
    ...

    Penggantian kode

    ...OnPreDataItem=BEGIN
    CurrReport.CREATETOTALS("Value Entry"."Cost Amount (Actual)","Value Entry"."Invoiced Quantity");
    ...
  2. Ubah kode di Data Item nomor 1 bagian saham dikirimkan tidak menerima faktur laporan (10541) sebagai berikut:
    Kode yang ada 1

    ...ENG=Rec. not invoiced];

    // Delete the following lines.
    SourceExpr="Item Ledger Entry".Quantity - "Item Ledger Entry"."Invoiced Quantity";
    DataSetFieldName=Item_Ledger_Entry__Quantity____Item_Ledger_Entry___Invoiced_Quantity_ }
    { 1040033;TextBox ;9150 ;0 ;1800 ;423 ;FontBold=Yes;
    SourceExpr="Item Ledger Entry".Quantity;
    DataSetFieldName=Item_Ledger_Entry__Quantity }
    { 1040038;TextBox ;11100;0 ;1800 ;423 ;FontBold=Yes;
    SourceExpr="Item Ledger Entry"."Invoiced Quantity";
    DataSetFieldName=Item_Ledger_Entry___Invoiced_Quantity_ }
    { 1040039;TextBox ;13050;0 ;1800 ;423 ;FontBold=Yes;
    SourceExpr="Item Ledger Entry"."Cost Amount (Expected)";
    // End of the deleted lines.

    DataSetFieldName=Item_Ledger_Entry___Cost_Amount__Expected__ }
    ...

    Penggantian kode 1

    ...ENG=Rec. not invoiced];

    // Add the following lines.
    SourceExpr=ItemQuantity;
    DataSetFieldName=Item_Ledger_Entry__Quantity____Item_Ledger_Entry___Invoiced_Quantity_ }
    { 1040033;TextBox ;9150 ;0 ;1800 ;423 ;FontBold=Yes;
    SourceExpr=ItemShippedQty;
    DataSetFieldName=Item_Ledger_Entry__Quantity }
    { 1040038;TextBox ;11100;0 ;1800 ;423 ;FontBold=Yes;
    SourceExpr=ItemInvoicedQty;
    DataSetFieldName=Item_Ledger_Entry___Invoiced_Quantity_ }
    { 1040039;TextBox ;13050;0 ;1800 ;423 ;FontBold=Yes;
    SourceExpr=ItemCostAmtExpected;
    // End of the added lines.

    DataSetFieldName=Item_Ledger_Entry___Cost_Amount__Expected__ }
    ...

    Kode yang ada 2

    ...ENG=Rec. not invoiced];

    // Delete the following line.
    SourceExpr="Item Ledger Entry"."Cost Amount (Expected)" - "Value Entry"."Cost Amount (Actual)";
    // End of the deleted line.

    DataSetFieldName=Item_Ledger_Entry___Cost_Amount__Expected______Value_Entry___Cost_Amount__Actual__ }
    ...

    Penggantian kode 2

    ...ENG=Rec. not invoiced];

    // Add the following line.
    SourceExpr=ItemCostAmount;
    // End of the added line.

    DataSetFieldName=Item_Ledger_Entry___Cost_Amount__Expected______Value_Entry___Cost_Amount__Actual__ }
    ...

    Kode yang ada 3

    ...ENG=Rec. not invoiced];

    // Delete the following lines.
    SourceExpr="Item Ledger Entry".Quantity - "Item Ledger Entry"."Invoiced Quantity";
    DataSetFieldName=Item_Ledger_Entry__Quantity____Item_Ledger_Entry___Invoiced_Quantity__Control1040065 }
    { 1040066;TextBox ;9150 ;423 ;1800 ;423 ;FontSize=7;
    FontBold=Yes;
    SourceExpr="Item Ledger Entry".Quantity;
    DataSetFieldName=Item_Ledger_Entry__Quantity_Control1040066 }
    { 1040067;TextBox ;11100;423 ;1800 ;423 ;FontSize=7;
    FontBold=Yes;
    SourceExpr="Item Ledger Entry"."Invoiced Quantity";
    DataSetFieldName=Item_Ledger_Entry___Invoiced_Quantity__Control1040067 }
    { 1040068;TextBox ;13050;423 ;1800 ;423 ;FontSize=7;
    FontBold=Yes;
    SourceExpr="Item Ledger Entry"."Cost Amount (Expected)";
    // End of the deleted lines.

    DataSetFieldName=Item_Ledger_Entry___Cost_Amount__Expected___Control1040068 }
    ...

    Penggantian kode 3

    ...ENG=Rec. not invoiced];

    // Add the following lines.
    SourceExpr=ItemQuantityTotal;
    DataSetFieldName=Item_Ledger_Entry__Quantity____Item_Ledger_Entry___Invoiced_Quantity__Control1040065 }
    { 1040066;TextBox ;9150 ;423 ;1800 ;423 ;FontSize=7;
    FontBold=Yes;
    SourceExpr=ItemShippedQtyTotal;
    DataSetFieldName=Item_Ledger_Entry__Quantity_Control1040066 }
    { 1040067;TextBox ;11100;423 ;1800 ;423 ;FontSize=7;
    FontBold=Yes;
    SourceExpr=ItemInvoicedQtyTotal;
    DataSetFieldName=Item_Ledger_Entry___Invoiced_Quantity__Control1040067 }
    { 1040068;TextBox ;13050;423 ;1800 ;423 ;FontSize=7;
    FontBold=Yes;
    SourceExpr=ItemCostAmtExpectedTotal;
    // End of the added lines.

    DataSetFieldName=Item_Ledger_Entry___Cost_Amount__Expected___Control1040068 }
    ...

    Ada kode 4

    ...ENG=Rec. not invoiced];

    // Delete the following line.
    SourceExpr="Item Ledger Entry"."Cost Amount (Expected)" - "Value Entry"."Cost Amount (Actual)";
    // End of the deleted line.

    DataSetFieldName=Item_Ledger_Entry___Cost_Amount__Expected______Value_Entry___Cost_Amount__Actual___Control1040069 }
    ...

    Penggantian kode 4

    ...ENG=Rec. not invoiced];

    // Add the following line.
    SourceExpr=ItemCostAmountTotal;
    // End of the added line.

    DataSetFieldName=Item_Ledger_Entry___Cost_Amount__Expected______Value_Entry___Cost_Amount__Actual___Control1040069 }
    ...
  3. Ubah kode di Data Item nomor 2 di saham dikirimkan tidak menerima faktur laporan (10541) sebagai berikut:
    Kode yang ada 1

    ...DataItemTable=Table32;

    // Delete the following lines.
    DataItemTableView=SORTING(Item No.,Positive,Completely Invoiced,Last Invoice Date,Location Code,Variant Code)
    WHERE(Completely Invoiced=CONST(No),
    Entry Type=CONST(Sale));
    OnPreDataItem=BEGIN
    IF EndDate <> 0D THEN
    SETRANGE("Posting Date",0D,EndDate);
    // End of the deleted lines.

    END;
    ...

    Penggantian kode 1

    ...DataItemTable=Table32;

    // Add the following lines.
    DataItemTableView=SORTING(Item No.,Positive,Completely Invoiced,Last Invoice Date,Location Code,Variant Code) WHERE(Completely Invoiced=CONST(No), Entry Type=CONST(Sale));
    OnPreDataItem=BEGIN
    IF EndDate <> 0D THEN
    SETRANGE("Posting Date",0D,EndDate);

    ItemQuantity := 0;
    ItemCostAmount := 0;
    ItemShippedQty := 0;
    ItemInvoicedQty := 0;
    ItemCostAmtExpected := 0;
    // End of the added lines.

    END;
    ...

    Kode yang ada 2

    ...NoOfItems := NoOfItems + 1;

    // Delete the following lines.
    CurrReport.CREATETOTALS(Quantity,"Invoiced Quantity","Item Ledger Entry"."Cost Amount (Expected)");
    CurrReport.CREATETOTALS("Value Entry"."Cost Amount (Actual)","Value Entry"."Invoiced Quantity");
    // End of the deleted lines.

    END;
    ...

    Penggantian kode 2

    ...NoOfItems := NoOfItems + 1;

    // Add the following lines.
    CurrReport.CREATETOTALS("Value Entry"."Cost Amount (Actual)","Value Entry"."Invoiced Quantity");

    ItemQuantity += Quantity - "Invoiced Quantity";
    ItemCostAmount += "Cost Amount (Expected)";
    ItemShippedQty += Quantity;
    ItemInvoicedQty += "Invoiced Quantity";
    ItemCostAmtExpected += "Cost Amount (Expected)";

    ItemQuantityTotal += Quantity - "Invoiced Quantity";
    ItemCostAmountTotal += "Cost Amount (Expected)";
    ItemShippedQtyTotal += Quantity;
    ItemInvoicedQtyTotal += "Invoiced Quantity";
    ItemCostAmtExpectedTotal += "Cost Amount (Expected)";
    // End of the added lines.

    END;
    ...
  4. Ubah kode di Data Item nomor 2 bagian saham dikirimkan tidak menerima faktur laporan (10541) sebagai berikut:
    Kode yang ada 1

    ...{ 1040074;TextBox   ;9150 ;0    ;1800 ;423  ;FontBold=Yes;

    // Delete the following lines.
    SourceExpr="Item Ledger Entry".Quantity;
    DataSetFieldName=Item_Ledger_Entry__Item_Ledger_Entry__Quantity }
    { 1040075;TextBox ;11100;0 ;1800 ;423 ;FontBold=Yes;
    SourceExpr="Item Ledger Entry"."Invoiced Quantity";
    DataSetFieldName=Item_Ledger_Entry__Item_Ledger_Entry___Invoiced_Quantity_ }
    { 1040076;TextBox ;13050;0 ;1800 ;423 ;FontBold=Yes;
    SourceExpr="Item Ledger Entry"."Cost Amount (Expected)";
    // End of the deleted lines.

    DataSetFieldName=Item_Ledger_Entry__Item_Ledger_Entry___Cost_Amount__Expected__ }
    ...

    Penggantian kode 1

    ...{ 1040074;TextBox   ;9150 ;0    ;1800 ;423  ;FontBold=Yes;

    // Add the following lines.
    SourceExpr=ItemShippedQty;
    DataSetFieldName=Item_Ledger_Entry__Item_Ledger_Entry__Quantity }
    { 1040075;TextBox ;11100;0 ;1800 ;423 ;FontBold=Yes;
    SourceExpr=ItemInvoicedQty;
    DataSetFieldName=Item_Ledger_Entry__Item_Ledger_Entry___Invoiced_Quantity_ }
    { 1040076;TextBox ;13050;0 ;1800 ;423 ;FontBold=Yes;
    SourceExpr=ItemCostAmtExpected;
    // End of the added lines.

    DataSetFieldName=Item_Ledger_Entry__Item_Ledger_Entry___Cost_Amount__Expected__ }
    ...

    Kode yang ada 2

    ...ENG=Quantity];

    // Delete the following line.
    SourceExpr="Item Ledger Entry".Quantity - "Item Ledger Entry"."Invoiced Quantity";
    // End of the deleted line.

    DataSetFieldName=Item_Ledger_Entry__Quantity____Item_Ledger_Entry___Invoiced_Quantity__Control1040080 }
    ...

    Penggantian kode 2

    ...ENG=Quantity];

    // Add the following line.
    SourceExpr=ItemQuantity;
    // End of the added line.

    DataSetFieldName=Item_Ledger_Entry__Quantity____Item_Ledger_Entry___Invoiced_Quantity__Control1040080 }
    ...

    Kode yang ada 3

    ...ENG=Cost];

    // Delete the following line.
    SourceExpr="Item Ledger Entry"."Cost Amount (Expected)" - "Value Entry"."Cost Amount (Actual)";
    // End of the deleted line.

    DataSetFieldName=Item_Ledger_Entry___Cost_Amount__Expected______Value_Entry___Cost_Amount__Actual___Control1040081 }
    ...

    Penggantian kode 3

    ...ENG=Cost];

    // Add the following line.
    SourceExpr=ItemCostAmount;
    // End of the added line.

    DataSetFieldName=Item_Ledger_Entry___Cost_Amount__Expected______Value_Entry___Cost_Amount__Actual___Control1040081 }
    ...
  5. Ubah kode di Data Item nomor 3 di saham dikirimkan tidak menerima faktur laporan (10541) sebagai berikut:
    Kode yang ada

    ...DataItemTable=Table5802;

    // Delete the following lines.
    DataItemTableView=SORTING(Item Ledger Entry No.,Expected Cost,Document No.,Partial Revaluation,Entry Type,Variance Type)
    WHERE(Inventoriable=CONST(Yes),
    Expected Cost=CONST(No));
    // End of the deleted lines.

    OnPreDataItem=BEGIN
    ...

    Penggantian kode

    ...DataItemTable=Table5802;

    // Add the following line.
    DataItemTableView=SORTING(Item Ledger Entry No.,Expected Cost,Document No.,Partial Revaluation,Entry Type,Variance Type) WHERE(Inventoriable=CONST(Yes), Expected Cost=CONST(No));
    // End of the added line.

    OnPreDataItem=BEGIN
    ...
  6. Ubah kode di Data Item nomor 4 di saham dikirimkan tidak menerima faktur laporan (10541) sebagai berikut:
    Kode yang ada

    ...DataItemTable=Table2000000026;

    // Delete the following lines.
    DataItemTableView=SORTING(Number)
    WHERE(Number=CONST(1));
    // End of the deleted lines.

    DataItemVarName=ItemTotal;
    ...

    Penggantian kode

    ...DataItemTable=Table2000000026;

    // Add the following line.
    DataItemTableView=SORTING(Number) WHERE(Number=CONST(1));
    // End of the added line.

    DataItemVarName=ItemTotal;
    ...
  7. Ubah kode di Data Item nomor 4 bagian saham dikirimkan tidak menerima faktur laporan (10541) sebagai berikut:
    Kode yang ada 1

    ...{ 1040032;TextBox   ;9150 ;0    ;1800 ;423  ;FontBold=Yes;

    // Delete the following lines.
    SourceExpr="Item Ledger Entry".Quantity;
    DataSetFieldName=Item_Ledger_Entry__Quantity_Control1040032 }
    { 1040034;TextBox ;11100;0 ;1800 ;423 ;FontBold=Yes;
    SourceExpr="Item Ledger Entry"."Invoiced Quantity";
    DataSetFieldName=Item_Ledger_Entry___Invoiced_Quantity__Control1040034 }
    { 1040035;TextBox ;13050;0 ;1800 ;423 ;FontBold=Yes;
    SourceExpr="Item Ledger Entry"."Cost Amount (Expected)";
    // End of the deleted lines.

    DataSetFieldName=Item_Ledger_Entry___Cost_Amount__Expected___Control1040035 }
    ...

    Penggantian kode 1

    ...{ 1040032;TextBox   ;9150 ;0    ;1800 ;423  ;FontBold=Yes;

    // Add the following lines.
    SourceExpr=ItemShippedQty;
    DataSetFieldName=Item_Ledger_Entry__Quantity_Control1040032 }
    { 1040034;TextBox ;11100;0 ;1800 ;423 ;FontBold=Yes;
    SourceExpr=ItemInvoicedQty;
    DataSetFieldName=Item_Ledger_Entry___Invoiced_Quantity__Control1040034 }
    { 1040035;TextBox ;13050;0 ;1800 ;423 ;FontBold=Yes;
    SourceExpr=ItemCostAmtExpected;
    // End of the added lines.

    DataSetFieldName=Item_Ledger_Entry___Cost_Amount__Expected___Control1040035 }
    ...

    Kode yang ada 2

    ...ENG=Quantity];

    // Delete the following line.
    SourceExpr="Item Ledger Entry".Quantity - "Item Ledger Entry"."Invoiced Quantity";
    // End of the deleted line.

    DataSetFieldName=Item_Ledger_Entry__Quantity____Item_Ledger_Entry___Invoiced_Quantity__Control1040040 }
    ...

    Penggantian kode 2

    ...ENG=Quantity];

    // Add the following line.
    SourceExpr=ItemQuantity;
    // End of the added line.

    DataSetFieldName=Item_Ledger_Entry__Quantity____Item_Ledger_Entry___Invoiced_Quantity__Control1040040 }
    ...

    Kode yang ada 3

    ...ENG=Cost];

    // Delete the following line.
    SourceExpr="Item Ledger Entry"."Cost Amount (Expected)" - "Value Entry"."Cost Amount (Actual)";
    // End of the deleted line.

    DataSetFieldName=Item_Ledger_Entry___Cost_Amount__Expected______Value_Entry___Cost_Amount__Actual___Control1040058 }
    ...

    Penggantian kode 3

    ...ENG=Cost];

    // Add the following line.
    SourceExpr=ItemCostAmount;
    // End of the added line.

    DataSetFieldName=Item_Ledger_Entry___Cost_Amount__Expected______Value_Entry___Cost_Amount__Actual___Control1040058 }
    ...
  8. Ubah kode di variabel Global di saham dikirimkan tidak menerima faktur laporan (10541) sebagai berikut:
    Kode yang ada 1

    ...NoOfItems@1040006 : Integer;
    ...

    Penggantian kode 1

    ...NoOfItems@1040006 : Integer;

    // Add the following lines.
    ItemQuantity@1040007 : Decimal;
    ItemCostAmount@1040008 : Decimal;
    ItemShippedQty@1040009 : Decimal;
    ItemInvoicedQty@1040010 : Decimal;
    ItemCostAmtExpected@1040011 : Decimal;
    ItemQuantityTotal@1040012 : Decimal;
    ItemCostAmountTotal@1040013 : Decimal;
    ItemShippedQtyTotal@1040014 : Decimal;
    ItemInvoicedQtyTotal@1040015 : Decimal;
    ItemCostAmtExpectedTotal@1040016 : Decimal;
    // End of the added lines.

    ...

    Kode yang ada 2

    ...</Style>

    // Delete the following line.
    <Value>=Sum(Fields!Item_Ledger_Entry__Item_Ledger_Entry__Quantity.Value)-Sum(Fields!Item_Ledger_Entry__Item_Ledger_Entry___Invoiced_Quantity_.Value)</Value>
    // End of the deleted line.

    <ZIndex>39</ZIndex>
    ...

    Penggantian kode 2

    ...</Style>

    // Add the following line.
    <Value>=Last(Fields!Item_Ledger_Entry__Quantity____Item_Ledger_Entry___Invoiced_Quantity__Control1040065.Value)</Value>
    // End of the added line.

    <ZIndex>39</ZIndex>
    ...

    Kode yang ada 3

    ...</Style>

    // Delete the following line.
    <Value>=Sum(Fields!Item_Ledger_Entry__Item_Ledger_Entry___Cost_Amount__Expected__.Value)-Sum(Fields!Value_Entry__Cost_Amount__Actual__.Value)</Value>
    // End of the deleted line.

    <ZIndex>38</ZIndex>
    ...

    Penggantian kode 3

    ...</Style>

    // Add the following line.
    <Value>=Last(Fields!Item_Ledger_Entry___Cost_Amount__Expected______Value_Entry___Cost_Amount__Actual___Control1040069.Value)</Value>
    // End of the added line.

    <ZIndex>38</ZIndex>
    ...

    Ada kode 4

    ...</Style>

    // Delete the following line.
    <Value>=Sum(Fields!Item_Ledger_Entry__Item_Ledger_Entry__Quantity.Value)</Value>
    // End of the deleted line.

    <ZIndex>37</ZIndex>
    ...

    Penggantian kode 4

    ...</Style>

    // Add the following line.
    <Value>=Last(Fields!Item_Ledger_Entry__Quantity_Control1040066.Value)</Value>
    // End of the added line.

    <ZIndex>37</ZIndex>
    ...

    Ada kode 5

    ...</Style>

    // Delete the following line.
    <Value>=Sum(Fields!Item_Ledger_Entry__Item_Ledger_Entry___Invoiced_Quantity_.Value)</Value>
    // End of the deleted line.

    <ZIndex>36</ZIndex>
    ...

    Penggantian kode 5

    ...</Style>

    // Add the following line.
    <Value>=Last(Fields!Item_Ledger_Entry___Invoiced_Quantity__Control1040067.Value)</Value>
    // End of the added line.

    <ZIndex>36</ZIndex>
    ...

    Kode yang ada 6

    ...</Style>

    // Delete the following line.
    <Value>=Sum(Fields!Item_Ledger_Entry__Item_Ledger_Entry___Cost_Amount__Expected__.Value)</Value>
    // End of the deleted line.

    <ZIndex>35</ZIndex>
    ...

    Penggantian kode 6

    ...</Style>

    // Add the following line.
    <Value>=Last(Fields!Item_Ledger_Entry___Cost_Amount__Expected___Control1040068.Value)</Value>
    // End of the added line.

    <ZIndex>35</ZIndex>
    ...

    Kode yang ada 7

    ...</Style>

    // Delete the following line.
    <Value>=Sum(Fields!Item_Ledger_Entry__Quantity____Item_Ledger_Entry___Invoiced_Quantity__Control1040080.Value)</Value>
    // End of the deleted line.

    <ZIndex>12</ZIndex>
    ...

    Penggantian kode 7

    ...</Style>

    // Add the following line.
    <Value>=Last(Fields!Item_Ledger_Entry__Quantity____Item_Ledger_Entry___Invoiced_Quantity__Control1040080.Value)</Value>
    // End of the added line.

    <ZIndex>12</ZIndex>
    ...

    Kode yang ada 8

    ...</Style>

    // Delete the following line.
    <Value>=Sum(Fields!Item_Ledger_Entry__Cost_Amount__Expected__.Value)-Sum(Fields!Value_Entry__Cost_Amount__Actual__.Value)</Value>
    // End of the deleted line.

    <ZIndex>11</ZIndex>
    ...

    Penggantian kode 8

    ...</Style>

    // Add the following line.
    <Value>=Last(Fields!Item_Ledger_Entry___Cost_Amount__Expected______Value_Entry___Cost_Amount__Actual___Control1040081.Value)</Value>
    // End of the added line.

    <ZIndex>11</ZIndex>
    ...

    Kode yang ada 9

    ...</Style>

    // Delete the following line.
    <Value>=Sum(Fields!Item_Ledger_Entry__Item_Ledger_Entry__Quantity.Value)</Value>
    // End of the deleted line.

    <ZIndex>10</ZIndex>
    ...

    Penggantian kode 9

    ...</Style>

    // Add the following line.
    <Value>=Last(Fields!Item_Ledger_Entry__Item_Ledger_Entry__Quantity.Value)</Value>
    // End of the added line.

    <ZIndex>10</ZIndex>
    ...

    Kode yang ada 10

    ...</Style>

    // Delete the following line.
    <Value>=Sum(Fields!Item_Ledger_Entry__Item_Ledger_Entry___Invoiced_Quantity_.Value)</Value>
    // End of the deleted line.

    <ZIndex>9</ZIndex>
    ...

    Penggantian kode 10

    ...</Style>

    // Add the following line.
    <Value>=Last(Fields!Item_Ledger_Entry__Item_Ledger_Entry___Invoiced_Quantity_.Value)</Value>
    // End of the added line.

    <ZIndex>9</ZIndex>
    ...

    Kode yang ada 11

    ...</Style>

    // Delete the following line.
    <Value>=Sum(Fields!Item_Ledger_Entry__Item_Ledger_Entry___Cost_Amount__Expected__.Value)</Value>
    // End of the deleted line.

    <ZIndex>8</ZIndex>
    ...

    Penggantian kode 11

    ...</Style>

    // Add the following line.
    <Value>=Last(Fields!Item_Ledger_Entry__Item_Ledger_Entry___Cost_Amount__Expected__.Value)</Value>
    // End of the added line.

    <ZIndex>8</ZIndex>
    ...

    Ada kode 12

    ...</Style>

    // Delete the following line.
    <Value>=Sum(Fields!Item_Ledger_Entry_Quantity.Value)-Sum(Fields!Item_Ledger_Entry__Invoiced_Quantity_.Value)</Value>
    // End of the deleted line.

    <ZIndex>20</ZIndex>
    ...

    Penggantian kode 12

    ...</Style>

    // Add the following line.
    <Value>=Last(Fields!Item_Ledger_Entry__Quantity____Item_Ledger_Entry___Invoiced_Quantity__Control1040040.Value)</Value>
    // End of the added line.

    <ZIndex>20</ZIndex>
    ...

    Kode yang ada 13

    ...</Style>

    // Delete the following line.
    <Value>=Sum(Fields!Item_Ledger_Entry__Cost_Amount__Expected__.Value)-Sum(Fields!Value_Entry__Cost_Amount__Actual__.Value)</Value>
    // End of the deleted line.

    <ZIndex>19</ZIndex>
    ...

    Penggantian kode 13

    ...</Style>

    // Add the following line.
    <Value>=Last(Fields!Item_Ledger_Entry___Cost_Amount__Expected______Value_Entry___Cost_Amount__Actual___Control1040058.Value)</Value>
    // End of the added line.

    <ZIndex>19</ZIndex>
    ...

    Kode yang ada 14

    ...</Style>

    // Delete the following line.
    <Value>=Sum(Fields!Item_Ledger_Entry_Quantity.Value)</Value>
    // End of the deleted line.

    <ZIndex>18</ZIndex>
    ...

    Penggantian kode 14

    ...</Style>

    // Add the following line.
    <Value>=Last(Fields!Item_Ledger_Entry__Quantity_Control1040032.Value)</Value>
    // End of the added line.

    <ZIndex>18</ZIndex>
    ...

    Kode yang ada 15

    ...</Style>

    // Delete the following line.
    <Value>=Sum(Fields!Item_Ledger_Entry__Invoiced_Quantity_.Value)</Value>
    // End of the deleted line.

    <ZIndex>17</ZIndex>
    ...

    Penggantian kode 15

    ...</Style>

    // Add the following line.
    <Value>=Last(Fields!Item_Ledger_Entry___Invoiced_Quantity__Control1040034.Value)</Value>
    // End of the added line.

    <ZIndex>17</ZIndex>
    ...

    Kode yang ada 16

    ...</Style>

    // Delete the following line.
    <Value>=Sum(Fields!Item_Ledger_Entry__Cost_Amount__Expected__.Value)</Value>
    // End of the deleted line.

    <ZIndex>16</ZIndex>
    ...

    Penggantian kode 16

    ...</Style>

    // Add the following line.
    <Value>=Last(Fields!Item_Ledger_Entry___Cost_Amount__Expected___Control1040035.Value)</Value>
    // End of the added line.

    <ZIndex>16</ZIndex>
    ...

    Kode yang ada 17

    ...</Style>

    // Delete the following line.
    <Value>=Sum(Fields!Item_Ledger_Entry_Quantity.Value)-Sum(Fields!Item_Ledger_Entry__Invoiced_Quantity_.Value)</Value>
    // End of the deleted line.

    <ZIndex>29</ZIndex>
    ...

    Penggantian kode 17

    ...</Style>

    // Add the following line.
    <Value>=Last(Fields!Item_Ledger_Entry__Quantity____Item_Ledger_Entry___Invoiced_Quantity_.Value)</Value>
    // End of the added line.

    <ZIndex>29</ZIndex>
    ...

    Kode yang ada 18

    ...</Style>

    // Delete the following line.
    <Value>=Sum(Fields!Item_Ledger_Entry__Cost_Amount__Expected__.Value)-Sum(Fields!Value_Entry__Cost_Amount__Actual__.Value)</Value>
    // End of the deleted line.

    <ZIndex>28</ZIndex>
    ...

    Penggantian kode 18

    ...</Style>

    // Add the following line.
    <Value>=Last(Fields!Item_Ledger_Entry___Cost_Amount__Expected______Value_Entry___Cost_Amount__Actual__.Value)</Value>
    // End of the added line.

    <ZIndex>28</ZIndex>
    ...

    Kode yang ada 19

    ...</Style>

    // Delete the following line.
    <Value>=Sum(Fields!Item_Ledger_Entry_Quantity.Value)</Value>
    // End of the deleted line.

    <ZIndex>27</ZIndex>
    ...

    Penggantian kode 19

    ...</Style>

    // Add the following line.
    <Value>=Last(Fields!Item_Ledger_Entry__Quantity.Value)</Value>
    // End of the added line.

    <ZIndex>27</ZIndex>
    ...

    Kode yang ada 20

    ...</Style>

    // Delete the following line.
    <Value>=Sum(Fields!Item_Ledger_Entry__Invoiced_Quantity_.Value)</Value>
    // End of the deleted line.

    <ZIndex>26</ZIndex>
    ...

    Penggantian kode 20

    ...</Style>

    // Add the following line.
    <Value>=Last(Fields!Item_Ledger_Entry___Invoiced_Quantity_.Value)</Value>
    // End of the added line.

    <ZIndex>26</ZIndex>
    ...

    Kode yang ada 21

    ...</Style>

    // Delete the following line.
    <Value>=Sum(Fields!Item_Ledger_Entry__Cost_Amount__Expected__.Value)</Value>
    // End of the deleted line.

    <ZIndex>25</ZIndex>
    ...

    Penggantian kode 21

    ...</Style>

    // Add the following line.
    <Value>=Last(Fields!Item_Ledger_Entry___Cost_Amount__Expected__.Value)</Value>
    // End of the added line.

    <ZIndex>25</ZIndex>
    ...

    Kode yang ada 22

    ...</Field>

    // Delete the following lines.
    <Field Name="Item_Ledger_Entry__Quantity____Item_Ledger_Entry___Invoiced_Quantity__Control1040065Format">
    <DataField>Item_Ledger_Entry__Quantity____Item_Ledger_Entry___Invoiced_Quantity__Control1040065Format</DataField>
    // End of the deleted lines.

    </Field>
    ...

    Penggantian kode 22

    ...</Field>

    // Add the following lines.
    <Field Name="Item_Ledger_Entry__Quantity____Item_Ledger_Entry___Invoiced_Quantity__Control1040065">
    <DataField>Item_Ledger_Entry__Quantity____Item_Ledger_Entry___Invoiced_Quantity__Control1040065</DataField>
    </Field>
    <Field Name="Item_Ledger_Entry__Quantity____Item_Ledger_Entry___Invoiced_Quantity__Control1040065Format">
    <DataField>Item_Ledger_Entry__Quantity____Item_Ledger_Entry___Invoiced_Quantity__Control1040065Format</DataField>
    </Field>
    <Field Name="Item_Ledger_Entry__Quantity_Control1040066">
    <DataField>Item_Ledger_Entry__Quantity_Control1040066</DataField>
    // End of the added lines.

    </Field>
    ...

    Kode yang ada 23

    ...</Field>

    // Delete the following lines.
    <Field Name="Item_Ledger_Entry___Invoiced_Quantity__Control1040067Format">
    <DataField>Item_Ledger_Entry___Invoiced_Quantity__Control1040067Format</DataField>
    // End of the deleted lines.

    </Field>
    ...

    Penggantian kode 23

    ...</Field>

    // Add the following lines.
    <Field Name="Item_Ledger_Entry___Invoiced_Quantity__Control1040067">
    <DataField>Item_Ledger_Entry___Invoiced_Quantity__Control1040067</DataField>
    </Field>
    <Field Name="Item_Ledger_Entry___Invoiced_Quantity__Control1040067Format">
    <DataField>Item_Ledger_Entry___Invoiced_Quantity__Control1040067Format</DataField>
    </Field>
    <Field Name="Item_Ledger_Entry___Cost_Amount__Expected___Control1040068">
    <DataField>Item_Ledger_Entry___Cost_Amount__Expected___Control1040068</DataField>
    // End of the added lines.

    </Field>

    Kode yang ada 24

    ...</Field>
    <Field Name="Item_Ledger_Entry___Cost_Amount__Expected______Value_Entry___Cost_Amount__Actual___Control1040069Format">
    ------

    Kode penggantian 24

    ...</Field>

    // Add the following lines.
    <Field Name="Item_Ledger_Entry___Cost_Amount__Expected______Value_Entry___Cost_Amount__Actual___Control1040069">
    <DataField>Item_Ledger_Entry___Cost_Amount__Expected______Value_Entry___Cost_Amount__Actual___Control1040069</DataField>
    </Field>
    // End of the added lines.

    <Field Name="Item_Ledger_Entry___Cost_Amount__Expected______Value_Entry___Cost_Amount__Actual___Control1040069Format">
    ---------
  9. Ubah kode di Data Item nomor 2 bagian saham dikirimkan tidak menerima faktur laporan (10541) sebagai berikut


Prasyarat

Anda harus memiliki salah satu produk berikut ini diinstal untuk menerapkan perbaikan terbaru ini:

  • Versi Inggris dari Microsoft Dynamics NAV 2009 Paket Layanan 1

  • Versi Inggris dari Microsoft Dynamics NAV 2009 R2

Informasi penghapusan

Anda tidak dapat menghapus hotfix ini.

Status

Microsoft telah memastikan bahwa ini merupakan masalah di dalam produk Microsoft sebagaimana tercantum di bagian "Berlaku untuk".

Catatan Ini adalah artikel "Penerbitan cepat" dibuat langsung dari dalam organisasi dukungan Microsoft. Informasi yang terkandung di dalamnya disediakan sebagai tanggapan masalah yang muncul. Sebagai akibat dari kecepatan untuk menjadikannya tersedia, materi dapat mengandung kesalahan ketik dan dapat direvisi setiap saat tanpa pemberitahuan. Lihat Ketentuanuntuk pertimbangan lainnya.

Perlu bantuan lainnya?

Ingin opsi lainnya?

Jelajahi manfaat langganan, telusuri kursus pelatihan, pelajari cara mengamankan perangkat Anda, dan banyak lagi.

Komunitas membantu Anda bertanya dan menjawab pertanyaan, memberikan umpan balik, dan mendengar dari para ahli yang memiliki pengetahuan yang luas.

Apakah informasi ini berguna?

Seberapa puaskah Anda dengan kualitas bahasanya?
Apa yang memengaruhi pengalaman Anda?
Dengan menekan kirim, umpan balik Anda akan digunakan untuk meningkatkan produk dan layanan Microsoft. Admin TI Anda akan dapat mengumpulkan data ini. Pernyataan Privasi.

Terima kasih atas umpan balik Anda!

×