تنطبق هذه المقالة على Microsoft Dynamics NAV اللغة اللغة الإنكليزية (en غيغابايت).
الأعراض
عندما تتم فوترة شحنة جزئيا في المملكة المتحدة إصدار Microsoft Dynamics NAV 2009، عرض التقرير "شحنة المخزون" لم تتم فوترتها إجماليات غير صحيح.تحدث هذه المشكلة في المنتجات التالية:
-
المملكة المتحدة إصدار Microsoft Dynamics NAV 2009 Service Pack 1
-
إصدار Microsoft Dynamics NAV 2009 R2 المملكة المتحدة
الحل
معلومات الإصلاح العاجل
الآن يتوفر إصلاح عاجل معتمد من Microsoft. ومع ذلك، هو فقط لتصحيح المشكلة الموضحة في هذه المقالة. تطبيقها فقط على الأنظمة التي تواجه هذه المشكلة بالتحديد. قد يتم إجراء اختبارات إضافية على هذا الإصلاح العاجل. ولذلك، إذا لم يكن تأثير المشكلة كبيرا، نوصي بالانتظار حتى الإصدار التالي من حزمة الخدمة Microsoft Dynamics NAV 2009 أو الإصدار Microsoft Dynamics التنقل التالي الذي يحتوي على هذا الإصلاح العاجل.ملاحظة: في بعض الحالات، يحدد المصروفات التي تحتسب عادة لدعم قد يتم إلغاء المكالمات إذا "أخصائي الدعم التقني" ل Microsoft Dynamics والمنتجات ذات الصلة أن تحديثًا معيناً سوف يعمل على حل المشكلة. سيتم اضافة تكاليف الدعم المعتادة على أسئلة الدعم الإضافية والمشاكل التي لا يأهل على حلها للتحديث المطلوب.
معلومات التثبيت
تقدم Microsoft أمثلة برمجية للتوضيح فقط، دون أي ضمان صريح أو ضمني. هذا يتضمن، على سبيل المثال لا الحصر، الضمانات الضمنية الخاصة بالتسويق أو الملاءمة لغرض معين. تفترض هذه المقالة أنك معتاد على لغة البرمجة التي يتم شرحها والأدوات المستخدمة لإنشاء الإجراءات وتصحيحها. يساعد مهندسو الدعم لدى Microsoft شرح وظيفة إجراء محدد. ومع ذلك، لن يقوموا بتعديل هذه الأمثلة لتقديم وظيفة إضافية أو إنشاء إجراءات تستوفي متطلبات محددة.ملاحظة: قبل تثبيت هذا الإصلاح العاجل، تأكد من تسجيل خروج النظام كافة المستخدمين عميل Microsoft Dynamics التنقل. ويشمل ذلك خدمات Microsoft Dynamics NAV تطبيق الملقم (NAS). يجب أن يكون عميل فقط المستخدم الذي تم تسجيل دخوله عند تطبيق هذا الإصلاح العاجل.لتطبيق هذا الإصلاح العاجل، يجب أن يكون لديك ترخيص مطور.نوصي بأن تعيين حساب المستخدم في إطار عمليات تسجيل دخول Windows أو في إطار "قاعدة بيانات تسجيل الدخول" بمعرف دور "رئيسي". إذا كان حساب المستخدم لا يمكن تعيين معرف دور "سوبر"، يجب التحقق من أن حساب المستخدم يملك الأذونات التالية:
-
إذن "تعديل" للكائن الذي سيتم تغيير.
-
إذن Execute للكائن 5210 معرف كائن النظام و نظام 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 Service Pack 1
-
إصدار Microsoft Dynamics NAV 2009 R2 المملكة المتحدة
معلومات الإزالة
لا يمكنك إزالة هذا الإصلاح العاجل.
الحالة
أقرت Microsoft أن هذه مشكلة في منتجات Microsoft المسردة في قسم "ينطبق على".
ملاحظة: وهذا المقال "النشر السريع" التي تم إنشاؤها مباشرة من داخل مؤسسة دعم Microsoft. وتقدم المعلومات الواردة في هذه الوثيقة كاستجابه للمسائل الناشئة. نتيجة للسرعة في توفيره، قد تتضمن الأخطاء المطبعية المواد ويمكن مراجعة في أي وقت دون سابق إنذار. راجع شروط الاستخداملاعتبارات أخرى.