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 Espagnol (es).

Symptômes

Lorsque vous exécutez des rapports 205 et 405 dans la version espagnole de Microsoft Dynamics NAV 2013, les titres des colonnes sont manquantes dans la section détail de montant TVA acompte.

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 2013 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 Toujours tester le code des correctifs 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 de propriétés dans le rapport de Confirmation de la commande (205) comme suit :
    Code existant

    ...                 SourceExpr=PrepmtVATAmountLine."VAT Identifier" }

    { 191 ;4 ;Column ;PrepaymentVATAmtSpecCaption;
    SourceExpr=PrepaymentVATAmtSpecCaptionLbl }

    { 7808;3 ;DataItem;PrepmtTotal ;
    DataItemTable=Table2000000026;
    DataItemTableView=SORTING(Number)
    WHERE(Number=CONST(1));
    OnPreDataItem=BEGIN
    ...

    Code de remplacement

    ...                 SourceExpr=PrepmtVATAmountLine."VAT Identifier" }

    { 191 ;4 ;Column ;PrepaymentVATAmtSpecCaption;
    SourceExpr=PrepaymentVATAmtSpecCaptionLbl }

    // Add the following lines.
    { 1101001;4;Column ;PrepmtVATPercentCaption;
    SourceExpr=VATPecrentCaptionLbl }

    { 1101002;4;Column ;PrepmtVATBaseCaption;
    SourceExpr=VATECBaseCaptionLbl }

    { 1101003;4;Column ;PrepmtVATAmtCaption ;
    SourceExpr=VATAmountCaptionLbl }

    { 1101004;4;Column ;PrepmtVATIdentCaption;
    SourceExpr=VATIdentifierCaptionLbl }

    { 1101005;4;Column ;PrepmtLineAmtCaption;
    SourceExpr=LineAmountCaptionLbl }

    { 1101006;4;Column ;PrepmtTotalCaption ;
    SourceExpr=TotalCaptionLbl }

    // End of the lines.

    { 7808;3 ;DataItem;PrepmtTotal ;
    DataItemTable=Table2000000026;
    DataItemTableView=SORTING(Number)
    WHERE(Number=CONST(1));
    OnPreDataItem=BEGIN
    ...

  2. Modifiez le code dans la fonction BlanksForIndent dans le rapport de Confirmation de la commande (205) comme suit :
    Code existant 1

    ...            <DataField>VATIdentifier_PrepmtVATAmtLine</DataField>
    </Field>
    <Field Name="PrepaymentVATAmtSpecCaption">
    <DataField>PrepaymentVATAmtSpecCaption</DataField>
    </Field>
    <Field Name="PrepmtPaymentTermsDesc">
    <DataField>PrepmtPaymentTermsDesc</DataField>
    </Field>
    <Field Name="PrepmtPaymentTermsCaption">
    <DataField>PrepmtPaymentTermsCaption</DataField>
    ...

    Code de substitution 1

    ...            <DataField>VATIdentifier_PrepmtVATAmtLine</DataField>
    </Field>
    <Field Name="PrepaymentVATAmtSpecCaption">
    <DataField>PrepaymentVATAmtSpecCaption</DataField>
    </Field>

    // Add the following lines.
    <Field Name="PrepmtVATPercentCaption">
    <DataField>PrepmtVATPercentCaption</DataField>
    </Field>
    <Field Name="PrepmtVATBaseCaption">
    <DataField>PrepmtVATBaseCaption</DataField>
    </Field>
    <Field Name="PrepmtVATAmtCaption">
    <DataField>PrepmtVATAmtCaption</DataField>
    </Field>
    <Field Name="PrepmtVATIdentCaption">
    <DataField>PrepmtVATIdentCaption</DataField>
    </Field>
    <Field Name="PrepmtLineAmtCaption">
    <DataField>PrepmtLineAmtCaption</DataField>
    </Field>
    <Field Name="PrepmtTotalCaption">
    <DataField>PrepmtTotalCaption</DataField>
    </Field>
    // End of the lines.

    <Field Name="PrepmtPaymentTermsDesc">
    <DataField>PrepmtPaymentTermsDesc</DataField>
    </Field>
    <Field Name="PrepmtPaymentTermsCaption">
    <DataField>PrepmtPaymentTermsCaption</DataField>
    ...

    Code existant 2

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

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

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    Code de substitution 2

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

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

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    Code existant 3

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

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

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    Code de substitution 3

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

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

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    4 le code existant

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

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

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    Code de remplacement 4

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

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

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    Code existant 5

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

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

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    Code de remplacement 5

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

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

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    6 le code existant

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

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

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    Code de remplacement 6

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

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

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    Code existant 7

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

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

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    Code de remplacement 7

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

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

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

  3. Modifiez le code des propriétés de l’état de la commande (405) comme suit :
    Code existant

    ...                 SourceExpr=PrepmtVATAmountLine."VAT Identifier" }

    { 203 ;4 ;Column ;PrepmtVATAmtSpecCaption;
    SourceExpr=PrepmtVATAmtSpecCaptionLbl }

    { 7808;3 ;DataItem;PrepmtTotal ;
    DataItemTable=Table2000000026;
    DataItemTableView=SORTING(Number)
    WHERE(Number=CONST(1));
    OnPreDataItem=BEGIN
    ...

    Code de remplacement

    ...                 SourceExpr=PrepmtVATAmountLine."VAT Identifier" }

    { 203 ;4 ;Column ;PrepmtVATAmtSpecCaption;
    SourceExpr=PrepmtVATAmtSpecCaptionLbl }

    // Add the following lines.
    { 1101001;4;Column ;PrepmtVATPercentCaption;
    SourceExpr=VATPercentCaptionLbl }

    { 1101002;4;Column ;PrepmtVATBaseCaption;
    SourceExpr=VATBaseCaptionLbl }

    { 1101003;4;Column ;PrepmtVATAmtCaption ;
    SourceExpr=VATAmtCaptionLbl }

    { 1101004;4;Column ;PrepmtVATIdentCaption;
    SourceExpr=VATIdentCaptionLbl }

    { 1101005;4;Column ;PrepmtLineAmtCaption;
    SourceExpr=LineAmtCaptionLbl }

    { 1101006;4;Column ;PrepmtTotalCaption ;
    SourceExpr=TotalCaptionLbl }

    // End of the lines.

    { 7808;3 ;DataItem;PrepmtTotal ;
    DataItemTable=Table2000000026;
    DataItemTableView=SORTING(Number)
    WHERE(Number=CONST(1));
    OnPreDataItem=BEGIN
    --------------------------------------------------------------------------------

    ...

  4. Modifiez le code dans la fonction InitializeRequest de l’état de la commande (405) comme suit :
    Code existant 1

    ...            <DataField>PrepmtVATAmtLineVATIdentifier</DataField>
    </Field>
    <Field Name="PrepmtVATAmtSpecCaption">
    <DataField>PrepmtVATAmtSpecCaption</DataField>
    </Field>
    </Fields>
    <Query>
    <DataSourceName>DataSource</DataSourceName>
    <CommandText />
    </Query>
    ...

    Code de substitution 1

    ...            <DataField>PrepmtVATAmtLineVATIdentifier</DataField>
    </Field>
    <Field Name="PrepmtVATAmtSpecCaption">
    <DataField>PrepmtVATAmtSpecCaption</DataField>
    </Field>

    // Add the following lines.
    <Field Name="PrepmtVATPercentCaption">
    <DataField>PrepmtVATPercentCaption</DataField>
    </Field>
    <Field Name="PrepmtVATBaseCaption">
    <DataField>PrepmtVATBaseCaption</DataField>
    </Field>
    <Field Name="PrepmtVATAmtCaption">
    <DataField>PrepmtVATAmtCaption</DataField>
    </Field>
    <Field Name="PrepmtVATIdentCaption">
    <DataField>PrepmtVATIdentCaption</DataField>
    </Field>
    <Field Name="PrepmtLineAmtCaption">
    <DataField>PrepmtLineAmtCaption</DataField>
    </Field>
    <Field Name="PrepmtTotalCaption">
    <DataField>PrepmtTotalCaption</DataField>
    </Field>
    // End of the lines.

    </Fields>
    <Query>
    <DataSourceName>DataSource</DataSourceName>
    <CommandText />
    </Query>
    ...

    Code existant 2

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

    // Delete the following line.
    <Value>=First(Fields!VATIdentCaption.Value)</Value>

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    Code de substitution 2

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

    // Add the following line.
    <Value>=First(Fields!PrepmtVATIdentCaption.Value)</Value>

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    Code existant 3

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

    // Delete the following line.
    <Value>=First(Fields!VATPercentCaption.Value)</Value>

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    Code de substitution 3

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

    // Add the following line.
    <Value>=First(Fields!PrepmtVATPercentCaption.Value)</Value>

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    4 le code existant

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

    // Delete the following line.
    <Value>=First(Fields!LineAmtCaption.Value)</Value>

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    Code de remplacement 4

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

    // Add the following line.
    <Value>=First(Fields!PrepmtLineAmtCaption.Value)</Value>

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    Code existant 5

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

    // Delete the following line.
    <Value>=First(Fields!VATBaseCaption.Value)</Value>

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    Code de remplacement 5

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

    // Add the following line.
    <Value>=First(Fields!PrepmtVATBaseCaption.Value)</Value>

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    6 le code existant

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

    // Delete the following line.
    <Value>=First(Fields!VATAmtCaption.Value)</Value>

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    Code de remplacement 6

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

    // Add the following line.
    <Value>=First(Fields!PrepmtVATAmtCaption.Value)</Value>

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

    Code existant 7

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

    // Delete the following line.
    <Value>=First(Fields!TotalCaption.Value)</Value>

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>

    Code de remplacement 7

    ...                                          <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>

    // Add the following line.+ <Value>=First(Fields!PrepmtTotalCaption.Value)</Value>

    <Style>
    <FontStyle>Normal</FontStyle>
    <FontFamily>Segoe UI</FontFamily>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    ...

Conditions préalables

Vous devez disposer de la version espagnole de Microsoft Dynamics NAV 2013 est installé pour appliquer ce correctif.

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.

×