Bei Microsoft anmelden
Melden Sie sich an, oder erstellen Sie ein Konto.
Hallo,
Wählen Sie ein anderes Konto aus.
Sie haben mehrere Konten.
Wählen Sie das Konto aus, mit dem Sie sich anmelden möchten.

Dieser Artikel bezieht sich auf Microsoft Dynamics NAV für das Gebietsschema Italienisch (it).

Problembeschreibung

Angenommen Sie, Sie Hotfix 2274594 in der italienischen Version von Microsoft Dynamics NAV 2009 R2 und Microsoft Dynamics NAV 2009 Service Pack 1 (SP1) installieren. Beim Ausführen des Berichts AfA-Buch (12119) druckt der Bericht nicht bis-Summen, die Zahlen des vorherigen Jahres zugeordnet sind.
Weitere Informationen zu Hotfix 2274594 finden Sie im folgenden Artikel der Microsoft Knowledge Base:

2274594 der Buchwert ist falsch, wenn Sie das AfA-Buch (12119) in der italienischen Version von Microsoft Dynamics NAV 2009 ausdrucken

Problemlösung

Hotfix-Informationen

Ein unterstützter Hotfix ist inzwischen von Microsoft erhältlich. Allerdings ist es lediglich zur Behebung dieses Problems. Wenden Sie es nur auf Systeme an, bei denen dieses spezielle Problem auftritt. Dieser Hotfix wird möglicherweise noch getestet. Wenn Ihr System durch dieses Problem nicht schwerwiegend beeinträchtigt ist, empfehlen wir, dass Sie warten auf das nächste Servicepack für Microsoft Dynamics NAV 2009 oder die nächste Microsoft Dynamics NAV-Version, die diesen Hotfix enthält.

Hinweis In besonderen Fällen bestimmt Gebühren fallen normalerweise Support aufrufen Wenn Experte Support für Microsoft Dynamics und zugehörige Produkte storniert werden können, dass ein bestimmtes Update Ihr Problem behebt. Die normalen Supportkosten gilt für zusätzliche Supportfragen und Probleme, die nicht für das betreffende Update qualifizieren.



Informationen zur Installation

Microsoft bietet Programmierbeispiele lediglich zur Veranschaulichung, ohne ausdrückliche oder konkludente Gewährleistung. Dies beinhaltet, ist jedoch nicht beschränkt auf, konkludente Gewährleistungen der Tauglichkeit oder Eignung für einen bestimmten Zweck. Dieser Artikel setzt voraus, dass Sie mit der von Beispielen verwendeten Programmiersprache und den Tools, die zum Erstellen und Debuggen von Prozeduren verwendet werden, vertraut sind. Microsoft-Supportmitarbeiter können bei der Erläuterung der Funktionalität bestimmter Prozeduren helfen, sie werden jedoch diese Beispiele nicht verändern um eine erweiterte Funktionalität aufzuzeigen oder Prozeduren entwickeln, die Ihren Anforderungen entsprechen.

Hinweis Bevor Sie diesen Hotfix installieren, stellen Sie sicher, dass alle Microsoft Navision-Clientbenutzer vom System abgemeldet werden. Dies gilt auch für Clientbenutzer der Microsoft Navision Application Services (NAS). Sie sollte nur-Client-Benutzers, der angemeldet ist, wenn Sie diesen Hotfix installieren.

Muss eine Entwicklerlizenz verfügen, um diesen Hotfix installieren können.

Es wird empfohlen, das Benutzerkonto im Fenster Windows-Benutzernamen oder im Fenster Datenbank-Anmeldenamen "SUPER" Rollen-ID zugewiesen werden Wenn das Benutzerkonto die Rollen-ID "SUPER" nicht zugeordnet werden kann, müssen Sie sicherstellen, dass das Benutzerkonto die folgenden Berechtigungen verfügt:

  • Änderungsberechtigung für das Objekt, das Sie ändern.

  • Ausführungsberechtigung für System Object ID 5210 und System Object ID 9015 -Objekt.



Hinweis Sie müssen keine Rechte für die Datenspeicher haben, es sei denn, Sie müssen eine Datenreparatur durchführen.

Ändern von Code

Hinweis Testen Sie Programmcodeverbesserungen generell erst in einem Testsytem, bevor Sie sie im Produktionssystem verwenden.
Gehen Sie folgendermaßen vor, um dieses Problem zu beheben:

  1. Ändern Sie den Code Daten Element Nummer 1 in Abschreibungsbuch Bericht (12119) wie folgt:
    Vorhandener Code 1

    ...                               FASource := Text008;
    IF NOT FADeprBook.GET("No.",DeprBookCode) THEN
    CurrReport.SKIP;

    // Delete the following lines.
    IF SkipRecord THEN
    CurrReport.SKIP;
    // End of the lines.

    IF "FA Posting Group" <> FADeprBook."FA Posting Group" THEN
    ERROR(Text007,FIELDCAPTION("FA Posting Group"),"No.");
    ...

    Neuer Code 1

    ...                               FASource := Text008;
    IF NOT FADeprBook.GET("No.",DeprBookCode) THEN
    CurrReport.SKIP;

    // Add the following lines.
    FixedAsset.COPY("Fixed Asset");
    IF SkipRecord THEN BEGIN
    IF FixedAsset.NEXT = 0 THEN
    CreateTotals;
    CurrReport.SKIP;
    END;
    // End of the lines.

    IF "FA Posting Group" <> FADeprBook."FA Posting Group" THEN
    ERROR(Text007,FIELDCAPTION("FA Posting Group"),"No.");
    ...

    Vorhandener Code 2

    ...                               FillTempFALedgEntry;
    UpdateTotals;
    CreateGroupTotals;

    // Delete the following lines.
    CreateTotals;

    TotalStartingAccumulated := TotalStartAmounts[2] + TotalStartAmounts[5] + TotalStartAmounts[6];
    TotalAntAccDepreciation := TotalNetChangeAmounts[5] + TotalNetChangeAmounts[6];

    IF TotalEndingAmounts[1]+TotalEndingAmounts[3]+TotalEndingAmounts[4] = 0 THEN BEGIN
    TotalBasicDepreciationPerc := 0;
    TotalAntAccDepreciationPerc := 0
    END ELSE BEGIN
    TotalBasicDepreciationPerc := ABS(ROUND((((TotalNetChangeAmounts[2] + ReclassDeprAmount) / // IT0001
    (TotalEndingAmounts[1] +
    TotalEndingAmounts[3] +
    TotalEndingAmounts[4])) * 100),0.01));

    TotalAntAccDepreciationPerc := ABS(ROUND(((TotalAntAccDepreciation /
    TotalEndingAmounts[1] +
    TotalEndingAmounts[3] +
    TotalEndingAmounts[4]) * 100),0.01));

    END;
    // End of the lines.

    END;

    ReqFilterFields=No.,FA Class Code,FA Subclass Code,Budgeted Asset;
    ...

    Neuer Code 2

    ...                               FillTempFALedgEntry;
    UpdateTotals;
    CreateGroupTotals;

    // Add the following lines.
    IF FixedAsset.NEXT = 0 THEN
    CreateTotals;
    // End of the lines.

    END;

    ReqFilterFields=No.,FA Class Code,FA Subclass Code,Budgeted Asset;
    ...

  2. Ändern Sie den Code in Artikel Nummer 1 Abschnitte im Abschreibungsbuch Bericht (12119) wie folgt:
    Vorhandener Code 1

    ...            CONTROLS
    {
    { 169 ;TextBox ;24450;0 ;1650 ;423 ;FontBold=Yes;

    // Delete the following line.
    SourceExpr=BookValueAtEndingDate;
    // End of the line.

    AutoFormatType=1;
    DataSetFieldName=BookValueAtEndingDate_Control169 }
    { 1130064;Label ;0 ;0 ;2250 ;423 ;HorzAlign=Left;
    ...

    Neuer Code 1

    ...            CONTROLS
    {
    { 169 ;TextBox ;24450;0 ;1650 ;423 ;FontBold=Yes;

    // Add the following line.
    SourceExpr=EndTotalBookValueAtEndingDate;
    // End of the line.

    AutoFormatType=1;
    DataSetFieldName=BookValueAtEndingDate_Control169 }
    { 1130064;Label ;0 ;0 ;2250 ;423 ;HorzAlign=Left;
    ...

    Vorhandener Code 2

    ...TotalNetChangeAmounts_3__TotalNetChangeAmounts_4_ }
    { 1130077;TextBox ;5850 ;0 ;1800 ;423 ;SourceExpr=TotalDisposalAmounts[1]+TotalDisposalAmounts[3]+TotalDisposalAmounts[4];
    DataSetFieldName=TotalDisposalAmounts_1__TotalDisposalAmounts_3__TotalDisposalAmounts_4_ }

    // Delete the following line.
    { 1130078;TextBox ;7650 ;0 ;1800 ;423 ;SourceExpr=TotalEndingAmounts[1]+TotalEndingAmounts[3]+TotalEndingAmounts[4];
    // End of the line.

    DataSetFieldName=TotalEndingAmounts_1__TotalEndingAmounts_3__TotalEndingAmounts_4__Control1130078 }
    { 1130079;TextBox ;9450 ;0 ;1500 ;423 ;SourceExpr=TotalStartingAccumulated;
    DataSetFieldName=TotalStartingAccumulated }
    ...

    Neuer Code 2

    ...                                                           DataSetFieldName=TotalNetChangeAmounts_1__TotalNetChangeAmounts_3__TotalNetChangeAmounts_4_ }
    { 1130077;TextBox ;5850 ;0 ;1800 ;423 ;SourceExpr=TotalDisposalAmounts[1]+TotalDisposalAmounts[3]+TotalDisposalAmounts[4];
    DataSetFieldName=TotalDisposalAmounts_1__TotalDisposalAmounts_3__TotalDisposalAmounts_4_ }

    // Add the following line.
    { 1130078;TextBox ;7650 ;0 ;1800 ;423 ;SourceExpr=EndTotalEndingAmounts[1]+EndTotalEndingAmounts[3]+EndTotalEndingAmounts[4];
    // End of the line.

    DataSetFieldName=TotalEndingAmounts_1__TotalEndingAmounts_3__TotalEndingAmounts_4__Control1130078 }
    { 1130079;TextBox ;9450 ;0 ;1500 ;423 ;SourceExpr=TotalStartingAccumulated;
    DataSetFieldName=TotalStartingAccumulated }
    ...

    Vorhandenen Code 3

    ...                                                           DataSetFieldName=TotalStartingAccumulated }
    { 1130081;TextBox ;13950;0 ;1500 ;423 ;SourceExpr=ABS(TotalNetChangeAmounts[2]);
    DataSetFieldName=ABS_TotalNetChangeAmounts_2__ }

    // Delete the following line.
    { 1130083;TextBox ;22950;0 ;1500 ;423 ;SourceExpr=ABS(TotalEndingAmounts[2]+TotalEndingAmounts[5]+TotalEndingAmounts[6]);
    // End of the line.

    DataSetFieldName=ABS_TotalEndingAmounts_2__TotalEndingAmounts_5__TotalEndingAmounts_6___Control1130083 }
    { 1130090;TextBox ;21450;0 ;1500 ;423 ;SourceExpr=ABS(TotalNetChangeAmounts[2]+TotalAntAccDepreciation);
    DataSetFieldName=ABS_TotalNetChangeAmounts_2__TotalAntAccDepreciation_ }
    ...

    Neuer Code 3

    ...                                                           DataSetFieldName=TotalStartingAccumulated }
    { 1130081;TextBox ;13950;0 ;1500 ;423 ;SourceExpr=ABS(TotalNetChangeAmounts[2]);
    DataSetFieldName=ABS_TotalNetChangeAmounts_2__ }

    // Add the following line.
    { 1130083;TextBox ;22950;0 ;1500 ;423 ;SourceExpr=ABS(EndTotalEndingAmounts[2]+EndTotalEndingAmounts[5]+EndTotalEndingAmounts[6]);
    // End of the line.

    DataSetFieldName=ABS_TotalEndingAmounts_2__TotalEndingAmounts_5__TotalEndingAmounts_6___Control1130083 }
    { 1130090;TextBox ;21450;0 ;1500 ;423 ;SourceExpr=ABS(TotalNetChangeAmounts[2]+TotalAntAccDepreciation);
    DataSetFieldName=ABS_TotalNetChangeAmounts_2__TotalAntAccDepreciation_ }
    ...

  3. Fügen Sie die folgenden globalen Variablen im Abschreibungsbuch Bericht (12119):

    • FixedAsset@1130040: Datensatz 5600

    • EndTotalEndingAmounts@1130041: ARRAY [7] der Dezimalstellen

    • EndTotalBookValueAtEndingDate@1130042: Dezimal

  4. Ändern Sie den Code in der Funktion UpdateTotals in Abschreibungsbuch Bericht (12119) wie folgt:
    Vorhandener Code 1

    ...          GroupStartAmounts[J] := 0;
    GroupNetChangeAmounts[J] := 0;
    GroupDisposalAmounts[J] := 0;

    // Delete the following lines.
    TotalStartAmounts[J] := 0;
    TotalNetChangeAmounts[J] := 0;
    TotalDisposalAmounts[J] := 0;
    TotalReclassDeprAmount := ReclassDeprAmount;
    // End of the lines.

    END;
    // IT0001.end
    FOR J := 1 TO NumberOfTypes DO BEGIN
    ...

    Neuer Code 1

    ...          GroupStartAmounts[J] := 0;
    GroupNetChangeAmounts[J] := 0;
    GroupDisposalAmounts[J] := 0;
    END;
    // IT0001.end
    FOR J := 1 TO NumberOfTypes DO BEGIN
    ...

    Vorhandener Code 2

    ...          TotalStartAmounts[J] := TotalStartAmounts[J] + StartAmounts[J];
    TotalNetChangeAmounts[J] := TotalNetChangeAmounts[J] + NetChangeAmounts[J];
    TotalDisposalAmounts[J] := TotalDisposalAmounts[J] + DisposalAmounts[J];
    END;
    END;
    ...

    Neuer Code 2

    ...          TotalStartAmounts[J] := TotalStartAmounts[J] + StartAmounts[J];
    TotalNetChangeAmounts[J] := TotalNetChangeAmounts[J] + NetChangeAmounts[J];
    TotalDisposalAmounts[J] := TotalDisposalAmounts[J] + DisposalAmounts[J];

    // Add the following lines.
    IF J = 2 THEN
    TotalReclassDeprAmount := TotalReclassDeprAmount + ReclassDeprAmount;
    // End of the lines.

    END;
    END;
    ...

  5. Ändern Sie den Code in der Funktion CreateGroupTotals in Abschreibungsbuch Bericht (12119) wie folgt:
    Vorhandener Code 1

    ...      LOCAL PROCEDURE CreateGroupTotals@1130114();
    BEGIN

    BookValueAtEndingDate := 0;
    BookValueAtStartingDate := 0;
    FOR J := 1 TO NumberOfTypes DO BEGIN
    ...

    Neuer Code 1

    ...      LOCAL PROCEDURE CreateGroupTotals@1130114();
    BEGIN
    BookValueAtEndingDate := 0;
    BookValueAtStartingDate := 0;
    FOR J := 1 TO NumberOfTypes DO BEGIN
    ...

    Vorhandener Code 2

    ...        BookValueAtStartingDate := 0;
    FOR J := 1 TO NumberOfTypes DO BEGIN
    TotalEndingAmounts[J] := GroupStartAmounts[J] + GroupNetChangeAmounts[J] + GroupDisposalAmounts[J];
    BookValueAtEndingDate := BookValueAtEndingDate + TotalEndingAmounts[J];
    BookValueAtStartingDate := BookValueAtStartingDate + GroupStartAmounts[J];
    ...

    Neuer Code 2

    ...        BookValueAtStartingDate := 0;
    FOR J := 1 TO NumberOfTypes DO BEGIN
    TotalEndingAmounts[J] := GroupStartAmounts[J] + GroupNetChangeAmounts[J] + GroupDisposalAmounts[J];

    // Add the following lines.
    IF J = 2 THEN
    TotalEndingAmounts[J] += ReclassDeprAmount;
    // End of the lines.

    BookValueAtEndingDate := BookValueAtEndingDate + TotalEndingAmounts[J];
    BookValueAtStartingDate := BookValueAtStartingDate + GroupStartAmounts[J];
    ...

    Vorhandenen Code 3

    ...          BookValueAtEndingDate := BookValueAtEndingDate + TotalEndingAmounts[J];
    BookValueAtStartingDate := BookValueAtStartingDate + GroupStartAmounts[J];

    // Delete the following lines.
    IF J = 2 THEN
    TotalEndingAmounts[J] += ReclassDeprAmount;
    // End of the lines.

    END;
    END;
    ...

    Neuer Code 3

    ...          BookValueAtEndingDate := BookValueAtEndingDate + TotalEndingAmounts[J];
    BookValueAtStartingDate := BookValueAtStartingDate + GroupStartAmounts[J];
    END;
    END;
    ...

  6. Ändern Sie den Code in der Funktion CreateTotals in Abschreibungsbuch Bericht (12119) wie folgt:
    Vorhandener Code 1

    ...      LOCAL PROCEDURE CreateTotals@1130117();
    BEGIN

    // Delete the following lines.
    BookValueAtEndingDate := 0;
    BookValueAtStartingDate := 0;
    FOR J := 1 TO NumberOfTypes DO BEGIN
    TotalEndingAmounts[J] := TotalStartAmounts[J] + TotalNetChangeAmounts[J] + TotalDisposalAmounts[J];
    // End of the lines.

    // IT0001.begin
    IF J = 2 THEN
    ...

    Neuer Code 1

    ...      LOCAL PROCEDURE CreateTotals@1130117();
    BEGIN

    // Add the following lines.
    FOR J := 1 TO NumberOfTypes DO BEGIN
    EndTotalEndingAmounts[J] := TotalStartAmounts[J] + TotalNetChangeAmounts[J] + TotalDisposalAmounts[J];
    // End of the lines.

    // IT0001.begin
    IF J = 2 THEN
    ...

    Vorhandener Code 2

    ...          // IT0001.begin
    IF J = 2 THEN

    // Delete the following lines.
    TotalEndingAmounts[J] += ReclassDeprAmount;
    // IT0001.end
    BookValueAtEndingDate := BookValueAtEndingDate + TotalEndingAmounts[J];
    BookValueAtStartingDate := BookValueAtStartingDate + TotalStartAmounts[J];
    // End of the lines.

    END;
    END;
    ...

    Neuer Code 2

    ...          // IT0001.begin
    IF J = 2 THEN

    // Add the following lines.
    EndTotalEndingAmounts[J] := EndTotalEndingAmounts[J] + TotalReclassDeprAmount;
    // IT0001.end
    EndTotalBookValueAtEndingDate := EndTotalBookValueAtEndingDate + EndTotalEndingAmounts[J];
    END;

    TotalStartingAccumulated := TotalStartAmounts[2] + TotalStartAmounts[5] + TotalStartAmounts[6];
    TotalAntAccDepreciation := TotalNetChangeAmounts[5] + TotalNetChangeAmounts[6];

    IF EndTotalEndingAmounts[1]+EndTotalEndingAmounts[3]+EndTotalEndingAmounts[4] = 0 THEN BEGIN
    TotalBasicDepreciationPerc := 0;
    TotalAntAccDepreciationPerc := 0
    END ELSE BEGIN
    TotalBasicDepreciationPerc := ABS(ROUND((((TotalNetChangeAmounts[2] + TotalReclassDeprAmount) / // IT0001
    (EndTotalEndingAmounts[1] +
    EndTotalEndingAmounts[3] +
    EndTotalEndingAmounts[4])) * 100),0.01));

    TotalAntAccDepreciationPerc := ABS(ROUND(((TotalAntAccDepreciation /
    EndTotalEndingAmounts[1] +
    EndTotalEndingAmounts[3] +
    EndTotalEndingAmounts[4]) * 100),0.01));
    // End of the lines.

    END;
    END;
    ...

  7. Ändern Sie den Code im Bericht AfA-Buch (12119) wie folgt:
    Vorhandener Code 1

    ...                          <PaddingTop>2pt</PaddingTop>
    <VerticalAlign>Middle</VerticalAlign>
    </Style>

    // Delete the following line.
    <Value>=LAST(Fields!TotalEndingAmounts_1__TotalEndingAmounts_3__TotalEndingAmounts_4_.Value)</Value>
    // End of the line.

    <ZIndex>11</ZIndex>
    </Textbox>
    </ReportItems>
    ...

    Neuer Code 1

    ...                          <PaddingTop>2pt</PaddingTop>
    <VerticalAlign>Middle</VerticalAlign>
    </Style>

    // Add the following line.
    <Value>=LAST(Fields!TotalEndingAmounts_1__TotalEndingAmounts_3__TotalEndingAmounts_4__Control1130078.Value)</Value>
    // End of the line.

    <ZIndex>11</ZIndex>
    </Textbox>
    </ReportItems>
    ...

    Vorhandener Code 2

    ...                          <PaddingTop>2pt</PaddingTop>
    <VerticalAlign>Middle</VerticalAlign>
    </Style>

    // Delete the following line.
    <Value>=LAST(Fields!ABS_TotalEndingAmounts_2__TotalEndingAmounts_5__TotalEndingAmounts_6__.Value)</Value>
    // End of the line.

    <ZIndex>2</ZIndex>
    </Textbox>
    </ReportItems>
    ...

    Neuer Code 2

    ...                          <PaddingTop>2pt</PaddingTop>
    <VerticalAlign>Middle</VerticalAlign>
    </Style>

    // Add the following line.
    <Value>=LAST(Fields!ABS_TotalEndingAmounts_2__TotalEndingAmounts_5__TotalEndingAmounts_6___Control1130083.Value)</Value>
    // End of the line.

    <ZIndex>2</ZIndex>
    </Textbox>
    </ReportItems>
    ...

    Vorhandenen Code 3

    ...                          <PaddingTop>2pt</PaddingTop>
    <VerticalAlign>Middle</VerticalAlign>
    </Style>

    // Delete the following line.
    <Value>=LAST(Fields!BookValueAtEndingDate.Value)</Value>
    // End of the line.

    <ZIndex>1</ZIndex>
    </Textbox>
    </ReportItems>
    ...

    Neuer Code 3

    ...                          <PaddingTop>2pt</PaddingTop>
    <VerticalAlign>Middle</VerticalAlign>
    </Style>

    // Add the following line.
    <Value>=LAST(Fields!BookValueAtEndingDate_Control169.Value)</Value>
    // End of the line.

    <ZIndex>1</ZIndex>
    </Textbox>
    </ReportItems>
    ...

    Vorhandenen Code 4

    ...          <Field Name="ABS_ReclassDeprAmount__Control1130212Format">
    <DataField>ABS_ReclassDeprAmount__Control1130212Format</DataField>
    </Field>
    <Field Name="BookValueAtEndingDate_Control169Format">
    <DataField>BookValueAtEndingDate_Control169Format</DataField>
    </Field>
    ...

    Neuer Code 4

    ...          <Field Name="ABS_ReclassDeprAmount__Control1130212Format">
    <DataField>ABS_ReclassDeprAmount__Control1130212Format</DataField>
    </Field>

    // Add the following lines.
    <Field Name="BookValueAtEndingDate_Control169">
    <DataField>BookValueAtEndingDate_Control169</DataField>
    </Field>
    // End of the lines.

    <Field Name="BookValueAtEndingDate_Control169Format">
    <DataField>BookValueAtEndingDate_Control169Format</DataField>
    </Field>
    ...

    Vorhandenen Code 5

    ...          <Field Name="TotalDisposalAmounts_1__TotalDisposalAmounts_3__TotalDisposalAmounts_4_Format">
    <DataField>TotalDisposalAmounts_1__TotalDisposalAmounts_3__TotalDisposalAmounts_4_Format</DataField>
    </Field>
    <Field Name="TotalEndingAmounts_1__TotalEndingAmounts_3__TotalEndingAmounts_4__Control1130078Format">
    <DataField>TotalEndingAmounts_1__TotalEndingAmounts_3__TotalEndingAmounts_4__Control1130078Format</DataField>
    </Field>
    ...

    Neuer Code 5

    ...          <Field Name="TotalDisposalAmounts_1__TotalDisposalAmounts_3__TotalDisposalAmounts_4_Format">
    <DataField>TotalDisposalAmounts_1__TotalDisposalAmounts_3__TotalDisposalAmounts_4_Format</DataField>
    </Field>

    // Add the following lines.
    <Field Name="TotalEndingAmounts_1__TotalEndingAmounts_3__TotalEndingAmounts_4__Control1130078">
    <DataField>TotalEndingAmounts_1__TotalEndingAmounts_3__TotalEndingAmounts_4__Control1130078</DataField>
    </Field>
    // End of the lines.

    <Field Name="TotalEndingAmounts_1__TotalEndingAmounts_3__TotalEndingAmounts_4__Control1130078Format">
    <DataField>TotalEndingAmounts_1__TotalEndingAmounts_3__TotalEndingAmounts_4__Control1130078Format</DataField>
    </Field>
    ...

    Vorhandenen Code 6

    ...          <Field Name="ABS_TotalNetChangeAmounts_2__Format">
    <DataField>ABS_TotalNetChangeAmounts_2__Format</DataField>
    </Field>
    <Field Name="ABS_TotalEndingAmounts_2__TotalEndingAmounts_5__TotalEndingAmounts_6___Control1130083Format">
    <DataField>ABS_TotalEndingAmounts_2__TotalEndingAmounts_5__TotalEndingAmounts_6___Control1130083Format</DataField>
    </Field>
    ...

    Ersetzungscode 6

    ...          <Field Name="ABS_TotalNetChangeAmounts_2__Format">
    <DataField>ABS_TotalNetChangeAmounts_2__Format</DataField>
    </Field>

    // Add the following lines.
    <Field Name="ABS_TotalEndingAmounts_2__TotalEndingAmounts_5__TotalEndingAmounts_6___Control1130083">
    <DataField>ABS_TotalEndingAmounts_2__TotalEndingAmounts_5__TotalEndingAmounts_6___Control1130083</DataField>
    </Field>
    // End of the lines.

    <Field Name="ABS_TotalEndingAmounts_2__TotalEndingAmounts_5__TotalEndingAmounts_6___Control1130083Format">
    <DataField>ABS_TotalEndingAmounts_2__TotalEndingAmounts_5__TotalEndingAmounts_6___Control1130083Format</DataField>
    </Field>
    ...

Voraussetzungen

Sie müssen eines der folgenden Produkte verfügen, um diesen Hotfix installieren:

  • Die italienische Version von Microsoft Dynamics NAV 2009 R2

  • Italienische Version des Service Pack 1 für Microsoft Dynamics NAV 2009

Informationen zur Deinstallation

Dieser Hotfix kann nicht entfernt werden.

Status

Microsoft hat bestätigt, dass es sich um ein Problem bei den Microsoft-Produkten handelt, die im Abschnitt „Eigenschaften“ aufgeführt sind.

Hinweis Dies ist ein im Schnellverfahren veröffentlichter Artikel, der direkt in der Microsoft Support-Organisation erstellt wurde. Die hierin enthaltenen Informationen werden ohne Mängelgewähr in Reaktion auf neue Probleme bereitgestellt. Aufgrund der schnellen Bereitstellung kann das Material möglicherweise typografische Fehler enthalten und jederzeit ohne vorherige Ankündigung geändert werden. Weitere Hinweise finden Sie unter Geschäftsbedingungen .

Benötigen Sie weitere Hilfe?

Möchten Sie weitere Optionen?

Erkunden Sie die Abonnementvorteile, durchsuchen Sie Trainingskurse, erfahren Sie, wie Sie Ihr Gerät schützen und vieles mehr.

In den Communities können Sie Fragen stellen und beantworten, Feedback geben und von Experten mit umfassendem Wissen hören.

War diese Information hilfreich?

Wie zufrieden sind Sie mit der Sprachqualität?
Was hat Ihre Erfahrung beeinflusst?
Wenn Sie auf "Absenden" klicken, wird Ihr Feedback zur Verbesserung von Produkten und Diensten von Microsoft verwendet. Ihr IT-Administrator kann diese Daten sammeln. Datenschutzbestimmungen.

Vielen Dank für Ihr Feedback!

×