Logga in med Microsoft
Logga in eller skapa ett konto.
Hej,
Välj ett annat konto.
Du har flera konton
Välj det konto som du vill logga in med.

Den här artikeln gäller för Microsoft Dynamics NAV för språk engelska (en-gb).

Symptom

När leveransen faktureras delvis i Förenade kungariket-versionen av Microsoft Dynamics NAV 2009, visar rapporten lager levererat ej fakturerat summorna felaktiga.

Det här problemet uppstår i följande produkter:

  • Förenade kungariket-versionen av Microsoft Dynamics NAV 2009 Service Pack 1

  • Förenade kungariket-versionen av Microsoft Dynamics NAV 2009 R2


Lösning

Information om snabbkorrigeringen

En snabbkorrigering är nu tillgänglig från Microsoft. Den är endast avsedd att åtgärda det problem som beskrivs i denna artikel. Använd den bara på datorer där detta problem uppstår. Snabbkorrigeringen kan komma att testas igen. Om inte störs alltför mycket av detta problem rekommenderar vi att du väntar på Nästa service pack-versionen för Microsoft Dynamics NAV 2009 eller nästa Microsoft Dynamics NAV-version som innehåller den här snabbkorrigeringen.

Obs! I särskilda fall, de avgifter som är normalt för support vara avgiftsfri om en supporttekniker för Microsoft Dynamics och relaterade produkter som bestämmer att en särskild uppdatering kan lösa ditt problem. De vanliga supportkostnaderna gäller för övriga supportfrågor och problem som inte berör den särskilda uppdateringen.

Installationsinformation

Microsoft tillhandahåller programmeringsexempel endast utan garanti varken uttryckliga eller underförstådda. Detta inkluderar men är inte begränsat till, underförstådda garantier om säljbarhet eller lämplighet för ett särskilt ändamål. Den här artikeln förutsätter att du är bekant med det programmeringsspråk som demonstreras och de verktyg som används för att skapa och felsöka procedurer. Microsofts supporttekniker kan hjälpa till att förklara funktionen hos en viss procedur. De kommer inte ändra dessa exempel för att ge ytterligare funktioner eller skapa procedurer som motsvarar dina speciella behov.

Obs! Innan du installerar den här snabbkorrigeringen måste du kontrollera att alla användare i Microsoft Dynamics NAV-klienten har loggat ut. Detta omfattar tjänster för Microsoft Dynamics NAV Application Server (NAS). Du ska endast klientanvändare som är inloggad när du implementerar den här snabbkorrigeringen.

Om du vill genomföra den här snabbkorrigeringen måste du ha en utvecklarlicens.

Vi rekommenderar att tilldelas användarkontot i fönstret Windows-inloggningar eller i fönstret databasinloggningar "SUPER" roll-ID. Om användarkontot inte kan tilldelas "SUPER" roll-ID måste du kontrollera att användarkontot har följande behörigheter:

  • Ändra behörighet för objektet ändras.

  • Körbehörighet för systemet objektet ID 5210 objekt och System objektet ID 9015

    objektet.

Obs! Du har inte behörighet för datalager inte data reparation.

Kod ändras

Obs! Alltid åtgärdas testa koden i en kontrollerad miljö innan du installerar korrigeringar för produktionsdatorer.

Lös problemet så här:

  1. Ändra koden i Data objekt nummer 1 i lager levererat fakturerat ej rapport (10541) enligt följande:
    Befintlig kod

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

    Ersättningskod

    ...OnPreDataItem=BEGIN
    CurrReport.CREATETOTALS("Value Entry"."Cost Amount (Actual)","Value Entry"."Invoiced Quantity");
    ...
  2. Ändra koden i Data objekt nummer 1 avsnitt i lager levererat fakturerat ej rapport (10541) enligt följande:
    Befintlig kod 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__ }
    ...

    Ersättningskod 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__ }
    ...

    Befintlig kod 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__ }
    ...

    Ersättningskod 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__ }
    ...

    Befintlig kod 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 }
    ...

    Ersättningskod 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 }
    ...

    Befintlig kod 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 }
    ...

    Ersättningskod 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. Ändra koden i Data objekt nummer 2 i lager levererat fakturerat ej rapport (10541) enligt följande:
    Befintlig kod 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;
    ...

    Ersättningskod 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;
    ...

    Befintlig kod 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;
    ...

    Ersättningskod 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. Ändra koden i Data objekt nummer 2 avsnitt i lager levererat fakturerat ej rapport (10541) enligt följande:
    Befintlig kod 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__ }
    ...

    Ersättningskod 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__ }
    ...

    Befintlig kod 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 }
    ...

    Ersättningskod 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 }
    ...

    Befintlig kod 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 }
    ...

    Ersättningskod 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. Ändra koden i Data objekt nummer 3 i lager levererat fakturerat ej rapport (10541) enligt följande:
    Befintlig kod

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

    Ersättningskod

    ...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. Ändra koden i Data objekt nummer 4 i lager levererat fakturerat ej rapport (10541) enligt följande:
    Befintlig kod

    ...DataItemTable=Table2000000026;

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

    DataItemVarName=ItemTotal;
    ...

    Ersättningskod

    ...DataItemTable=Table2000000026;

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

    DataItemVarName=ItemTotal;
    ...
  7. Ändra koden i Data objekt nummer 4 avsnitt i lager levererat fakturerat ej rapport (10541) enligt följande:
    Befintlig kod 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 }
    ...

    Ersättningskod 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 }
    ...

    Befintlig kod 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 }
    ...

    Ersättningskod 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 }
    ...

    Befintlig kod 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 }
    ...

    Ersättningskod 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. Ändra koden i globala variabler i lager levererat fakturerat ej rapport (10541) enligt följande:
    Befintlig kod 1

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

    Ersättningskod 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.

    ...

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

    Ersättningskod 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>
    ...

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

    Ersättningskod 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>
    ...

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

    Ersättningskod 4

    ...</Style>

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

    <ZIndex>37</ZIndex>
    ...

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

    Ersättningskod 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>
    ...

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

    Ersättningskod 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>
    ...

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

    Ersättningskod 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>
    ...

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

    Ersättningskod 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>
    ...

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

    Ersättningskod 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>
    ...

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

    Ersättningskod 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>
    ...

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

    Ersättningskod 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>
    ...

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

    Ersättningskod 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>
    ...

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

    Ersättningskod 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>
    ...

    Befintlig kod 14

    ...</Style>

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

    <ZIndex>18</ZIndex>
    ...

    Ersättningskod 14

    ...</Style>

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

    <ZIndex>18</ZIndex>
    ...

    Befintlig kod 15

    ...</Style>

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

    <ZIndex>17</ZIndex>
    ...

    Ersättningskod 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>
    ...

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

    Ersättningskod 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>
    ...

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

    Ersättningskod 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>
    ...

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

    Ersättningskod 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>
    ...

    Befintlig kod 19

    ...</Style>

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

    <ZIndex>27</ZIndex>
    ...

    Ersättningskod 19

    ...</Style>

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

    <ZIndex>27</ZIndex>
    ...

    Befintlig kod 20

    ...</Style>

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

    <ZIndex>26</ZIndex>
    ...

    Ersättningskod 20

    ...</Style>

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

    <ZIndex>26</ZIndex>
    ...

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

    Ersättningskod 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>
    ...

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

    Ersättningskod 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>
    ...

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

    Ersättningskod 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>

    Befintlig kod 24

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

    Ersättningskod 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. Ändra koden i Data objekt nummer 2 avsnitt i lager levererat fakturerat ej rapport (10541) enligt följande


Förutsättningar

Du måste ha någon av följande produkter som har installerat den här snabbkorrigeringen:

  • Förenade kungariket-versionen av Microsoft Dynamics NAV 2009 Service Pack 1

  • Förenade kungariket-versionen av Microsoft Dynamics NAV 2009 R2

Information om borttagning

Du kan inte ta bort den här snabbkorrigeringen.

Status

Microsoft har bekräftat att detta är ett problem i Microsoft-produkterna som nämns i avsnittet "Gäller".

Obs! Detta är en "SNABBPUBLICERING"-artikel skapad direkt från Microsoft support-organisationen. Informationen häri tillhandahålls i befintligt skick som svar på nya problem. Till följd av hastigheten för att göra det tillgängligt kan materialet innehålla typografiska fel och kan ändras när som helst utan föregående meddelande. Se Villkoren för användningför andra överväganden.

Behöver du mer hjälp?

Vill du ha fler alternativ?

Utforska prenumerationsförmåner, bläddra bland utbildningskurser, lär dig hur du skyddar din enhet med mera.

Communities hjälper dig att ställa och svara på frågor, ge feedback och få råd från experter med rika kunskaper.

Hade du nytta av den här informationen?

Hur nöjd är du med språkkvaliteten?
Vad påverkade din upplevelse?
Genom att trycka på skicka, kommer din feedback att användas för att förbättra Microsofts produkter och tjänster. IT-administratören kan samla in denna data. Sekretesspolicy.

Tack för din feedback!

×