この資料は、語のロケールが英語 (en gb) には、Microsoft Dynamics NAV に適用されます。
現象
出荷が部分的に請求を行うと Microsoft Dynamics NAV 2009 年の英国のバージョンでは、請求用紙が同梱されていないレポートは、不正な合計を表示します。この問題は、次の製品で発生します。
-
英国バージョンの Microsoft Dynamics NAV 2009 サービス パック 1
-
Microsoft Dynamics NAV 2009 の R2 の英国バージョン
解決策
修正プログラムの情報
サポートされている修正プログラムはマイクロソフトから現在入手可能です。ただし、この資料に記載されている問題を解決するためのものはのみ。この特定の問題が発生したシステムにのみ適用してください。この修正プログラムは、今後さらにテストを行うことがあります。この問題で深刻な影響を受けていない場合は、次の Microsoft Dynamics NAV 2009 サービス パックまたは修正プログラムを含む次の Microsoft Dynamics NAV バージョン待つことを勧めします。注: かかる料金が免除されるテクニカル サポート担当者 Microsoft Dynamics および関連製品のことは、通常は特別な場合は、特定の更新プログラムは、問題を解決するにを決定します。追加の質問および問題の特定のアップデートの対象にはなりませんが、通常のサポート料金が適用されます。
インストール情報
マイクロソフトでは解説することのみを目的としてプログラミング例を提供しています。暗示あるいは明示していることに対しての保証はしておりません。ここで言う保証とは、特定の目的に対する商品性や適合性の暗示的保証を含んでいますが、それに限定されるわけではありません。この資料では、例示されているプログラミング言語およびプロシージャの作成やデバッグに使用するツールにお客様が精通していることを前提としています。マイクロソフトのサポート エンジニアは、特定のプロシージャの機能について説明することができます。ただし、お客様固有の要件を満たすために、追加機能の提供またはプロシージャの作成のために、これらの例に変更を加えたりはしません。注: この修正プログラムをインストールする前に、Microsoft Dynamics NAV のすべてのクライアント ユーザーがシステムの電源を記録することを確認します。これには、Microsoft Dynamics NAV アプリケーション サーバー (NAS) のサービスが含まれます。この修正プログラムを実装すると、ログオンしている唯一のクライアント ユーザーが必要です。この修正プログラムを実装するには、開発者用のライセンスが必要です。ユーザー アカウントまたはデータベース ログイン ウィンドウに Windows のログイン ウィンドウにある「スーパー」ロール id を割り当てられていることをお勧めします。ユーザー アカウントには、「スーパー」ロール ID を割り当てることができません、する場合は、ユーザー アカウントが次のアクセス許可を持っているを確認する必要があります。
-
変更するオブジェクトの変更のアクセス許可。
-
実行のアクセス許可、システム オブジェクトの ID 5210オブジェクトおよびシステム オブジェクトの ID 9015オブジェクトです。
注: データの修復を実行する必要があるない限り、データ ストアへの権限を持っている必要はありません。
コードの変更
注: 常にテスト コードを修正、管理された環境で適用する前に、運用コンピューターに修正プログラムします。 この問題を解決するには、次の手順を実行します。
-
在庫出荷でのデータ項目数 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");...
-
在庫出荷では、データ アイテム数 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 }...
-
在庫出荷でのデータ項目番号 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;...
-
在庫出荷では、データ項目番号 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 }...
-
在庫出荷でのデータ項目数 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...
-
在庫出荷でのデータ項目数 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;...
-
在庫出荷では、データ項目数 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 }...
-
在庫出荷でのグローバル変数内のコードの変更未請求レポート (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">---------
-
在庫出荷では、データ項目番号 2 セクション内のコードの変更レポート (10541) の次のように請求しません。
必要条件
この修正プログラムを適用するのにはインストールされている製品は次のいずれかが必要です。
-
英国バージョンの Microsoft Dynamics NAV 2009 サービス パック 1
-
Microsoft Dynamics NAV 2009 の R2 の英国バージョン
アンインストール情報
この修正プログラムを削除することはできません。
状況
マイクロソフトは、この問題を「対象製品」セクションに記載されているマイクロソフト製品の問題として認識しています。
注: これは、マイクロソフト サポートの組織内から直接作成した「高速公開」の資料です。ここに含まれる情報は、新たに発生している問題に応じて現状のまま提供されています。速やかに利用できるようにした結果として、内容には誤植が含まれている可能性があり、事前告知なしで改訂する場合があります。その他の考慮事項については、使用条件を参照してください。