Преминаване към основното съдържание
Поддръжка
Влизане с Microsoft
Влезте или създайте акаунт.
Здравейте,
Изберете друг акаунт.
Имате няколко акаунта
Изберете акаунта, с който искате да влезете.

В тази статия се отнася за Microsoft Dynamics NAV за езиковата променлива на езика на английски език (en-gb).

Симптоми

Когато пратката частично фактуриране в Великобритания версия на Microsoft Dynamics NAV 2009 склад Експедир отчет показва общите неправилно.

Този проблем възниква в следните продукти:

  • Великобритания версия на Microsoft Dynamics NAV 2009 Service Pack 1

  • Великобритания версия на Microsoft Dynamics NAV 2009 R2


Решение

Информация за актуалната корекция

Вече се предлага от Microsoft предоставя поддържана актуална корекция. Обаче е предназначена само за коригиране на описания в тази статия. Прилагайте корекцията само към системи, изпитващи този конкретен проблем. Възможно е провеждането на допълнителни тестове на тази актуална корекция. Следователно ако не сте силно засегнати от този проблем, препоръчваме да изчакате следващия сервизен пакет за Microsoft Dynamics NAV 2009 или следващата версия на Microsoft Dynamics NAV, който ще съдържа тази корекция.

Забележка: При специални случаи таксите, които са за свързани с поддръжката обаждания могат да бъдат отменени, ако специалист по техническа поддръжка за Microsoft Dynamics и свързани с тях продукти определя, че конкретна актуализация може да разреши проблема. Обичайните такси за поддръжката ще важат за допълнителни въпроси и проблеми, които не спадат към съответната актуализация.

Информация за инсталирането

Microsoft предоставя примери само за илюстративни цели без гаранция за определени цели. Това включва, но не е ограничено до, подразбиращи се гаранции за продаваемост или годност за определена цел. Тази статия се предполага, че сте запознати с демонстрирания език за програмиране и инструментите, които се използват за създаване и процедури за отстраняване на грешки. Инженерите на поддръжката на Microsoft могат да помогнат обяснение на функциите на конкретна процедура. Въпреки това те няма да модифицират тези примери с цел осигуряване на допълнителна функционалност или създаване на процедури за удовлетворение на конкретните ви изисквания.

Забележка: Преди да инсталирате тази актуална корекция, уверете се, че всички потребители на клиента на Microsoft Dynamics NAV са излезли от системата. Това включва и услуги на Microsoft Dynamics NAV приложение сървър (NAS). Трябва да бъде само клиент потребител, който е влязъл при прилагане на тази актуална корекция.

За прилагане на тази актуална корекция, трябва да имате лиценз разработчик.

Препоръчително е потребителският акаунт в прозореца влизания в Windows или в прозореца на БД присвояването на "Супер" ИД на роля. Ако потребителският акаунт не може да бъде възложена ИД на роля на "Супер", трябва да проверите, че потребителският акаунт има следните права:

  • Разрешение за промяна на обекта, ще се променя.

  • Разрешението за изпълнение за системата обект номер 5210 обект и системата обект ID 9015

    обект.

Забележка: Не трябва да имате права на съхранените данни, освен ако трябва да извършите възстановяване на данни.

Промени код

Забележка: Винаги тест код поправки в управлявана среда преди да приложите корекциите производство компютри.

За да разрешите този проблем, изпълнете следните стъпки:

  1. Промяна на кода на данни елемент номер 1 в наличност, предоставени не фактурирана отчет (10541) както следва:
    Съществуващ код

    ...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");
    ...

    Замени код

    ...OnPreDataItem=BEGIN
    CurrReport.CREATETOTALS("Value Entry"."Cost Amount (Actual)","Value Entry"."Invoiced Quantity");
    ...
  2. Промяна кода на данни елемент раздели в наличност предоставени номер 1 не фактурирана отчет (10541) както следва:
    Съществуващ код 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__ }
    ...

    Замени код 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__ }
    ...

    Съществуващ код 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__ }
    ...

    Замени код 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__ }
    ...

    Съществуващ код 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 }
    ...

    Замени код 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 }
    ...

    Съществуващ код 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 }
    ...

    Замени код 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. Промяна кода на данни елемент номер 2 в наличност изпратени не фактурирана отчет (10541) както следва:
    Съществуващ код 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;
    ...

    Замени код 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;
    ...

    Съществуващ код 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;
    ...

    Замени код 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. Промяна на кода на данни елемент номер 2 секции в наличност, предоставени не фактурирана отчет (10541) както следва:
    Съществуващ код 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__ }
    ...

    Замени код 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__ }
    ...

    Съществуващ код 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 }
    ...

    Замени код 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 }
    ...

    Съществуващ код 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 }
    ...

    Замени код 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. Промяна кода на данни елемент номер 3 в наличност изпратени не фактурирана отчет (10541) както следва:
    Съществуващ код

    ...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
    ...

    Замени код

    ...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. Промяна кода на данни елемент номер 4 в наличност изпратени не фактурирана отчет (10541) както следва:
    Съществуващ код

    ...DataItemTable=Table2000000026;

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

    DataItemVarName=ItemTotal;
    ...

    Замени код

    ...DataItemTable=Table2000000026;

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

    DataItemVarName=ItemTotal;
    ...
  7. Промяна на кода на данни елемент номер 4 секции в наличност, предоставени не фактурирана отчет (10541) както следва:
    Съществуващ код 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 }
    ...

    Замени код 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 }
    ...

    Съществуващ код 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 }
    ...

    Замени код 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 }
    ...

    Съществуващ код 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 }
    ...

    Замени код 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. Промяна на кода на променливите в наличност, предоставени не фактурирана отчет (10541) както следва:
    Съществуващ код 1

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

    Замени код 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.

    ...

    Съществуващ код 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>
    ...

    Замени код 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>
    ...

    Съществуващ код 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>
    ...

    Замени код 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>
    ...

    Съществуващ код 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>
    ...

    Замени код 4

    ...</Style>

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

    <ZIndex>37</ZIndex>
    ...

    Съществуващ код 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>
    ...

    Замени код 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>
    ...

    Съществуващ код 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>
    ...

    Замени код 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>
    ...

    Съществуващ код 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>
    ...

    Замени код 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>
    ...

    Съществуващ код 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>
    ...

    Замени код 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>
    ...

    Съществуващ код 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>
    ...

    Замени код 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>
    ...

    Съществуващ код 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>
    ...

    Замени код 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>
    ...

    Съществуващ код 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>
    ...

    Замени код 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>
    ...

    Съществуващ код 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>
    ...

    Замени код 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>
    ...

    Съществуващ код 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>
    ...

    Замени код 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>
    ...

    Съществуващ код 14

    ...</Style>

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

    <ZIndex>18</ZIndex>
    ...

    Замени код 14

    ...</Style>

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

    <ZIndex>18</ZIndex>
    ...

    Съществуващ код 15

    ...</Style>

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

    <ZIndex>17</ZIndex>
    ...

    Замени код 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>
    ...

    Съществуващ код 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>
    ...

    Замени код 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>
    ...

    Съществуващ код 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>
    ...

    Замени код 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>
    ...

    Съществуващ код 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>
    ...

    Замени код 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>
    ...

    Съществуващ код 19

    ...</Style>

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

    <ZIndex>27</ZIndex>
    ...

    Замени код 19

    ...</Style>

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

    <ZIndex>27</ZIndex>
    ...

    Съществуващ код 20

    ...</Style>

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

    <ZIndex>26</ZIndex>
    ...

    Замени код 20

    ...</Style>

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

    <ZIndex>26</ZIndex>
    ...

    Съществуващ код 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>
    ...

    Замени код 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>
    ...

    Съществуващ код 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>
    ...

    Замени код 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>
    ...

    Съществуващ код 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>
    ...

    Замени код 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>

    Съществуващ код 24

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

    Замени код 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. Промяна на кода на данни елемент номер 2 секции в наличност, предоставени не фактурирана отчет (10541) както следва


Необходими условия:

Трябва да имате един от следните продукти, за да приложите тази спешна корекция:

  • Великобритания версия на Microsoft Dynamics NAV 2009 Service Pack 1

  • Великобритания версия на Microsoft Dynamics NAV 2009 R2

Информация за премахване

Не можете да премахнете тази актуална корекция.

Статус

Microsoft потвърждава, че това е проблем в продуктите на Microsoft, изброени в раздела "Отнася се за".

Забележка: Това е статия "Бърза публикация", създадени директно от организацията за поддръжка на Microsoft. Информацията тук се предоставя "както-е" в отговор на появили се проблеми. В резултат на скоростта на предоставянето му материалите могат да съдържат печатни грешки и могат да бъдат коригирани по всяко време без предизвестие. Вижте Условияза други съображения.

Нуждаете ли се от още помощ?

Искате ли още опции?

Разгледайте ползите от абонамента, прегледайте курсовете за обучение, научете как да защитите устройството си и още.

Общностите ви помагат да задавате и отговаряте на въпроси, да давате обратна връзка и да получавате информация от експерти с богати знания.

Беше ли полезна тази информация?

Доколко сте доволни от качеството на езика?
Какво е повлияло на вашия потребителски опит?
Като натиснете „Подаване“, вашата обратна връзка ще се използва за подобряване на продуктите и услугите на Microsoft. Вашият ИТ администратор ще може да събира тези данни. Декларация за поверителност.

Благодарим ви за обратната връзка!

×