使用 Microsoft 登录
登录或创建帐户。
你好,
使用其他帐户。
你有多个帐户
选择要登录的帐户。

本文适用于 Microsoft Dynamics 导航 (nl) 荷兰语言区域设置。

症状

IBAN 号码和付款的历史记录概览报告 (11000002) 方案概览报告 (11000001) 中不显示。这两个报告有银行帐号。但是,如果它们用了 SEPA,它们应在头部和行来显示 IBAN 数字。下列产品中发生此问题︰

  • 荷兰语版本的 Microsoft Dynamics 导航 2009 R2

  • 荷兰语版本的 Microsoft Dynamics 导航 2009 Service Pack 1

解决方案

修补程序信息

受支持的修补程序现已从 Microsoft 推出。然而,它仅用于纠正本文中描述的问题。它仅应用于正经历此特定问题的系统。此修补程序可能会接受进一步的测试。因此,如果这个问题没有对您造成严重的影响,我们建议您等待下一个 Microsoft Dynamics 导航 2009 服务包 或包含此修复程序的下一步的 Microsoft Dynamics 导航版本。

注意: 在特殊情况下,可免收的支持电话,可免收如果技术支持专业人员对 Microsoft Dynamics 和相关的产品的费用确定某个特定的更新能够解决您的问题。照常收取支持费用将应用于其他支持问题和对于特定更新无法解决的问题。


安装信息

Microsoft 提供的编程示例仅用于说明,没有任何明示或暗示的担保。这包括但不限于适销性或特定用途适用性的暗示担保。本文假定您熟悉所演示的编程语言和用于创建和调试过程的工具。Microsoft 的支持工程师可以帮助解释某个特定过程的功能。但是,他们不会修改这些示例以提供额外的功能或构建过程以满足您的特定要求。

注意:安装此修复程序之前,请验证所有 Microsoft Navision 客户端用户都注销系统。这包括 Microsoft Navision 应用程序服务 (NAS) 客户端的用户。要实现此修补程序时,在登录的唯一客户端用户。

若要实现此修补程序,必须使用开发人员许可证。

我们建议在 Windows 登录窗口或数据库登录窗口中的用户帐户将分配该"超级"角色 id。如果不能将用户帐户分配成"超级"角色 ID,则必须验证用户帐户具有下列权限:

  • 您将更改该对象的修改权限。

  • 为系统对象 ID ™ 5210对象和系统对象 ID 9015对象的 Execute 权限。



注意:您不需要具有对数据存储区的权限,除非您需要执行数据修复。

代码更改

注始终测试代码修补程序在受控环境中之前将修补程序应用到生产计算机。若要解决此问题,请执行以下步骤:

  1. 更改方案概览报告 (11000001) 中的代码,如下所示︰
    现有代码 1

    ...                                                         SourceExpr=Name+' ('+"No."+')';
    DataSetFieldName=Name_______No______ }
    { 47 ;TextBox ;2400 ;423 ;6600 ;423 ;FontBold=Yes;

    // Delete the following lines.
    SourceExpr="Bank Account No.";
    DataSetFieldName=Bank_Account__Bank_Account_No__ }
    // End of the lines.

    { 48 ;Label ;150 ;423 ;2100 ;423 ;ParentControl=47;
    FontBold=Yes;
    MultiLine=Yes;
    ...

    替换代码 1

    ...                                                         SourceExpr=Name+' ('+"No."+')';
    DataSetFieldName=Name_______No______ }
    { 47 ;TextBox ;2400 ;423 ;6600 ;423 ;FontBold=Yes;

    // Add the following lines.
    SourceExpr="Bank Account".IBAN;
    DataSetFieldName=Bank_Account__IBAN }
    // End of the lines.

    { 48 ;Label ;150 ;423 ;2100 ;423 ;ParentControl=47;
    FontBold=Yes;
    MultiLine=Yes;
    ...

    现有代码 2

    ...                                                         SourceExpr="Account No.";
    DataSetFieldName=Proposal_Line__Account_No__ }
    { 3 ;TextBox ;2250 ;1692 ;1800 ;423 ;HorzAlign=Left;

    // Delete the following lines.
    SourceExpr="Bank Account No.";
    DataSetFieldName=Proposal_Line__Bank_Account_No__ }
    // End of the lines.

    { 25 ;TextBox ;2250 ;423 ;1800 ;423 ;HorzAlign=Left;
    SourceExpr=FORMAT("Transaction Date");
    DataSetFieldName=FORMAT__Transaction_Date__ }
    ...

    现有代码 3

    ...          <TableGroup>
    <Grouping Name="Table1_Group1">
    <GroupExpressions>

    // Delete the following line.
    <GroupExpression>=Fields!Bank_Account__Bank_Account_No__.Value</GroupExpression>

    </GroupExpressions>
    </Grouping>
    <Header>
    ...

    替换代码 3

    ...          <TableGroup>
    <Grouping Name="Table1_Group1">
    <GroupExpressions>

    // Add the following line.
    <GroupExpression>=Fields!Bank_Account__IBAN.Value</GroupExpression>

    </GroupExpressions>
    </Grouping>
    <Header>
    ...

    现有代码 4

    ...                            <TextAlign>Left</TextAlign>
    <VerticalAlign>Middle</VerticalAlign>
    </Style>

    // Delete the following line.
    <Value>=Fields!Bank_Account__Bank_Account_No__.Value</Value>

    </Textbox>
    </ReportItems>
    </TableCell>
    ...

    替换代码 4

    ...                            <TextAlign>Left</TextAlign>
    <VerticalAlign>Middle</VerticalAlign>
    </Style>

    // Add the following line.
    <Value>=Fields!Bank_Account__IBAN.Value</Value>

    </Textbox>
    </ReportItems>
    </TableCell>
    ...

    现有代码 5

    ...                            <TextAlign>Left</TextAlign>
    <VerticalAlign>Middle</VerticalAlign>
    </Style>

    // Delete the following line.
    <Value>=Fields!Proposal_Line__Bank_Account_No__.Value</Value>

    </Textbox>
    </ReportItems>
    </TableCell>
    ...

    替换代码 5

    ...                            <TextAlign>Left</TextAlign>
    <VerticalAlign>Middle</VerticalAlign>
    </Style>

    // Delete the following line.
    <Value>=Fields!Proposal_Line__IBAN.Value</Value>

    </Textbox>
    </ReportItems>
    </TableCell>
    ...

    现有代码 6

    ...</Code>
    <DataSets>
    <DataSet Name="DataSet_Result">

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

    <Fields>
    <Field Name="Name_______No______">
    <DataField>Name_______No______</DataField>
    ...

    替换代码 6

    ...</Code>
    <DataSets>
    <DataSet Name="DataSet_Result">
    <Fields>
    <Field Name="Name_______No______">
    <DataField>Name_______No______</DataField>
    ...

    现有代码 7

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

    // Delete the following lines.
    <Field Name="Bank_Account__Bank_Account_No__">
    <DataField>Bank_Account__Bank_Account_No__</DataField>
    // End of the lines.

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

    替换代码 7

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

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

    现有代码 8

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

    // Delete the following lines.
    <Field Name="Proposal_Line__Bank_Account_No__">
    <DataField>Proposal_Line__Bank_Account_No__</DataField>
    // End of the lines.

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

    替换代码 8

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

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

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

    现有代码 9

    ...          <DataField>Venhist2_Entry_No_</DataField>
    </Field>
    </Fields>
    <rd:DataSetInfo>
    <rd:DataSetName>DataSet</rd:DataSetName>
    <rd:TableName>Result</rd:TableName>
    ...

    替换代码 9

    ...          <DataField>Venhist2_Entry_No_</DataField>
    </Field>
    </Fields>

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

    <rd:DataSetInfo>
    <rd:DataSetName>DataSet</rd:DataSetName>
    <rd:TableName>Result</rd:TableName>

    ...

    现有代码 10

    ...  <LeftMargin>1.5cm</LeftMargin>
    <PageHeight>29.7cm</PageHeight>
    <PageWidth>21cm</PageWidth>

    // Delete the following line.
    <RightMargin>0cm</RightMargin>

    <TopMargin>2cm</TopMargin>
    <Width>17.75cm</Width>
    <rd:DrawGrid>true</rd:DrawGrid>
    ...

    替换代码 10

    ...  <LeftMargin>1.5cm</LeftMargin>
    <PageHeight>29.7cm</PageHeight>
    <PageWidth>21cm</PageWidth>
    <TopMargin>2cm</TopMargin>
    <Width>17.75cm</Width>
    <rd:DrawGrid>true</rd:DrawGrid>
    ...

  2. 更改付款历史记录概览报告 (11000002) 中的代码,如下所示︰
    现有代码 1

    ...                                                         CaptionML=ENU=Credit limit;
    DataSetFieldName=Credit_limitCaption }
    { 92 ;TextBox ;2400 ;423 ;6600 ;423 ;FontBold=Yes;

    // Delete the following lines.
    SourceExpr="Bank Account No.";
    DataSetFieldName=Bank_Account__Bank_Account_No__ }
    // End of the lines.

    { 93 ;TextBox ;16050;423 ;1800 ;423 ;HorzAlign=Left;
    SourceExpr="Payment History";
    DataSetFieldName=Bank_Account__Payment_History_ }

    ...

    替换代码 1

    ...                                                         CaptionML=ENU=Credit limit;
    DataSetFieldName=Credit_limitCaption }
    { 92 ;TextBox ;2400 ;423 ;6600 ;423 ;FontBold=Yes;

    // Add the following lines.
    SourceExpr="Bank Account".IBAN;
    DataSetFieldName=Bank_Account__IBAN }
    // End of the lines.

    { 93 ;TextBox ;16050;423 ;1800 ;423 ;HorzAlign=Left;
    SourceExpr="Payment History";
    DataSetFieldName=Bank_Account__Payment_History_ }
    ...

    现有代码 2

    ...                                                         SourceExpr="Account No.";
    DataSetFieldName=Payment_History_Line__Account_No__ }
    { 112 ;TextBox ;2250 ;1692 ;1800 ;423 ;HorzAlign=Left;

    // Delete the following lines.
    SourceExpr="Bank Account No.";
    DataSetFieldName=Payment_History_Line__Bank_Account_No__ }
    // End of the lines.

    { 113 ;TextBox ;2250 ;423 ;1800 ;423 ;HorzAlign=Left;
    SourceExpr=FORMAT(Date);
    DataSetFieldName=FORMAT_Date_ }
    ...

    替换代码 2

    ...                                                         SourceExpr="Account No.";
    DataSetFieldName=Payment_History_Line__Account_No__ }
    { 112 ;TextBox ;2250 ;1692 ;1800 ;423 ;HorzAlign=Left;

    // Add the following lines.
    SourceExpr="Bank Account".IBAN;
    DataSetFieldName=Bank_Account__IBAN_ }
    // End of the lines.

    { 113 ;TextBox ;2250 ;423 ;1800 ;423 ;HorzAlign=Left;
    SourceExpr=FORMAT(Date);
    DataSetFieldName=FORMAT_Date_ }
    ...

    现有代码 3

    ...    <?xml version="1.0" encoding="utf-8"?>
    <Report xmlns="http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition" xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner">
    <Body>

    // Delete the following line.
    <Height>13.52495cm</Height>

    <ReportItems>
    <Table Name="Table1">
    <DataSetName>DataSet_Result</DataSetName>
    ...

    替换代码 3

    ...    <?xml version="1.0" encoding="utf-8"?>
    <Report xmlns="http://schemas.microsoft.com/sqlserver/reporting/2005/01/reportdefinition" xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner">
    <Body>

    // Add the following line.
    <Height>13.536cm</Height>

    <ReportItems>
    <Table Name="Table1">
    <DataSetName>DataSet_Result</DataSetName>
    ...

    现有代码 4

    ...                            <PaddingRight>2pt</PaddingRight>
    <PaddingTop>2pt</PaddingTop>
    </Style>

    // Delete the following line.
    <Value>=Fields!Bank_Account__Bank_Account_No__.Value</Value>

    </Textbox>
    </ReportItems>
    </TableCell>
    ...

    替换代码 4

    ...                            <PaddingRight>2pt</PaddingRight>
    <PaddingTop>2pt</PaddingTop>
    </Style>

    // Add the following line.
    <Value>=Fields!Bank_Account__IBAN.Value</Value>

    </Textbox>
    </ReportItems>
    </TableCell>
    ...

    现有代码 5

    ...                                </BorderWidth>
    </Style>
    <Top>0.2115cm</Top>

    // Delete the following line.
    <Width>4.259cm</Width>

    </Line>
    </ReportItems>
    <Style>
    ...

    替换代码 5

    ...                                </BorderWidth>
    </Style>
    <Top>0.2115cm</Top>
    </Line>
    </ReportItems>
    <Style>
    ...

    现有代码 6

    ...                            <PaddingRight>2pt</PaddingRight>
    <PaddingTop>2pt</PaddingTop>
    </Style>

    // Delete the following line.
    <Value>=Fields!Payment_History_Line__Bank_Account_No__.Value</Value>

    <rd:DefaultName>textbox110</rd:DefaultName>
    </Textbox>
    </ReportItems>
    ...

    替换代码 6

    ...                            <PaddingRight>2pt</PaddingRight>
    <PaddingTop>2pt</PaddingTop>
    </Style>

    // Add the following line.
    <Value>=Fields!Bank_Account__IBAN.Value</Value>

    <rd:DefaultName>textbox110</rd:DefaultName>
    </Textbox>
    </ReportItems>
    ...

    现有代码 7

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

    // Delete the following lines.
    <Field Name="Bank_Account__Bank_Account_No__">
    <DataField>Bank_Account__Bank_Account_No__</DataField>
    // End of the lines.

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

    替换代码 7

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

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

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

    现有代码 8

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

    // Delete the following lines.
    <Field Name="Payment_History_Line__Bank_Account_No__">
    <DataField>Payment_History_Line__Bank_Account_No__</DataField>
    // End of the lines.

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

    替换代码 8

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

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

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

    现有代码 9

    ...<LeftMargin>1.5cm</LeftMargin>
    <PageHeight>29.7cm</PageHeight>
    <PageWidth>21cm</PageWidth>

    // Delete the following lines.
    <RightMargin>0cm</RightMargin>
    <TopMargin>2cm</TopMargin>
    <Width>17.9cm</Width>
    // End of the lines.

    <rd:DrawGrid>true</rd:DrawGrid>
    <rd:GridSpacing>0.423cm</rd:GridSpacing>
    <rd:ReportID>39ad1153-3bfe-4ce3-b12a-1470b491c4fe</rd:ReportID>
    ...

    替换代码 9

    ...  <LeftMargin>1.5cm</LeftMargin>
    <PageHeight>29.7cm</PageHeight>
    <PageWidth>21cm</PageWidth>

    // Add the following lines.
    <TopMargin>2cm</TopMargin>
    <Width>17.95291cm</Width>
    // End of the lines.

    <rd:DrawGrid>true</rd:DrawGrid>
    <rd:GridSpacing>0.423cm</rd:GridSpacing>
    <rd:ReportID>39ad1153-3bfe-4ce3-b12a-1470b491c4fe</rd:ReportID>
    ...

系统必备组件

您必须具有要应用此修补程序的安装以下产品之一︰

  • 荷兰语版本的 Microsoft Dynamics 导航 2009 R2

  • 荷兰语版本的 Microsoft Dynamics 导航 2009 Service Pack 1

删除信息

您不能删除此修补程序。

状态

Microsoft 已经确认这是“适用于”一节中列出的 Microsoft 产品中的问题。

注意:这是直接从创建 Microsoft 支持部门内的"快速发布"的文章。此处包含的信息是作为为了响应新出现的问题而提供的。由于以使其可用的速度,而材料可能包含印刷错误,恕不另行通知,随时可能进行修订。其他考虑因素,请参阅使用条款

需要更多帮助?

需要更多选项?

了解订阅权益、浏览培训课程、了解如何保护设备等。

社区可帮助你提出和回答问题、提供反馈,并听取经验丰富专家的意见。

此信息是否有帮助?

你对语言质量的满意程度如何?
哪些因素影响了你的体验?
按“提交”即表示你的反馈将用于改进 Microsoft 产品和服务。 你的 IT 管理员将能够收集此数据。 隐私声明。

谢谢您的反馈!

×