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 Schwedisch (Se).

Problembeschreibung

Beim Ausführen der (11200) Bilanz oder GuV Bericht (11201) in Schwedisch Version von Microsoft Dynamics NAV 2013 werden leere Zeilen im Bericht

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 2013 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-Supporttechniker helfen der Erläuterung der Funktionalität bestimmter Prozeduren. Allerdings werden sie diese Beispiele nicht ändern, um zusätzliche Funktionalität bereitzustellen oder Prozeduren erstellen, die Ihren spezifischen Bedürfnisse erfüllen.

Hinweis Bevor Sie diesen Hotfix installieren, stellen Sie sicher, dass alle Microsoft Dynamics NAV-Clientbenutzer vom System abgemeldet werden. Hierzu gehören Dienste Microsoft Dynamics NAV Application Server (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 keinen Datenspeicher Rechte nur Daten zu reparieren.

Ä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 in den globalen Variablen im Bericht Bilanz (11200) wie folgt:
    Vorhandener Code 1

    ...<Report xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner" xmlns="http://schemas.microsoft.com/sqlserver/reporting/2008/01/reportdefinition">

    // Delete the following line.
    <AutoRefresh>0</AutoRefresh>
    // End of the deleted line.

    <DataSources>
    ...

    Neuer Code 1

    ...<Report xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner" xmlns="http://schemas.microsoft.com/sqlserver/reporting/2008/01/reportdefinition">
    <DataSources>
    ...

    Vorhandener Code 2

    ...</ConnectionProperties>

    // Delete the following line.
    <rd:SecurityType>None</rd:SecurityType>
    // End of the deleted line.

    <rd:DataSourceID>078b3105-54dd-41a2-b2cc-97cc545456f5</rd:DataSourceID>
    ...

    Neuer Code 2

    ...</ConnectionProperties>
    <rd:DataSourceID>078b3105-54dd-41a2-b2cc-97cc545456f5</rd:DataSourceID>
    ...

    Vorhandenen Code 3

    ...<DataSet Name="DataSet_Result">

    // Delete the following lines.
    <Query>
    <DataSourceName>DataSource</DataSourceName>
    <CommandText />
    </Query>
    // End of the deleted lines.

    <Fields>
    ...

    Neuer Code 3

    ...<DataSet Name="DataSet_Result">
    <Fields>
    ...

    Vorhandenen Code 4

    ...</Fields>
    <rd:DataSetInfo>
    ...

    Neuer Code 4

    ...</Fields>

    // Add the following lines.
    <Query>
    <DataSourceName>DataSource</DataSourceName>
    <CommandText />
    </Query>
    // End of the added lines.

    <rd:DataSetInfo>
    ...

    Vorhandenen Code 5

    ...</DataSets>

    // Delete the following lines.
    <Code>Public Function BlankZero(ByVal Value As Decimal)
    if Value = 0 then
    Return ""
    end if
    Return Value
    End Function

    Public Function BlankPos(ByVal Value As Decimal)
    if Value > 0 then
    Return ""
    end if
    Return Value
    End Function

    Public Function BlankZeroAndPos(ByVal Value As Decimal)
    if Value >= 0 then
    Return ""
    end if
    Return Value
    End Function

    Public Function BlankNeg(ByVal Value As Decimal)
    if Value < 0 then
    Return ""
    end if
    Return Value
    End Function

    Public Function BlankNegAndZero(ByVal Value As Decimal)
    if Value <= 0 then
    Return ""
    end if
    Return Value
    End Function
    </Code>
    <Language>=User!Language</Language>
    <ConsumeContainerWhitespace>true</ConsumeContainerWhitespace>
    <rd:ReportUnitType>Invalid</rd:ReportUnitType>
    <rd:ReportID>3601b3ac-04bd-4ad8-9e53-8b1236ed6d8f</rd:ReportID>
    // End of the deleted lines.

    <Body>
    ...

    Neuer Code 5

    ...</DataSets>
    <Body>
    ...

    Vorhandenen Code 6

    ...</TextRuns>
    </Paragraph>
    ...

    Ersetzungscode 6

    ...</TextRuns>

    // Add the following line.
    <Style />
    // End of the addded line.

    </Paragraph>
    ...

    Vorhandenen Code 7

    ...<TablixColumn>

    // Delete the following line.
    <Width>1.575cm</Width>
    // End of the deleted line.

    </TablixColumn>
    ...

    Neuer Code 7

    ...<TablixColumn>

    // Add the following line.
    <Width>0.59055in</Width>
    // End of the added line.

    </TablixColumn>
    ...

    Vorhandenen Code 8

    ...<TablixColumn>

    // Delete the following line.
    <Width>6.525cm</Width>
    // End of the deleted line.

    </TablixColumn>
    ...

    Neuer Code 8

    ...<TablixColumn>

    // Add the following line.
    <Width>2.3622in</Width>
    // End of the added line.

    </TablixColumn>
    ...

    Vorhandenen Code 9

    ...<TablixColumn>

    // Delete the following line.
    <Width>3.4cm</Width>
    // End of the deleted line.

    </TablixColumn>
    ...

    Neuer Code 9

    ...<TablixColumn>

    // Add the following line.
    <Width>0.90551in</Width>
    // End of the added line.

    </TablixColumn>
    ...

    Vorhandenen Code 10

    ...<TablixColumn>

    // Delete the following line.
    <Width>3.6cm</Width>
    // End of the deleted line.

    </TablixColumn>
    ...

    Neuer Code 10

    ...<TablixColumn>

    // Add the following line.
    <Width>0.90551in</Width>
    // End of the added line.

    </TablixColumn>
    ...

    Vorhandenen Code 11

    ...<TablixColumn>

    // Delete the following line.
    <Width>2.95cm</Width>
    // End of the deleted line.

    </TablixColumn>
    ...

    Neuer Code 11

    ...<TablixColumn>

    // Add the following line.
    <Width>0.90551in</Width>
    // End of the added line.

    </TablixColumn>
    ...

    Vorhandenen Code 12

    ...<TablixColumn>

    // Delete the following line.
    <Width>0.2cm</Width>
    // End of the deleted line.

    </TablixColumn>
    ...

    Neuer Code 12

    ...<TablixColumn>

    // Add the following line.
    <Width>0.07874in</Width>
    // End of the added line.

    </TablixColumn>
    ...

    Vorhandenen Code 13

    ...
    <TablixColumn>
    // Delete the following line.
    <Width>0.2cm</Width>
    // End of the deleted line.

    </TablixColumn>
    ...

    Neuer Code 13

    ...
    <TablixColumn>
    // Add the following line.
    <Width>0.07874in</Width>
    // End of the added line.

    </TablixColumn>
    ...

    Vorhandenen Code 14

    ...
    <TablixColumn>
    // Delete the following line.
    <Width>0.2cm</Width>
    // End of the deleted line.

    </TablixColumn>
    ...

    Ersetzungscode 14

    ...
    <TablixColumn>
    // Add the following line.
    <Width>0.07874in</Width>
    // End of the added line.

    </TablixColumn>
    ...

    Vorhandenen Code 15

    ...
    <TablixColumn>
    // Delete the following line.
    <Width>0.2cm</Width>
    // End of the deleted line.

    </TablixColumn>
    ...

    Neuer Code 15

    ...
    <TablixColumn>
    // Add the following line.
    <Width>0.07874in</Width>
    // End of the added line.

    </TablixColumn>
    ...

    Vorhandenen Code 16

    ...<TablixRow>

    // Delete the following line.
    <Height>0.423cm</Height>
    // End of the deleted line.

    <TablixCells>
    ...

    Ersetzungscode 16

    ...<TablixRow>

    // Add the following line.
    <Height>0.16654in</Height>
    // End of the added line.

    <TablixCells>
    ...

    Vorhandenen Code 17

    ...</TextRuns>
    </Paragraph>
    ...

    Ersetzungscode 17

    ...</TextRuns>

    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 18

    ...</Paragraphs>

    // Delete the following lines.
    <Top>0cm</Top>
    <Left>0cm</Left>
    <Height>0.423cm</Height>
    <Width>1.5cm</Width>
    // End of the deleted lines.

    <Style>
    ...

    Ersetzungscode 18

    ...</Paragraphs>
    <Style>
    ...

    Vorhandenen Code 19

    ...</TextRuns>
    </Paragraph>
    ...

    Neuer Code 19

    ...</TextRuns>

    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 20

    ...</Paragraphs>

    // Delete the following lines.
    <Top>0cm</Top>
    <Left>1.65cm</Left>
    <Height>0.423cm</Height>
    <Width>6cm</Width>
    // End of the deleted lines.

    <Style>
    ...

    Neuer Code 20

    ...</Paragraphs>
    <Style>
    ...

    Vorhandenen Code 21

    ...</Paragraphs>

    // Delete the following lines.
    <Top>0cm</Top>
    <Left>7.65cm</Left>
    <Height>0.423cm</Height>
    <Width>3.15cm</Width>
    // End of the deleted lines.

    <Style>
    ...

    Ersetzungscode 21

    ...
    </Paragraphs><Style>
    ...

    Vorhandenen Code 22

    ...</Paragraphs>

    // Delete the following lines.
    <Top>0cm</Top>
    <Left>12.15cm</Left>
    <Height>0.423cm</Height>
    <Width>2.3cm</Width>
    // End of the deleted lines.

    <Style>
    ...

    Neuer Code 22

    ...</Paragraphs>
    <Style>
    ...

    Vorhandenen Code 23

    ...</Paragraphs>

    // Delete the following lines.
    <Top>0cm</Top>
    <Left>14.85cm</Left>
    <Height>0.423cm</Height>
    <Width>3.15cm</Width>
    // End of the deleted lines.

    <Style>
    ...

    Neuer Code 23

    ...</Paragraphs>
    <Style>
    ...

    Vorhandenen Code 24

    ...</TextRuns>
    </Paragraph>
    ...

    Ersetzungscode 24

    ...</TextRuns>

    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 25

    ...<TablixRow>

    // Delete the following line.
    <Height>0.423cm</Height>
    // End of the deleted line.

    <TablixCells>
    ...

    Ersetzungscode 25

    ...<TablixRow>

    // Add the following line.
    <Height>0.16654in</Height>
    // End of the added line.

    <TablixCells>
    ...

    Vorhandenen Code 26

    ...
    </TextRuns></Paragraph>
    ...

    Neuer Code 26

    ...
    </TextRuns>
    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 27

    ...</Paragraphs>

    // Delete the following lines.
    <Top>0cm</Top>
    <Left>0cm</Left>
    <Height>0.423cm</Height>
    <Width>1.5cm</Width>
    // End of the deleted lines.

    <Style>
    ...

    Neuer Code 27

    ...</Paragraphs>
    <Style>
    ...

    Vorhandenen Code 28

    ...
    </TextRuns></Paragraph>
    ...

    Neuer Code 28

    ...
    </TextRuns>
    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 29

    ...
    </Paragraphs>
    // Delete the following lines.
    <Top>0cm</Top>
    <Left>1.65cm</Left>
    <Height>0.423cm</Height>
    <Width>6cm</Width>
    // End of the deleted lines.

    <Style>
    ...

    Neuer Code 29

    ...
    </Paragraphs><Style>
    ...

    Vorhandenen Code 30

    ...
    </TextRuns></Paragraph>
    ...

    Ersetzungscode 30

    ...
    </TextRuns>
    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 31

    ...
    </Paragraphs>
    // Delete the following lines.
    <Top>0cm</Top>
    <Left>8.55cm</Left>
    <Height>0.423cm</Height>
    <Width>2.3cm</Width>
    // End of the deleted lines.

    <Style>
    ...

    Neuer Code 31

    ...
    </Paragraphs><Style>
    ...

    Vorhandenen Code 32

    ...
    </TextRuns></Paragraph>
    ...

    Neuer Code 32

    ...
    </TextRuns>
    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 33

    ...
    </Paragraphs>
    // Delete the following lines.
    <Top>0cm</Top>
    <Left>12.15cm</Left>
    <Height>0.423cm</Height>
    <Width>2.3cm</Width>
    // End of the deleted lines.

    <Style>
    ...

    Ersetzungscode 33

    ...
    </Paragraphs><Style>
    ...

    Vorhandenen Code 34

    ...
    </TextRuns></Paragraph>
    ...

    Ersetzungscode 34

    ...
    </TextRuns>
    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 35

    ...
    </Paragraphs>
    // Delete the following lines.
    <Top>0cm</Top>
    <Left>15.75cm</Left>
    <Height>0.423cm</Height>
    <Width>2.3cm</Width>
    // End of the deleted lines.

    <Style>
    ...

    Ersetzungscode 35

    ...
    </Paragraphs><Style>
    ...

    Vorhandenen Code 36

    ...
    </TextRuns></Paragraph>
    ...

    Ersetzungscode 36

    ...
    </TextRuns>
    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 37

    ...
    </TextRuns></Paragraph>
    ...

    Ersetzungscode 37

    ...
    </TextRuns>
    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 38

    ...
    </TextRuns></Paragraph>
    ...

    Ersetzungscode 38

    ...
    </TextRuns>
    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 39

    ...
    </TextRuns></Paragraph>
    ...

    Neuer Code 39

    ...
    </TextRuns>
    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 40

    ...</TablixMembers>
    <DataElementName>Detail_Collection</DataElementName>
    ...

    Ersetzungscode 40

    ...</TablixMembers>

    // Add the following lines.
    <Visibility>
    <Hidden>=IIF((Fields!G_L_Account___Balance_at_Date___G_L_Account___Net_Change_.Value<> 0),False,True )</Hidden>
    </Visibility>
    // End of the added lines.

    <DataElementName>Detail_Collection</DataElementName>
    ...

    Vorhandenen Code 41

    ...<Height>0.846cm</Height>
    </Tablix>
    ...

    Neuer Code 41

    ...<Height>0.846cm</Height>

    // Add the following lines.
    <Width>15.2cm</Width>
    <ZIndex>1</ZIndex>
    <Style />
    // End of the added lines.

    </Tablix>
    ...

    Vorhandenen Code 42

    ...<Height>1.692cm</Height>
    </Body>
    ...

    Ersetzungscode 42

    ...<Height>1.692cm</Height>

    // Add the following line.
    <Style />
    // End of the added line.

    </Body>
    ...

    Vorhandenen Code 43

    ...</Body>
    <Width>18.85cm</Width>
    ...

    Neuer Code 43

    ...</Body>

    // Add the following lines.
    <Code>Public Function BlankZero(ByVal Value As Decimal)
    if Value = 0 then
    Return ""
    end if
    Return Value
    End Function

    Public Function BlankPos(ByVal Value As Decimal)
    if Value > 0 then
    Return ""
    end if
    Return Value
    End Function

    Public Function BlankZeroAndPos(ByVal Value As Decimal)
    if Value >= 0 then
    Return ""
    end if
    Return Value
    End Function

    Public Function BlankNeg(ByVal Value As Decimal)
    if Value < 0 then
    Return ""
    end if
    Return Value
    End Function

    Public Function BlankNegAndZero(ByVal Value As Decimal)
    if Value <= 0 then
    Return ""
    end if
    Return Value
    End Function
    </Code>
    // End of the added lines.

    <Width>18.85cm</Width>
    ...

    Vorhandenen Code 44

    ...<Width>3.25cm</Width>
    <Style>
    ...

    Neuer Code 44

    ...<Width>3.25cm</Width>

    // Add the following line.
    <ZIndex>1</ZIndex>
    // End of the added line.

    <Style>
    ...

    Vorhandenen Code 45

    ...
    <Width>3.15cm</Width><Style>
    ...

    Ersetzungscode 45

    ...
    <Width>3.15cm</Width>
    // Add the following line.
    <ZIndex>2</ZIndex>
    // End of the added line.

    <Style>
    ...

    Vorhandenen Code 46

    ...
    </TextRuns></Paragraph>
    ...

    Neuer Code 46

    ...
    </TextRuns>
    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 47

    ...
    <Width>7.5cm</Width><Style>
    ...

    Neuer Code 47

    ...
    <Width>7.5cm</Width>
    // Add the following line.
    <ZIndex>3</ZIndex>
    // End of the added line.

    <Style>
    ...

    Vorhandenen Code 48

    ...
    </TextRuns></Paragraph>
    ...

    Ersetzungscode 48

    ...
    </TextRuns>
    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 49

    ...
    <Width>7.5cm</Width><Style>
    ...

    Ersetzungscode 49

    ...
    <Width>7.5cm</Width>
    // Add the following line.
    <ZIndex>4</ZIndex>
    // End of the added line.

    <Style>
    ...

    Vorhandenen Code 50

    ...
    </TextRuns></Paragraph>
    ...

    Ersetzungscode 50

    ...
    </TextRuns>
    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 51

    ...
    <Width>7.5cm</Width><Style>
    ...

    Neuer Code 51

    ...
    <Width>7.5cm</Width>
    // Add the following line.
    <ZIndex>5</ZIndex>
    // End of the added line.

    <Style>
    ...

    Vorhandenen Code 52

    ...
    </TextRuns></Paragraph>
    ...

    Neuer Code 52

    ...
    </TextRuns>
    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 53

    ...
    <Width>0.75cm</Width><Style>
    ...

    Ersetzungscode 53

    ...
    <Width>0.75cm</Width>
    // Add the following line.
    <ZIndex>6</ZIndex>
    // End of the added line.

    <Style>
    ...

    Vorhandenen Code 54

    ...
    </TextRuns></Paragraph>
    ...

    Neuer Code 54

    ...
    </TextRuns>
    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 55

    ...<BottomMargin>2cm</BottomMargin>
    </Page>
    ...

    Ersetzungscode 55

    ...<BottomMargin>2cm</BottomMargin>

    // Add the following line.
    <Style />
    // End of the added line.

    </Page>
    ...

    Vorhandenen Code 56

    ...</Page>
    </Report>
    ...

    Ersetzungscode 56

    ...</Page>

    // Add the following lines.
    <Language>=User!Language</Language>
    <ConsumeContainerWhitespace>true</ConsumeContainerWhitespace>
    <rd:ReportID>3601b3ac-04bd-4ad8-9e53-8b1236ed6d8f</rd:ReportID>
    <rd:ReportUnitType>Cm</rd:ReportUnitType>
    // End of the added lines.

    </Report>
    ...
  2. Ändern Sie den Code in den globalen Variablen im Abrechnungsbericht Einkünfte (11201) wie folgt:
    Vorhandener Code 1

    ...<Report xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner" xmlns="http://schemas.microsoft.com/sqlserver/reporting/2008/01/reportdefinition">

    // Delete the following line.
    <AutoRefresh>0</AutoRefresh>
    // End of the deleted line.

    <DataSources>
    ...

    Neuer Code 1

    ...<Report xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner" xmlns="http://schemas.microsoft.com/sqlserver/reporting/2008/01/reportdefinition">
    <DataSources>
    ...

    Vorhandener Code 2

    ...</ConnectionProperties>

    // Delete the following line.
    <rd:SecurityType>None</rd:SecurityType>
    // End of the deleted line.

    <rd:DataSourceID>8ebf26e0-0b0c-48b1-aba7-282651564ae8</rd:DataSourceID>
    ...

    Neuer Code 2

    ...</ConnectionProperties>
    <rd:DataSourceID>8ebf26e0-0b0c-48b1-aba7-282651564ae8</rd:DataSourceID>
    ...

    Vorhandenen Code 3

    ...<DataSet Name="DataSet_Result">

    // Delete the following lines.
    <Query>
    <DataSourceName>DataSource</DataSourceName>
    <CommandText />
    </Query>
    // End of the deleted lines.

    <Fields>
    ...

    Neuer Code 3

    ...<DataSet Name="DataSet_Result">
    <Fields>
    ...

    Vorhandenen Code 4

    ...</Fields>
    <rd:DataSetInfo>
    ...

    Neuer Code 4

    ...</Fields>

    // Add the following lines.
    <Query>
    <DataSourceName>DataSource</DataSourceName>
    <CommandText />
    </Query>
    // End of the added lines.

    <rd:DataSetInfo>
    ...

    Vorhandenen Code 5

    ...</DataSets>

    // Delete the following lines.
    <Code>Public Function BlankZero(ByVal Value As Decimal)
    if Value = 0 then
    Return ""
    end if
    Return Value
    End Function

    Public Function BlankPos(ByVal Value As Decimal)
    if Value > 0 then
    Return ""
    end if
    Return Value
    End Function

    Public Function BlankZeroAndPos(ByVal Value As Decimal)
    if Value >= 0 then
    Return ""
    end if
    Return Value
    End Function

    Public Function BlankNeg(ByVal Value As Decimal)
    if Value < 0 then
    Return ""
    end if
    Return Value
    End Function

    Public Function BlankNegAndZero(ByVal Value As Decimal)
    if Value <= 0 then
    Return ""
    end if
    Return Value
    End Function
    </Code>
    <Language>=User!Language</Language>
    <ConsumeContainerWhitespace>true</ConsumeContainerWhitespace>
    <rd:ReportUnitType>Invalid</rd:ReportUnitType>
    <rd:ReportID>7ca5956a-9e85-4253-98fd-d228e8432978</rd:ReportID>
    // End of the deleted lines.

    <Body>
    ...

    Neuer Code 5

    ...</DataSets>
    <Body>
    ...

    Vorhandenen Code 6

    ...</TextRuns>
    </Paragraph>
    ...

    Ersetzungscode 6

    ...</TextRuns>

    // Add the following line.
    <Style />
    // End of the addded line.

    </Paragraph>
    ...

    Vorhandenen Code 7

    ...<TablixColumn>

    // Delete the following line.
    <Width>1.575cm</Width>
    // End of the deleted line.

    </TablixColumn>
    ...

    Neuer Code 7

    ...<TablixColumn>

    // Add the following line.
    <Width>0.59055in</Width>
    // End of the added line.

    </TablixColumn>
    ...

    Vorhandenen Code 8

    ...<TablixColumn>

    // Delete the following line.
    <Width>6.3cm</Width>
    // End of the deleted line.

    </TablixColumn>
    ...

    Neuer Code 8

    ...<TablixColumn>

    // Add the following line.
    <Width>2.3622in</Width>
    // End of the added line.

    </TablixColumn>
    ...

    Vorhandenen Code 9

    ...<TablixColumn>

    // Delete the following line.
    <Width>2.25cm</Width>
    // End of the deleted line.

    </TablixColumn>
    ...

    Neuer Code 9

    ...<TablixColumn>

    // Add the following line.
    <Width>0.70866in</Width>
    // End of the added line.

    </TablixColumn>
    ...

    Vorhandenen Code 10

    ...<TablixColumn>

    // Delete the following line.
    <Width>3cm</Width>
    // End of the deleted line.

    </TablixColumn>
    ...

    Neuer Code 10

    ...<TablixColumn>

    // Add the following line.
    <Width>0.70866in</Width>
    // End of the added line.

    </TablixColumn>
    ...

    Vorhandenen Code 11

    ...<TablixColumn>

    // Delete the following line.
    <Width>3cm</Width>
    // End of the deleted line.

    </TablixColumn>
    ...

    Neuer Code 11

    ...<TablixColumn>

    // Add the following line.
    <Width>0.70866in</Width>
    // End of the added line.

    </TablixColumn>
    ...

    Vorhandenen Code 12

    ...<TablixColumn>

    // Delete the following line.
    <Width>2.025cm</Width>
    // End of the deleted line.

    </TablixColumn>
    ...

    Neuer Code 12

    ...<TablixColumn>

    // Add the following line.
    <Width>0.70866in</Width>
    // End of the added line.

    </TablixColumn>
    ...

    Vorhandenen Code 13

    ...
    <TablixColumn>
    // Delete the following line.
    <Width>0.2cm</Width>
    // End of the deleted line.

    </TablixColumn>
    ...

    Neuer Code 13

    ...
    <TablixColumn>
    // Add the following line.
    <Width>0.07874in</Width>
    // End of the added line.

    </TablixColumn>
    ...

    Vorhandenen Code 14

    ...
    <TablixColumn>
    // Delete the following line.
    <Width>0.2cm</Width>
    // End of the deleted line.

    </TablixColumn>
    ...

    Ersetzungscode 14

    ...
    <TablixColumn>
    // Add the following line.
    <Width>0.07874in</Width>
    // End of the added line.

    </TablixColumn>
    ...

    Vorhandenen Code 15

    ...
    <TablixColumn>
    // Delete the following line.
    <Width>0.2cm</Width>
    // End of the deleted line.

    </TablixColumn>
    ...

    Neuer Code 15

    ...
    <TablixColumn>
    // Add the following line.
    <Width>0.07874in</Width>
    // End of the added line.

    </TablixColumn>
    ...

    Vorhandenen Code 16

    ...<TablixRow>

    // Delete the following line.
    <Height>0.423cm</Height>
    // End of the deleted line.

    <TablixCells>
    ...

    Ersetzungscode 16

    ...<TablixRow>

    // Add the following line.
    <Height>0.16654in</Height>
    // End of the added line.

    <TablixCells>
    ...

    Vorhandenen Code 17

    ...</TextRuns>
    </Paragraph>
    ...

    Ersetzungscode 17

    ...</TextRuns>

    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 18

    ...</TextRuns>
    </Paragraph>
    ...

    Ersetzungscode 18

    ...</TextRuns>

    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 19

    ...</Paragraphs>

    // Delete the following lines.
    <Top>0cm</Top>
    <Left>8.1cm</Left>
    <Height>0.423cm</Height>
    <Width>4.05cm</Width>
    // End of the deleted lines.

    <Style>
    ...

    Neuer Code 19

    ...</Paragraphs>
    <Style>
    ...

    Vorhandenen Code 20

    ...</TextRuns>
    </Paragraph>
    ...

    Neuer Code 20

    ...</TextRuns>

    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 21

    ...</TextRuns>
    </Paragraph>
    ...

    Ersetzungscode 21

    ...</TextRuns>

    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 22

    ...</Paragraphs>

    // Delete the following lines.
    <Top>0cm</Top>
    <Left>14.1cm</Left>
    <Height>0.423cm</Height>
    <Width>4.05cm</Width>
    // End of the deleted lines.

    <Style>
    ...

    Neuer Code 22

    ...</Paragraphs>
    <Style>
    ...

    Vorhandenen Code 23

    ...</TextRuns>
    </Paragraph>
    ...

    Neuer Code 23

    ...</TextRuns>

    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 24

    ...<TablixRow>

    // Delete the following line.
    <Height>0.423cm</Height>
    // End of the deleted line.

    <TablixCells>
    ...

    Ersetzungscode 24

    ...<TablixRow>

    // Add the following line.
    <Height>0.16654in</Height>
    // End of the added line.

    <TablixCells>
    ...

    Vorhandenen Code 25

    ...
    </TextRuns></Paragraph>
    ...

    Ersetzungscode 25

    ...
    </TextRuns>
    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 26

    ...</Paragraphs>

    // Delete the following lines.
    <Top>0.846cm</Top>
    <Left>0cm</Left>
    <Height>0.423cm</Height>
    <Width>1.5cm</Width>
    // End of the deleted lines.

    <Style>
    ...

    Neuer Code 26

    ...</Paragraphs>
    <Style>
    ...

    Vorhandenen Code 27

    ...
    </TextRuns></Paragraph>
    ...

    Neuer Code 27

    ...
    </TextRuns>
    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 28

    ...
    </Paragraphs>
    // Delete the following lines.
    <Top>0.846cm</Top>
    <Left>1.65cm</Left>
    <Height>0.423cm</Height>
    <Width>6cm</Width>
    // End of the deleted lines.

    <Style>
    ...

    Neuer Code 28

    ...
    </Paragraphs><Style>
    ...

    Vorhandenen Code 29

    ...
    </Paragraphs>
    // Delete the following lines.
    <Top>0.846cm</Top>
    <Left>8.1cm</Left>
    <Height>0.423cm</Height>
    <Width>1.8cm</Width>
    // End of the deleted lines.

    <Style>
    ...

    Neuer Code 29

    ...
    </Paragraphs><Style>
    ...

    Vorhandenen Code 30

    ...
    </Paragraphs>
    // Delete the following lines.
    <Top>0.846cm</Top>
    <Left>10.35cm</Left>
    <Height>0.423cm</Height>
    <Width>1.8cm</Width>
    // End of the deleted lines.

    <Style>
    ...

    Ersetzungscode 30

    ...
    </Paragraphs><Style>
    ...

    Vorhandenen Code 31

    ...
    </Paragraphs>
    // Delete the following lines.
    <Top>0.846cm</Top>
    <Left>14.1cm</Left>
    <Height>0.423cm</Height>
    <Width>1.8cm</Width>
    // End of the deleted lines.

    <Style>
    ...

    Neuer Code 31

    ...
    </Paragraphs><Style>
    ...

    Vorhandenen Code 32

    ...
    </Paragraphs>
    // Delete the following lines.
    <Top>0.846cm</Top>
    <Left>16.35cm</Left>
    <Height>0.423cm</Height>
    <Width>1.8cm</Width>
    // End of the deleted lines.

    <Style>
    ...

    Neuer Code 32

    ...
    </Paragraphs><Style>
    ...

    Vorhandenen Code 33

    ...
    </TextRuns></Paragraph>
    ...

    Ersetzungscode 33

    ...
    </TextRuns>
    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 34

    ...<TablixRow>

    // Delete the following line.
    <Height>0.423cm</Height>
    // End of the deleted line.

    <TablixCells>
    ...

    Ersetzungscode 34

    ...<TablixRow>

    // Add the following line.
    <Height>0.16654in</Height>
    // End of the added line.

    <TablixCells>
    ...

    Vorhandenen Code 35

    ...
    </TextRuns></Paragraph>
    ...

    Ersetzungscode 35

    ...
    </TextRuns>
    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 36

    ...</Paragraphs>

    // Delete the following lines.
    <Top>0cm</Top>
    <Left>0cm</Left>
    <Height>0.423cm</Height>
    <Width>1.5cm</Width>
    // End of the deleted lines.

    <Style>
    ...

    Ersetzungscode 36

    ...</Paragraphs>
    <Style>
    ...

    Vorhandenen Code 37

    ...
    </TextRuns></Paragraph>
    ...

    Ersetzungscode 37

    ...
    </TextRuns>
    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 38

    ...
    </Paragraphs>
    // Delete the following lines.
    <Top>0cm</Top>
    <Left>1.65cm</Left>
    <Height>0.423cm</Height>
    <Width>6cm</Width>
    // End of the deleted lines.

    <Style>
    ...

    Ersetzungscode 38

    ...
    </Paragraphs><Style>
    ...

    Vorhandenen Code 39

    ...
    </TextRuns></Paragraph>
    ...

    Neuer Code 39

    ...
    </TextRuns>
    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 40

    ...
    </Paragraphs>
    // Delete the following lines.
    <Top>0cm</Top>
    <Left>8.1cm</Left>
    <Height>0.423cm</Height>
    <Width>1.8cm</Width>
    // End of the deleted lines.

    <Style>
    ...

    Ersetzungscode 40

    ...
    </Paragraphs><Style>
    ...

    Vorhandenen Code 41

    ...
    </TextRuns></Paragraph>
    ...

    Neuer Code 41

    ...
    </TextRuns>
    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 42

    ...
    </Paragraphs>
    // Delete the following lines.
    <Top>0cm</Top>
    <Left>10.35cm</Left>
    <Height>0.423cm</Height>
    <Width>1.8cm</Width>
    // End of the deleted lines.

    <Style>
    ...

    Ersetzungscode 42

    ...
    </Paragraphs><Style>
    ...

    Vorhandenen Code 43

    ...
    </TextRuns></Paragraph>
    ...

    Neuer Code 43

    ...
    </TextRuns>
    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 44

    ...
    </Paragraphs>
    // Delete the following lines.
    <Top>0cm</Top>
    <Left>14.1cm</Left>
    <Height>0.423cm</Height>
    <Width>1.8cm</Width>
    // End of the deleted lines.

    <Style>
    ...

    Neuer Code 44

    ...
    </Paragraphs><Style>
    ...

    Vorhandenen Code 45

    ...
    </TextRuns></Paragraph>
    ...

    Ersetzungscode 45

    ...
    </TextRuns>
    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 46

    ...
    </Paragraphs>
    // Delete the following lines.
    <Top>0cm</Top>
    <Left>16.35cm</Left>
    <Height>0.423cm</Height>
    <Width>1.8cm</Width>
    // End of the deleted lines.

    <Style>
    ...

    Neuer Code 46

    ...
    </Paragraphs><Style>
    ...

    Vorhandenen Code 47

    ...
    </TextRuns></Paragraph>
    ...

    Neuer Code 47

    ...
    </TextRuns>
    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 48

    ...
    </TextRuns></Paragraph>
    ...

    Ersetzungscode 48

    ...
    </TextRuns>
    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 49

    ...
    </TextRuns></Paragraph>
    ...

    Ersetzungscode 49

    ...
    </TextRuns>
    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 50

    ...
    </TextRuns></Paragraph>
    ...

    Ersetzungscode 50

    ...
    </TextRuns>
    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 51

    ...</TablixMembers>
    <DataElementName>Detail_Collection</DataElementName>
    ...

    Neuer Code 51

    ...</TablixMembers>

    // Add the following lines.
    <Visibility>
    <Hidden>=IIF((Fields!G_L_Account___Net_Change_.Value<> 0),False,True )</Hidden>
    </Visibility>
    // End of the added lines.

    <DataElementName>Detail_Collection</DataElementName>
    ...

    Vorhandenen Code 52

    ...<Height>1.269cm</Height>
    </Tablix>
    ...

    Neuer Code 52

    ...<Height>1.269cm</Height>

    // Add the following lines.
    <Width>15.5cm</Width>
    <ZIndex>1</ZIndex>
    <Style />
    // End of the added lines.

    </Tablix>
    ...

    Vorhandenen Code 53

    ...<Height>2.115cm</Height>
    </Body>
    ...

    Ersetzungscode 53

    ...<Height>2.115cm</Height>

    // Add the following line.
    <Style />
    // End of the added line.

    </Body>
    ...

    Vorhandenen Code 54

    ...</Body>

    // Delete the following line.
    <Width>18.95cm</Width>
    // End of the deleted line.

    <Page>
    ...

    Neuer Code 54

    ...</Body>

    // Add the following lines.
    <Code>Public Function BlankZero(ByVal Value As Decimal)
    if Value = 0 then
    Return ""
    end if
    Return Value
    End Function

    Public Function BlankPos(ByVal Value As Decimal)
    if Value > 0 then
    Return ""
    end if
    Return Value
    End Function

    Public Function BlankZeroAndPos(ByVal Value As Decimal)
    if Value >= 0 then
    Return ""
    end if
    Return Value
    End Function

    Public Function BlankNeg(ByVal Value As Decimal)
    if Value < 0 then
    Return ""
    end if
    Return Value
    End Function

    Public Function BlankNegAndZero(ByVal Value As Decimal)
    if Value <= 0 then
    Return ""
    end if
    Return Value
    End Function
    </Code>
    <Width>22.775cm</Width>
    // End of the added lines.

    <Page>
    ...

    Vorhandenen Code 55

    ...<Width>3.25cm</Width>
    <Style>
    ...

    Ersetzungscode 55

    ...<Width>3.25cm</Width>

    // Add the following line.
    <ZIndex>1</ZIndex>
    // End of the added line.

    <Style>
    ...

    Vorhandenen Code 56

    ...
    <Width>3.15cm</Width><Style>
    ...

    Ersetzungscode 56

    ...
    <Width>3.15cm</Width>
    // Add the following line.
    <ZIndex>2</ZIndex>
    // End of the added line.

    <Style>
    ...

    Vorhandenen Code 57

    ...
    </TextRuns></Paragraph>
    ...

    Ersetzungscode 57

    ...
    </TextRuns>
    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 58

    ...
    <Width>7.5cm</Width><Style>
    ...

    Ersetzungscode 58

    ...
    <Width>7.5cm</Width>
    // Add the following line.
    <ZIndex>3</ZIndex>
    // End of the added line.

    <Style>
    ...

    Vorhandenen Code 59

    ...
    </TextRuns></Paragraph>
    ...

    Ersetzungscode 59

    ...
    </TextRuns>
    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 60

    ...
    <Width>7.5cm</Width><Style>
    ...

    Neuer Code 60

    ...
    <Width>7.5cm</Width>
    // Add the following line.
    <ZIndex>4</ZIndex>
    // End of the added line.

    <Style>
    ...

    Vorhandenen Code 61

    ...
    </TextRuns></Paragraph>
    ...

    Ersetzungscode 61

    ...
    </TextRuns>
    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 62

    ...
    <Width>7.5cm</Width><Style>
    ...

    Neuer Code 62

    ...
    <Width>7.5cm</Width>
    // Add the following line.
    <ZIndex>5</ZIndex>
    // End of the added line.

    <Style>
    ...

    Vorhandenen Code 63

    ...
    </TextRuns></Paragraph>
    ...

    Ersetzungscode 63

    ...
    </TextRuns>
    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 64

    ...
    <Width>0.75cm</Width><Style>
    ...

    Ersetzungscode 64

    ...
    <Width>0.75cm</Width>
    // Add the following line.
    <ZIndex>6</ZIndex>
    // End of the added line.

    <Style>
    ...

    Vorhandenen Code 65

    ...
    </TextRuns></Paragraph>
    ...

    Ersetzungscode 65

    ...
    </TextRuns>
    // Add the following line.
    <Style />
    // End of the added line.

    </Paragraph>
    ...

    Vorhandenen Code 66

    ...<BottomMargin>2cm</BottomMargin>
    </Page>
    ...

    Ersetzungscode 66

    ...<BottomMargin>2cm</BottomMargin>

    // Add the following line.
    <Style />
    // End of the added line.

    </Page>
    ...

    Vorhandenen Code 67

    ...</Page>
    </Report>
    ...

    Ersetzungscode 67

    ...</Page>

    // Add the following lines.
    <Language>=User!Language</Language>
    <ConsumeContainerWhitespace>true</ConsumeContainerWhitespace>
    <rd:ReportID>7ca5956a-9e85-4253-98fd-d228e8432978</rd:ReportID>
    <rd:ReportUnitType>Cm</rd:ReportUnitType>
    // End of the added lines.

    </Report>
    ...


Voraussetzungen

Schwedische Version von Microsoft Dynamics NAV 2013 verfügen, um diesen Hotfix installieren müssen.

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!

×