Applies ToMicrosoft Dynamics NAV 2009 R2 Dynamics NAV 2009 Service Pack 1

여기서는 Microsoft Dynamics 탐색의 네덜란드 (nl) 언어 로케일에 적용 됩니다.

증상

제안 개요 보고서 (11000001) 및 지불 내역 개요 보고서 (11000002)에서 IBAN 번호가 표시 되지 않습니다. 두 보고서에는 은행 계좌 번호입니다. 그러나 @ 계속 하시를 사용 하는 경우는 또한 보여 IBAN 번호는 머리와 선. 다음 제품에이 문제가 발생합니다.

  • 네덜란드어 버전의 Microsoft Dynamics 탐색 2009 R2

  • 네덜란드어 버전의 Microsoft Dynamics 탐색 2009 서비스 팩 1

해결 방법

핫픽스 정보

지원 되는 핫픽스를 Microsoft에서 출시 되었습니다. 이 문서에 설명 되어 있는 문제를 해결 하기 위한 것일 뿐입니다. 이러한 특정 문제가 발생 한 시스템에만 적용 됩니다. 이 핫픽스는 추가 테스트가 필요할 수 있습니다. 따라서이 문제의 영향이 심각 하지 다음 Microsoft Dynamics 탐색 2009 서비스 팩 또는이 핫픽스가 포함 된 다음 Microsoft Dynamics 탐색 버전까지 기다리는 것이 좋습니다.참고: 특별 한 경우 일반적으로 호출 취소 될 수도 있습니다 경우 기술 지원 담당자는 Microsoft Dynamics 및 관련 된 제품에 대 한 지원에 따른 비용이 특정 업데이트로 문제를 해결할 수 있다고 결정 합니다. 추가 지원 질문과 특정 업데이트가 필요 하지 않은 문제에는 일반 지원 비용이 적용 됩니다.

설치 정보

Microsoft는 모든 보증, 그림에 대 한 묵시적인 보증. 이 포함 되지만 상품성 또는 특정 목적에의 적합성의 묵시적된 보증에 국한 되지는 않습니다. 이 문서는 작성 하 고 프로시저를 디버깅할 데 사용 되는 도구 및 여기서 설명 하는 프로그래밍 언어에 익숙한 가정 합니다. Microsoft 지원 엔지니어는 특정 프로시저의 기능을 설명할 수 있습니다. 그러나이 예제에서는 추가 기능을 제공 하거나 특정 요구 사항에 맞도록 프로시저를 구성 하려면 수정 하지 않습니다.참고: 이 핫픽스를 설치 하기 전에 모든 Microsoft Navision 클라이언트 사용자가 시스템 로그를 확인 하십시오. Navision 응용 프로그램 서비스 (NAS) 클라이언트 사용자가 포함 됩니다. 이 핫픽스를 구현할 때 로그온 되어 있는 사용자만 클라이언트 수 있습니다.이 핫픽스를 구현 하려면 개발자 라이센스가 있어야 합니다.것을 권장 합니다 Windows 로그인 창이 나 데이터베이스 로그인 창에서 사용자 계정 "SUPER" 역할 ID를 할당할 수 사용자 계정 "SUPER" 역할 ID를 할당할 수 없습니다, 사용자 계정에 다음 권한이 있는지 확인 해야 합니다.

  • 변경할 수 있는 개체에 대 한 수정 권한이 있습니다.

  • 시스템 개체 ID 9015 개체 및 시스템 개체 ID 5210 개체에 대 한 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 서비스 팩 1

제거 정보

이 핫픽스를 제거할 수 없습니다.

상태

Microsoft는 이 문제가 '적용 대상' 섹션에 나열된 Microsoft 제품의 문제임을 확인했습니다.

참고: 이 문서는 Microsoft 지원 부서 내에서 직접 작성한 "빠른 게시" 문서입니다. 여기에 포함된 정보는 신흥 문제에 대한 응답으로 제공되었습니다. 신속히 사용할 수 있도록 작성되었으므로, 자료 입력 오류가 포함될 수 있으며 언제든지 예고없이 개정될 수 있습니다. 다른 고려 사항은 사용 약관을 참조하십시오.

도움이 더 필요하세요?

더 많은 옵션을 원하세요?

구독 혜택을 살펴보고, 교육 과정을 찾아보고, 디바이스를 보호하는 방법 등을 알아봅니다.

커뮤니티를 통해 질문하고 답변하고, 피드백을 제공하고, 풍부한 지식을 갖춘 전문가의 의견을 들을 수 있습니다.