חל על
Microsoft Dynamics NAV 2009 R2 Dynamics NAV 2009 Service Pack 1

מאמר זה חל על Microsoft Dynamics ניווט עבור האזור שפה איטלקית (אותו).

בעיה זו מתרחשת אם להציב ולהחיל החזר כספי על הזיכוי הלקוח. בעיה זו מתרחשת במוצרים הבאים:

  • גירסת Microsoft Dynamics NAV 2009 R2 איטלקית

  • גירסת Microsoft Dynamics NAV 2009 Service Pack 1 איטלקי

פתרון

מידע על תיקונים חמים

תיקון חם נתמך זמין כעת מ- Microsoft. עם זאת, הוא מיועד רק לתיקון הבעיה המתוארת במאמר זה. יש להחיל אותו רק במערכות שהתעוררה בהן בעיה ספציפית זו. תיקון חם זה עשוי לעבור בדיקות נוספות. לכן, אם המערכת שברשותך לא נפגעה באופן חמור מבעיה זו, מומלץ להמתין ל- Microsoft Dynamics NAV 2009 service pack הבאה או גירסת Microsoft Dynamics NAV הבא המכיל תיקון חם זה.הערה במקרים מיוחדים, שהצגת עבור שיחות עשויים לבטל אם מומחה תמיכה טכנית עבור Microsoft Dynamics ומוצרים קשורים יקבע שעדכון ספציפי יפתור את הבעיה. דמי התמיכה המקובלים יחולו על נוספים שאלות וסוגיות תמיכה אשר אינן מצריכות העדכון הספציפי האמור.

מידע על ההתקנה

מיקרוסופט מציעה דוגמאות תכנות לצורך ההדגמה בלבד, ללא אחריות, בין מפורשת ובין משתמעת. זה כולל, אך אינו מוגבל ל, אחריות מכללא לגבי סחירות או התאמה למטרה מסוימת. מאמר זה מבוסס על ההנחה שאתה מכיר את שפת התכנות המודגמת ובקי בהפעלת הכלים המשמשים ליצירת פרוצדורות ולניפוי שגיאות. מהנדסי התמיכה של Microsoft יכולים לסייע בהסברת הפונקציונליות של פרוצדורה מסוימת. עם זאת, הם לא ישנו את הדוגמאות כדי לספק פונקציונליות נוספת או כדי לבנות פרוצדורות שיענו על צרכיך הספציפיים.הערה לפני התקנת תיקון חם זה, ודא כי כל המשתמשים לקוח Microsoft Navision אינם מחוברים למערכת. זה כולל משתמשים לקוח של שירותי היישום של Microsoft Navision (NAS). אתה אמור להיות לקוח בלבד המשתמש המחובר כאשר ליישם תיקון חם זה.כדי ליישם תיקון חם זה, דרוש לך רשיון מפתחים.אנו ממליצים חשבון המשתמש בחלון כניסות Windows או בחלון מסד הנתונים כניסות יוקצו את מזהה תפקיד "סופר". אם חשבון המשתמש אין אפשרות להקצות מזהה תפקיד של "עילי", עליך לוודא כי חשבון משתמש בעל ההרשאות הבאות:

  • שנה את ההרשאה עבור האובייקט שינוי.

  • הרשאת Execute עבור האובייקט 5210 מזהה אובייקט מערכת ועבור האובייקט 9015 מזהה האובייקט של המערכת .

הערה אין לך הרשאות למאגרי נתונים אלא אם כן יש לך לבצע תיקון נתונים.

שינויי קוד

הערה תמיד מחשב תיקונים קוד בסביבה מבוקרת לפני שתחיל את התיקונים שלך במחשבי ההפקה. כדי לפתור בעיה זו, שנה את הקוד בהדוח רשימת לקוחות שטרות (12117) באופן הבא:

קוד קיים 1

...        OnAfterGetRecord=BEGIN                           CALCFIELDS("Amount (LCY)","Remaining Amt. (LCY)");// Delete the following line.                           IF ((OnlyOpened) OR ("Document Type" IN ["Document Type"::Payment,"Document Type"::"Credit Memo","Document Type"::" "])) AND                             ("Remaining Amt. (LCY)" = 0)                           THEN                             CurrReport.SKIP;...

קוד החלפה 1

...        OnAfterGetRecord=BEGIN                           CALCFIELDS("Amount (LCY)","Remaining Amt. (LCY)");// Add the following line.                           IF ((OnlyOpened) OR ("Document Type" IN ["Document Type"::Payment,"Document Type"::Refund,"Document Type"::" "])) AND                             ("Remaining Amt. (LCY)" = 0)                           THEN                             CurrReport.SKIP;...

קוד קיים 2

...                           RemainingAmountLCY := 0;                           ExposureAmount := 0;// Delete the following lines.                            IF ("Document Type" = "Document Type"::Invoice) OR                               ("Document Type" = "Document Type"::"Finance Charge Memo") OR                               ("Document Type" = "Document Type"::Reminder)                           THEN BEGIN                             IF ("Bank Receipt Issued") AND                                ("Due Date" > ExposureDate)...

קוד החלפה 2

...                           RemainingAmountLCY := 0;                           ExposureAmount := 0;// Add the following lines.                            IF "Document Type" IN                               ["Document Type"::Invoice,                                "Document Type"::"Credit Memo",                                "Document Type"::"Finance Charge Memo",                                "Document Type"::Reminder]// End of the lines.                           THEN BEGIN                             IF ("Bank Receipt Issued") AND                                ("Due Date" > ExposureDate)...

קוד קיים 3

...                      END;        OnAfterGetRecord=BEGIN                           // IT0015.begin                           //VSTF275923 begin                           // VSTF305887.begin...

קוד החלפה 3

...        OnAfterGetRecord=BEGIN// Add the following lines.                            IF ("Entry No." = 0) OR ("Unapplied by Entry No." <> 0) OR                               ("Document Type" IN                               ["Document Type"::Payment,"Document Type"::Refund,"Document Type"::Dishonored,"Document Type"::" "])                            THEN                              ShowDetailedCustLedgerEntry := TRUE                            ELSE                              ShowDetailedCustLedgerEntry := FALSE;// End of the lines.                           // IT0015.begin                           //VSTF275923 begin                           // VSTF305887.begin...

קוד קיים 4

...            SectionWidth=24450;            SectionHeight=846;            OnPreSection=BEGIN// Delete the following lines.                            // IT0009.begin                            // IT0012.begin                            IF (CustLedgEntry1."Document Type" = CustLedgEntry1."Document Type"::Payment) OR                               (CustLedgEntry1."Document Type" = CustLedgEntry1."Document Type"::"Credit Memo") OR                               //VSTF275923 begin                               (CustLedgEntry1."Document Type" = CustLedgEntry1."Document Type"::Dishonored) OR                               //VSTF275923 end                               (CustLedgEntry1."Document Type" = CustLedgEntry1."Document Type"::" ") OR                               ("Unapplied by Entry No." <> 0)                            THEN                            // IT0012.end                              CurrReport.SHOWOUTPUT(FALSE)                            ELSE                              CurrReport.SHOWOUTPUT(TRUE);                            // IT0009.end                            // IT0010.begin                            //IF ("Unapplied by Entry No." <> 0) THEN                            //  CurrReport.SHOWOUTPUT(FALSE);                            // IT0010.end// End of the lines.                         END;          }...

קוד החלפה 4

...            SectionWidth=24450;            SectionHeight=846;            OnPreSection=BEGIN// Add the following line.                           CurrReport.SHOWOUTPUT(ShowDetailedCustLedgerEntry)                         END;          }...

קוד קיים 5

...                                                         ForeColor=65535;                                                         SourceExpr="Document Type" = "Document Type"::Dishonored;                                                         DataSetFieldName=Document_Type_____Document_Type___Dishonored }          }           }        { PROPERTIES...

קוד החלפה 5

...                                                         ForeColor=65535;                                                         SourceExpr="Document Type" = "Document Type"::Dishonored;                                                         DataSetFieldName=Document_Type_____Document_Type___Dishonored }// add the following lines.             { 1130123;TextBox   ;24000;0    ;150  ;423  ;Visible=No;                                                          SourceExpr=ShowDetailedCustLedgerEntry;                                                          DataSetFieldName=ShowDetailedCustLedgerEntry }// End of the lines.          }           }        { PROPERTIES...

קוד קיים 6

...      NULL@1130013 : DateFormula;      CustLedgEntry3@1130130 : Record 21;      PrintCustLedgEntry2@1130014 : Boolean;    BEGIN    {...

קוד החלפה 6

...      NULL@1130013 : DateFormula;      CustLedgEntry3@1130130 : Record 21;      PrintCustLedgEntry2@1130014 : Boolean;// Add the following line.      ShowDetailedCustLedgerEntry@1130015 : Boolean INDATASET;    BEGIN    {...

קוד קיים 7

...                  </TableRows>                </Header>                <Visibility>// Delete the following line.                  <Hidden>=IIF(Fields!Detailed_Cust__Ledg__Entry_Cust__Ledger_Entry_No_.Value = 0,true,false)</Hidden>                </Visibility>              </TableGroup>            </TableGroups>...

קוד החלפה 7

...                  </TableRows>                </Header>                <Visibility>// Add the following line.                  <Hidden>=IIF(Fields!ShowDetailedCustLedgerEntry.Value,TRUE,FALSE)</Hidden>                </Visibility>              </TableGroup>            </TableGroups>...

קוד קיים 8

...        <Field Name="Detailed_Cust__Ledg__Entry_Cust__Ledger_Entry_No_">          <DataField>Detailed_Cust__Ledg__Entry_Cust__Ledger_Entry_No_</DataField>        </Field>      </Fields>      <Query>        <CommandText />...

קוד החלפה 8

...        <Field Name="Detailed_Cust__Ledg__Entry_Cust__Ledger_Entry_No_">          <DataField>Detailed_Cust__Ledg__Entry_Cust__Ledger_Entry_No_</DataField>        </Field>// Add the following lines.         <Field Name="ShowDetailedCustLedgerEntry">           <DataField>ShowDetailedCustomerLedgerEntry</DataField>         </Field>// end of the lines.      </Fields>      <Query>        <CommandText />...

דרישות מוקדמות

עליך להגדיר אחד מהמוצרים הבאים מותקנים כדי להחיל תיקון חם זה:

  • גירסת Microsoft Dynamics NAV 2009 R2 איטלקית

  • גירסת Microsoft Dynamics NAV 2009 Service Pack 1 איטלקי

מידע בדבר הסרת ההתקנה

אין אפשרות להסיר את התיקון החם.

מצב

Microsoft אישרה כי מדובר בבעיה במוצרי Microsoft הרשומים במקטע 'חל על'.

הערה זהו מאמר "פרסום מהיר" שנוצר ישירות בתוך ארגון התמיכה של Microsoft. המידע הכלול במסמך זה מסופק כמו שהוא כתגובה לבעיות המתעוררות. כתוצאה מהמהירות בביצוע כדי להפוך אותו לזמין, החומרים עשויים לכלול שגיאות טיפוגרפיות וייתכן שיבוצעו בהם שינויים בכל עת ללא הודעה מוקדמת. ראה תנאי השימוש שיקולים נוספים.

זקוק לעזרה נוספת?

מעוניין באפשרויות נוספות?

גלה את יתרונות המנוי, עיין בקורסי הדרכה, למד כיצד לאבטח את המכשיר שלך ועוד.