Se connecter avec Microsoft
S'identifier ou créer un compte.
Bonjour,
Sélectionnez un autre compte.
Vous avez plusieurs comptes
Choisissez le compte avec lequel vous voulez vous connecter.

Cet article s’applique à Microsoft Dynamics NAV pour le paramètres régionaux de langue pays-bas (nl).

Symptômes

Les numéros IBAN ne sont pas affichés dans le rapport de vue d’ensemble de la proposition (11000001) et dans le rapport de vue d’ensemble de l’historique de paiement (11000002). Ces deux rapports utilisent le numéro de compte bancaire. Toutefois, si elles utilisent SEPA, qu’ils doivent également afficher les numéros IBAN dans une tête et les lignes. Ce problème se produit dans les produits suivants :

  • La version néerlandaise de Microsoft Dynamics NAV 2009 R2

  • La version néerlandaise de Microsoft Dynamics NAV 2009 Service Pack 1

Résolution

Informations sur le correctif

Un correctif pris en charge est désormais disponible auprès de Microsoft. Toutefois, il est conçu uniquement pour corriger le problème décrit dans cet article. Il s’applique uniquement aux systèmes rencontrant ce problème spécifique. Ce correctif peut subir des tests supplémentaires. Par conséquent, si vous n’êtes pas sérieusement concerné par ce problème, nous vous recommandons d’attendre le prochain service pack Microsoft Dynamics NAV 2009 ou la prochaine version de Microsoft Dynamics NAV qui comprendra ce correctif.

Remarque Dans certains cas, les frais généralement encourus pour la prise en charge des appels peuvent être annulés si un technicien du Support technique pour Microsoft Dynamics et les produits associés détermine qu’une mise à jour spécifique peut résoudre votre problème. Les coûts habituels du support technique s’appliqueront aux autres questions et problèmes qui ne relèvent pas de la mise à jour spécifique en question.


Informations sur l’installation

Microsoft fournit des exemples de programmation à titre d'illustration uniquement, sans garantie expresse ou implicite. Ceci inclut, mais n'est pas limité à, les garanties implicites de qualité marchande ou d'adéquation à un usage particulier. Cet article suppose que vous êtes familiarisé avec le langage de programmation présenté et les outils utilisés pour créer et déboguer des procédures. Les ingénieurs du support technique Microsoft peuvent aider à expliquer la fonctionnalité d'une procédure particulière. Toutefois, ils ne modifieront pas ces exemples pour fournir des fonctionnalités supplémentaires ou créer des procédures répondant à vos besoins spécifiques.

Remarque Avant d’installer ce correctif, vérifiez que tous les utilisateurs du client Microsoft Navision sont enregistrés sur le système. Cela inclut les utilisateurs du client Microsoft Navision Application Services (NAS). Vous devez être le seul utilisateur client connecté lors de l’implémentation de ce correctif.

Pour appliquer ce correctif, vous devez posséder une licence développeur.

Il est recommandé que le compte d’utilisateur dans la fenêtre Logins Windows ou dans la fenêtre Logins base de données est affecté à l’ID de rôle « SUPER ». Si le compte d’utilisateur ne peut pas être affecté à l’ID de rôle « SUPER », vous devez vérifier que le compte d’utilisateur dispose des autorisations suivantes :

  • L’autorisation de modification pour l’objet que vous allez modifier.

  • L’autorisation d’exécution pour l’objet ID objet système 5210 et pour l’objet ID objet système 9015 .



Remarque Vous n’êtes pas obligé de disposer des droits pour les banques de données excepté si vous devez réparer des données.

Modifications du code

Remarque Testez toujours les correctifs de code dans un environnement contrôlé avant d’appliquer les correctifs à vos ordinateurs de production. Pour résoudre ce problème, procédez comme suit :

  1. Modifiez le code dans l’état de la vue d’ensemble de la proposition (11000001) comme suit :
    Code existant 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;
    ...

    Code de substitution 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;
    ...

    Code existant 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__ }
    ...

    Code existant 3

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

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

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

    Code de substitution 3

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

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

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

    4 le code existant

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

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

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

    Code de remplacement 4

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

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

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

    Code existant 5

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

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

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

    Code de remplacement 5

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

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

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

    6 le code existant

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

    Code de remplacement 6

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

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

    Code de remplacement 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>
    ...

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

    Code de remplacement 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>
    ...

    Code existant 9

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

    Code de remplacement 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>

    ...

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

    Code de remplacement 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. Modifiez le code dans l’état de la vue d’ensemble de l’historique de paiement (11000002) comme suit :
    Code existant 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_ }

    ...

    Code de substitution 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_ }
    ...

    Code existant 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_ }
    ...

    Code de substitution 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_ }
    ...

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

    Code de substitution 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 le code existant

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

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

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

    Code de remplacement 4

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

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

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

    Code existant 5

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

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

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

    Code de remplacement 5

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

    6 le code existant

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

    Code de remplacement 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>
    ...

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

    Code de remplacement 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>
    ...

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

    Code de remplacement 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>
    ...

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

    Code de remplacement 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>
    ...

Conditions préalables

Vous devez disposer d’un des produits suivants est installé pour appliquer ce correctif :

  • La version néerlandaise de Microsoft Dynamics NAV 2009 R2

  • La version néerlandaise de Microsoft Dynamics NAV 2009 Service Pack 1

Informations sur la suppression

Vous ne pouvez pas supprimer ce correctif.

État

Microsoft a confirmé l'existence de ce problème dans les produits Microsoft répertoriés dans la section « S'applique à ».

Remarque Il s’agit d’un article de « Dernière minute » créé directement à partir de l’organisation de support technique de Microsoft. Les informations contenues dans ce document sont fournies en l'état, en réponse à des problèmes nouveaux. En raison de la rapidité de leur mise à disposition, les documents peuvent contenir des erreurs typographiques et peuvent être révisés à tout moment sans préavis. Consultez les Conditions d’utilisation pour d’autres considérations.

Besoin d’aide ?

Vous voulez plus d’options ?

Explorez les avantages de l’abonnement, parcourez les cours de formation, découvrez comment sécuriser votre appareil, etc.

Les communautés vous permettent de poser des questions et d'y répondre, de donner vos commentaires et de bénéficier de l'avis d'experts aux connaissances approfondies.

Ces informations vous ont-elles été utiles ?

Dans quelle mesure êtes-vous satisfait(e) de la qualité de la langue ?
Qu’est-ce qui a affecté votre expérience ?
En cliquant sur Envoyer, vos commentaires seront utilisés pour améliorer les produits et services de Microsoft. Votre administrateur informatique sera en mesure de collecter ces données. Déclaration de confidentialité.

Nous vous remercions de vos commentaires.

×