Applies To
Microsoft Dynamics NAV 2009 R2 Dynamics NAV 2009 Service Pack 1

本文適用於 Microsoft 動態航行點荷蘭 (nl) 的語言地區設定。

狀況

IBAN 數字時,不會顯示在提案概觀報表 (11000001) 和付款歷程記錄概觀報表 (11000002)。兩個報表有銀行帳戶號碼。不過,如果他們使用 SEPA 時,它們應該在前端和行顯示 IBAN 數字。下列產品中,就會發生這個問題︰

  • 荷蘭文版本的 Microsoft 動態航行點 2009 R2

  • 荷蘭文版本的 Microsoft 動態航行點 2009 Service Pack 1

解決方案

Hotfix 資訊

已經可以從 Microsoft 取得支援的 hotfix。不過,它只被用來修正本文所述的問題。它只適用於發生此特定問題的系統上。此 hotfix 可能會接受其他測試。因此,如果此問題不會嚴重影響,我們建議您等候下一步的 Microsoft 動態航行點 2009 service pack 或包含此 hotfix 的下一個 Microsoft 動態航行點版本。注意 在特殊的情況下,通常會支援呼叫可能已被取消如果技術支援專業人員的 Microsoft 動態及相關的產品所產生的費用會決定某特定更新程式可以解決您的問題。收取支援費用會套用,如果有其他支援問題是,不能限定的特定更新程式。

安裝資訊

Microsoft 會提供程式設計範例僅供說明,而不做任何明示或默示的保證。這包括,但不限於適售性或適合某特定用途之默示擔保責任。本文假設您已相當熟悉使用的我們所示範的程式設計語言以及建立和偵錯程序所使用的工具。Microsoft 技術支援工程師可以協助解釋特定程序的功能。不過,它們不會修改這些範例以提供附加功能或建構程序來滿足您特定需求。注意套用此 hotfix 之前,請確認所有的 Microsoft Navision 用戶端使用者會登出系統。這包括 Microsoft Navision 應用程式服務 (NAS) 用戶端的使用者。您應該是唯一的用戶端使用者已登入,當您實作此 hotfix。若要實作此 hotfix,您必須有開發人員授權。我們建議您在 Windows 登入] 視窗中的色彩,或資料庫登入] 視窗中的使用者帳戶被指派 「 進階 」 的角色識別碼。如果使用者帳戶不能指派為 「 超級 」 的角色識別碼,您必須確認使用者帳戶具有下列權限︰

  • 您將會變更物件的 [修改] 權限。

  • 執行權限的系統物件 ID 5210物件和系統物件 ID 9015物件。

注意您沒有擁有資料存放區的權限,除非您需要執行資料修復。

程式碼變更

注意一定要測試程式碼修正在受控制的環境中生產電腦套用修正程式之前。若要解決這個問題,請依照下列步驟執行:

  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>...

先決條件

您必須具備套用此 hotfix 之後安裝下列產品的其中一個︰

  • 荷蘭文版本的 Microsoft 動態航行點 2009 R2

  • 荷蘭文版本的 Microsoft 動態航行點 2009 Service Pack 1

移除資訊

您無法移除此 hotfix。

狀態

Microsoft 已確認這是<套用>一節所列出的 Microsoft 產品的問題。

注意這是直接從 Microsoft 支援組織內建立的「快速發行」文件。本文件所包含的現狀資訊是針對新興問題的回應。為縮短使其可用的時程,資料可能會包含印刷錯誤,且可能會隨時進行修改而不另行通知。如其他考量,請參閱 「使用規定」。

Need more help?

Want more options?

探索訂閱權益、瀏覽訓練課程、瞭解如何保護您的裝置等等。