この資料は、Microsoft Dynamics nav (nl) のオランダ語のロケールに当てはまります。

現象

提案書の概要レポート (11000001) と支払履歴の概要レポート (11000002) では、IBAN 番号は表示されません。両方のレポートには、銀行口座番号があります。ただし、SEPA を使用する場合する必要がありますも示します IBAN 番号、ヘッダーと明細行に。この問題は、次の製品で発生します。

  • Microsoft Dynamics NAV 2009 の R2 のオランダ語版

  • オランダ語版の Microsoft Dynamics NAV 2009 サービス パック 1

解決策

修正プログラムの情報

サポートされている修正プログラムはマイクロソフトから現在入手可能です。ただし、この資料に記載されている問題を解決するためのものはのみ。この特定の問題が発生したシステムにのみ適用してください。この修正プログラムは、今後さらにテストを行うことがあります。この問題で深刻な影響を受けていない場合は、次の Microsoft Dynamics NAV 2009 サービス パックまたは修正プログラムを含む次の Microsoft Dynamics NAV バージョン待つことを勧めします。注: かかる料金が免除されるテクニカル サポート担当者 Microsoft Dynamics および関連製品のことは、通常は特別な場合は、特定の更新プログラムは、問題を解決するにを決定します。追加の質問および問題の特定のアップデートの対象にはなりませんが、通常のサポート料金が適用されます。

インストール情報

マイクロソフトでは解説することのみを目的としてプログラミング例を提供しています。暗示あるいは明示していることに対しての保証はしておりません。ここで言う保証とは、特定の目的に対する商品性や適合性の暗示的保証を含んでいますが、それに限定されるわけではありません。この資料では、例示されているプログラミング言語およびプロシージャの作成やデバッグに使用するツールにお客様が精通していることを前提としています。マイクロソフトのサポート エンジニアは、特定のプロシージャの機能について説明することができます。ただし、お客様固有の要件を満たすために、追加機能の提供またはプロシージャの作成のために、これらの例に変更を加えたりはしません。注: この修正プログラムをインストールする前に、Microsoft Navision のすべてのクライアント ユーザーがシステムの電源を記録することを確認します。これには、Microsoft Navision アプリケーション サービス (NAS) クライアントのユーザーが含まれます。この修正プログラムを実装すると、ログオンしている唯一のクライアント ユーザーが必要です。この修正プログラムを実装するには、開発者用のライセンスが必要です。ユーザー アカウントまたはデータベース ログイン ウィンドウに Windows のログイン ウィンドウにある「スーパー」ロール id を割り当てられていることをお勧めします。ユーザー アカウントには、「スーパー」ロール ID を割り当てることができません、する場合は、ユーザー アカウントが次のアクセス許可を持っているを確認する必要があります。

  • 変更するオブジェクトの変更のアクセス許可。

  • システム オブジェクトの 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>...

必要条件

この修正プログラムを適用するのにはインストールされている製品は次のいずれかが必要です。

  • Microsoft Dynamics NAV 2009 の R2 のオランダ語版

  • オランダ語版の Microsoft Dynamics NAV 2009 サービス パック 1

アンインストール情報

この修正プログラムを削除することはできません。

状況

マイクロソフトは、この問題を「対象製品」セクションに記載されているマイクロソフト製品の問題として認識しています。

注: これは、マイクロソフト サポートの組織内から直接作成した「高速公開」の資料です。ここに含まれる情報は、新たに発生している問題に応じて現状のまま提供されています。速やかに利用できるようにした結果として、内容には誤植が含まれている可能性があり、事前告知なしで改訂する場合があります。その他の考慮事項については、使用条件を参照してください。

ヘルプを表示

その他のオプションが必要ですか?

サブスクリプションの特典の参照、トレーニング コースの閲覧、デバイスのセキュリティ保護方法などについて説明します。

コミュニティは、質問をしたり質問の答えを得たり、フィードバックを提供したり、豊富な知識を持つ専門家の意見を聞いたりするのに役立ちます。