Entrar com a conta da Microsoft
Entrar ou criar uma conta.
Olá,
Selecionar uma conta diferente.
Você tem várias contas
Escolha a conta com a qual você deseja entrar.

Este artigo se aplica ao Microsoft Dynamics NAV para a região de espanhol (es).

Sintomas

Quando você seleciona o Show AutoInvoices / Autocr. memorando opção para o relatório do Livro de notas fiscais de vendas na versão espanhola do Microsoft Dynamics NAV 2013, o relatório exibe valores incorretos de Número Serial e o Total de AutoInvoices e AutoCreditMemos.

Resolução

Informações sobre o hotfix

Um hotfix suportado está disponível agora na Microsoft. No entanto, apenas destina-se a corrigir o problema descrito neste artigo. Aplique-o somente aos sistemas que apresentarem esse problema específico. Esta correção poderá ser submetida a testes adicionais. Portanto, se esse problema não o prejudicar, recomendamos que você aguarde o próximo service pack do Microsoft Dynamics NAV 2013 ou a próxima versão do Microsoft Dynamics NAV que contém esse hotfix.

Observação: Em alguns casos, as taxas cobradas para suporte a chamadas podem ser canceladas se um profissional de suporte técnico do Microsoft Dynamics e produtos relacionados determina que uma atualização específica resolverá o problema. Os custos normais de suporte serão aplicados para questões de suporte adicionais e problemas que não se qualificam à atualização específica em questão.

Informações sobre a instalação

A Microsoft fornece exemplos de programação somente para ilustração, sem garantia expressa ou implícita. Isso inclui, mas não está limitado a, garantias implícitas de comercialização ou adequação a um propósito específico. Este artigo presume que você esteja familiarizado com a linguagem de programação que está sendo demonstrada e com as ferramentas usadas para criar e depurar procedimentos. Os engenheiros de suporte da Microsoft podem ajudar a explicar a funcionalidade de um determinado procedimento. No entanto, eles não modificarão esses exemplos para fornecer funcionalidades adicionais ou construir procedimentos para atender às suas necessidades específicas.

Observação: Antes de instalar esse hotfix, verifique se todos os usuários do cliente do Microsoft Dynamics NAV estiver desconectados do sistema. Isso inclui os serviços do Microsoft Dynamics NAV Application Server (NAS). Você deve ser o único usuário do cliente conectado ao implementar esse hotfix.

Para implementar esse hotfix, você deve ter uma licença de desenvolvedor.

É recomendável que a conta de usuário na janela de Logins do Windows ou na janela banco de dados seja atribuída a ID de função "SUPER". Se a conta de usuário não pode ser atribuída a ID de função "SUPER", você deverá verificar se a conta de usuário tem as seguintes permissões:

  • A permissão Modificar para o objeto que será alterado.

  • A permissão de execução para o objeto 5210 de identificação de objeto de sistema e o sistema 9015 de identificação de objeto

    objeto.

Observação: Você não precisa ter direitos para os armazenamentos de dados, a menos que você precise executar o reparo de dados.

Alterações de código

Observação: Sempre teste código correções em um ambiente controlado antes de aplicar as correções para os computadores de produção.

Para resolver esse problema, execute as seguintes etapas:

  1. Altere o código nas propriedades do relatório de livro de notas fiscais de vendas (10704) da seguinte forma:
    Código existente

    ...SourceExpr=VATBuffer2.Base + VATBuffer2.Amount }

    { 1170000028;3;Column;Integer2__Number ;
    SourceExpr=Number }

    // Delete the following lines.
    { 113 ;3 ;Column ;TotalCaption_Control113;
    SourceExpr=TotalCaption_Control113Lbl }
    // End of the deleted lines.

    }
    REQUESTPAGE
    {
    PROPERTIES
    {
    ...

    Código de substituição

    ...SourceExpr=VATBuffer2.Base + VATBuffer2.Amount }

    { 1170000028;3;Column;Integer2__Number ;
    SourceExpr=Number }

    }
    REQUESTPAGE
    {
    PROPERTIES
    {
    ...
  2. Altere o código em variáveis globais no relatório do livro de notas fiscais de vendas (10704) da seguinte forma:
    1 de código existente

    ...ContinuedCaption_Control129Lbl@6504 : TextConst 'ENU=Continued;ESP=Continuaci¢n';
    No_SerieCaptionLbl@1947 : TextConst 'ENU=No.Serie;ESP=Nos. serie';
    TotalCaption_Control99Lbl@8494 : TextConst 'ENU=Total;ESP=Total';
    No_SerieCaption_Control100Lbl@2401 : TextConst 'ENU=No.Serie;ESP=Nos. serie';
    ContinuedCaption_Control117Lbl@4855 : TextConst 'ENU=Continued;ESP=Continuaci¢n';

    // Delete the following line.
    TotalCaption_Control113Lbl@4508 : TextConst 'ENU=Total;ESP=Total';
    // End of the deleted line.

    BEGIN
    {
    <changelog>
    <add id="ES0001" dev="VGARCA" date="2004-08-27" area="AUTOINV" request="ES-START-40"
    ...

    1 código de substituição

    ...ContinuedCaption_Control129Lbl@6504 : TextConst 'ENU=Continued;ESP=Continuaci¢n';
    No_SerieCaptionLbl@1947 : TextConst 'ENU=No.Serie;ESP=Nos. serie';
    TotalCaption_Control99Lbl@8494 : TextConst 'ENU=Total;ESP=Total';
    No_SerieCaption_Control100Lbl@2401 : TextConst 'ENU=No.Serie;ESP=Nos. serie';
    ContinuedCaption_Control117Lbl@4855 : TextConst 'ENU=Continued;ESP=Continuaci¢n';

    BEGIN
    {
    <changelog>
    <add id="ES0001" dev="VGARCA" date="2004-08-27" area="AUTOINV" request="ES-START-40"
    ...

    2 de código existente

    ...<DataField>VATBuffer2_Base_VATBuffer2_Amount_Control116Format</DataField>
    </Field>
    <Field Name="Integer2__Number">
    <DataField>Integer2__Number</DataField>
    </Field>

    // Delete the following lines.
    <Field Name="TotalCaption_Control113">
    <DataField>TotalCaption_Control113</DataField>
    </Field>
    // End of the deleted lines.

    </Fields>
    <rd:DataSetInfo>
    <rd:DataSetName>DataSet</rd:DataSetName>
    <rd:SchemaPath>Report.xsd</rd:SchemaPath>
    <rd:TableName>Result</rd:TableName>
    ...

    Código de substituição 2

    ...<DataField>VATBuffer2_Base_VATBuffer2_Amount_Control116Format</DataField>
    </Field>
    <Field Name="Integer2__Number">
    <DataField>Integer2__Number</DataField>
    </Field>
    </Fields>
    <rd:DataSetInfo>
    <rd:DataSetName>DataSet</rd:DataSetName>
    <rd:SchemaPath>Report.xsd</rd:SchemaPath>
    <rd:TableName>Result</rd:TableName>
    ...

    3 de código existente

    ...<TextRun>
    <Value>=SUM(Fields!VATBuffer2_Base.Value)</Value>
    <Style>
    <FontSize>7pt</FontSize>
    <FontWeight>Bold</FontWeight>

    // Delete the following line.
    <Format>=Last(Fields!VATBuffer2_BaseFormat.Value)</Format>
    // End of the deleted line.

    </Style>
    </TextRun>
    </TextRuns>
    </Paragraph>
    </Paragraphs>
    ...

    Código de substituição 3

    ...<TextRun>
    <Value>=SUM(Fields!VATBuffer2_Base.Value)</Value>
    <Style>
    <FontSize>7pt</FontSize>
    <FontWeight>Bold</FontWeight>

    // Add the following line.
    <Format>N</Format>
    // End of the added line.

    </Style>
    </TextRun>
    </TextRuns>
    </Paragraph>
    </Paragraphs>
    ...

    4 de código existente

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

    // Delete the following line.
    <Value>=Fields!TotalCaption_Control113.Value</Value>
    // End of the deleted line.

    <Style>
    <FontSize>7pt</FontSize>
    </Style>
    </TextRun>
    </TextRuns>
    ...

    Código de substituição 4

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

    // Add the following line.
    <Value>=Fields!TotalCaption.Value</Value>
    // End of the added line.

    <Style>
    <FontSize>7pt</FontSize>
    </Style>
    </TextRun>
    </TextRuns>
    ...

    5 de código existente

    ...<TextRuns>
    <TextRun>
    <Value>=SUM(Fields!VATBuffer2_Base_Control86.Value)</Value>
    <Style>
    <FontSize>7pt</FontSize>

    // Delete the following line.
    <Format>=Fields!VATBuffer2_Base_Control86Format.Value</Format>
    // End of the deleted line.

    </Style>
    </TextRun>
    </TextRuns>
    </Paragraph>
    </Paragraphs>
    ...

    Código de substituição 5

    ...<TextRuns>
    <TextRun>
    <Value>=SUM(Fields!VATBuffer2_Base_Control86.Value)</Value>
    <Style>
    <FontSize>7pt</FontSize>

    // Add the following lines.
    <FontWeight>Bold</FontWeight>
    <Format>N</Format>
    // End of the added lines.

    </Style>
    </TextRun>
    </TextRuns>
    </Paragraph>
    </Paragraphs>
    ...

    6 de código existente

    ...<TextRuns>
    <TextRun>
    <Value>=Code.BlankZero(SUM(Fields!VATBuffer2_Amount_Control83.Value))</Value>
    <Style>
    <FontSize>7pt</FontSize>
    <Format>N</Format>
    </Style>
    </TextRun>
    </TextRuns>
    </Paragraph>
    ...

    Código de substituição 6

    ...<TextRuns>
    <TextRun>
    <Value>=Code.BlankZero(SUM(Fields!VATBuffer2_Amount_Control83.Value))</Value>
    <Style>
    <FontSize>7pt</FontSize>

    // Add the following line.
    <FontWeight>Bold</FontWeight>
    // End of the added line.

    <Format>N</Format>
    </Style>
    </TextRun>
    </TextRuns>
    </Paragraph>
    ...

    7 de código existente

    ...<TextRuns>
    <TextRun>
    <Value>=SUM(Fields!VATBuffer2_Base_VATBuffer2_Amount_Control82.Value)</Value>
    <Style>
    <FontSize>7pt</FontSize>
    <Format>N</Format>
    </Style>
    </TextRun>
    </TextRuns>
    </Paragraph>
    ...

    Código de substituição 7

    ...<TextRuns>
    <TextRun>
    <Value>=SUM(Fields!VATBuffer2_Base_VATBuffer2_Amount_Control82.Value)</Value>
    <Style>
    <FontSize>7pt</FontSize>

    // Add the following line.
    <FontWeight>Bold</FontWeight>
    // End of the added line.

    <Format>N</Format>
    </Style>
    </TextRun>
    </TextRuns>
    </Paragraph>
    ...

    8 de código existente

    ...<TextRun>
    <Value>=SUM(Fields!VATBuffer2_Base.Value)</Value>
    <Style>
    <FontSize>7pt</FontSize>
    <FontWeight>Bold</FontWeight>

    // Delete the following line.
    <Format>=Fields!Base_Base2Format.Value</Format>
    // End of the deleted line.

    </Style>
    </TextRun>
    </TextRuns>
    </Paragraph>
    </Paragraphs>
    ...

    Código de substituição 8

    ...<TextRun>
    <Value>=SUM(Fields!VATBuffer2_Base.Value)</Value>
    <Style>
    <FontSize>7pt</FontSize>
    <FontWeight>Bold</FontWeight>

    // Add the following line.
    <Format>N</Format>
    // End of the added line.

    </Style>
    </TextRun>
    </TextRuns>
    </Paragraph>
    </Paragraphs>
    ...

    9 de código existente

    ...<KeepWithGroup>After</KeepWithGroup>
    <KeepTogether>true</KeepTogether>
    </TablixMember>
    <TablixMember>
    <Visibility>

    // Delete the following line.
    <Hidden>=IIF(Fields!AutoDocNo_Control91.Value="",TRUE,FALSE)</Hidden>
    // End of the deleted line.

    </Visibility>
    <KeepWithGroup>After</KeepWithGroup>
    <KeepTogether>true</KeepTogether>
    </TablixMember>
    <TablixMember>
    ...

    Código de substituição 9

    ...<KeepWithGroup>After</KeepWithGroup>
    <KeepTogether>true</KeepTogether>
    </TablixMember>
    <TablixMember>
    <Visibility>

    // Add the following line.
    <Hidden>=IIF(LAST(Fields!AutoDocNo_Control91.Value)="",TRUE,FALSE)</Hidden>
    // End of the added line.

    </Visibility>
    <KeepWithGroup>After</KeepWithGroup>
    <KeepTogether>true</KeepTogether>
    </TablixMember>
    <TablixMember>
    ...

    10 de código existente

    ...<KeepWithGroup>After</KeepWithGroup>
    <KeepTogether>true</KeepTogether>
    </TablixMember>
    <TablixMember>
    <Visibility>

    // Delete the following line.
    <Hidden>=IIF(Fields!AutoDocNo_Control91.Value="",TRUE,FALSE)</Hidden>
    // End of the deleted line.

    </Visibility>
    <KeepWithGroup>After</KeepWithGroup>
    <KeepTogether>true</KeepTogether>
    </TablixMember>
    <TablixMember>
    ...

    Código de substituição 10

    ...<KeepWithGroup>After</KeepWithGroup>
    <KeepTogether>true</KeepTogether>
    </TablixMember>
    <TablixMember>
    <Visibility>

    // Add the following line.
    <Hidden>=IIF(LAST(Fields!AutoDocNo_Control91.Value)="",TRUE,FALSE)</Hidden>
    // End of the added line.

    </Visibility>
    <KeepWithGroup>After</KeepWithGroup>
    <KeepTogether>true</KeepTogether>
    </TablixMember>
    <TablixMember>
    ...

    Código existente 11

    ...<KeepWithGroup>Before</KeepWithGroup>
    <KeepTogether>true</KeepTogether>
    </TablixMember>
    <TablixMember>
    <Visibility>

    // Delete the following line.
    <Hidden>=IIF(Fields!AutoDocNo_Control91.Value="",TRUE,FALSE)</Hidden>
    // End of the deleted line.

    </Visibility>
    <KeepWithGroup>Before</KeepWithGroup>
    <KeepTogether>true</KeepTogether>
    </TablixMember>
    </TablixMembers>
    ...

    Código de substituição 11

    ...<KeepWithGroup>Before</KeepWithGroup>
    <KeepTogether>true</KeepTogether>
    </TablixMember>
    <TablixMember>
    <Visibility>

    // Add the following line.
    <Hidden>=IIF(LAST(Fields!AutoDocNo_Control91.Value)="",TRUE,FALSE)</Hidden>
    // End of the added line.

    </Visibility>
    <KeepWithGroup>Before</KeepWithGroup>
    <KeepTogether>true</KeepTogether>
    </TablixMember>
    </TablixMembers>
    ...

    12 de código existente

    ...<KeepWithGroup>Before</KeepWithGroup>
    <KeepTogether>true</KeepTogether>
    </TablixMember>
    <TablixMember>
    <Visibility>

    // Delete the following line.
    <Hidden>=iif(Fields!AutoDocNo.Value="" or (Fields!ShowAutoInvCred.Value=TRUE and Fields!SortPostDate.Value=TRUE),TRUE,FALSE)</Hidden>
    // End of the deleted line.

    </Visibility>
    <KeepWithGroup>Before</KeepWithGroup>
    <KeepTogether>true</KeepTogether>
    </TablixMember>
    </TablixMembers>
    ...

    Código de substituição 12

    ...<KeepWithGroup>Before</KeepWithGroup>
    <KeepTogether>true</KeepTogether>
    </TablixMember>
    <TablixMember>
    <Visibility>

    // Add the following line.
    <Hidden>=iif(LAST(Fields!AutoDocNo.Value)="" or (Fields!ShowAutoInvCred.Value=TRUE and Fields!SortPostDate.Value=TRUE),TRUE,FALSE)</Hidden>
    // End of the added line.

    </Visibility>
    <KeepWithGroup>Before</KeepWithGroup>
    <KeepTogether>true</KeepTogether>
    </TablixMember>
    </TablixMembers>
    ...


Pré-requisitos:

Você deve ter a versão em espanhol do Microsoft Dynamics NAV 2013 instalado para aplicar esse hotfix.

Informações sobre remoção

Você não pode remover esse hotfix.

Status

A Microsoft confirma que este é um problema em seus produtos listados na seção "Aplica-se a".

Observação: Este é um artigo de "PUBLICAÇÃO RÁPIDA" criado diretamente de dentro da organização de suporte da Microsoft. As informações contidas neste documento são fornecidas desta maneira, em resposta a problemas emergentes. Como um dos resultados da velocidade da publicação, os materiais podem incluir erros tipográficos e podem ser revisados a qualquer momento sem aviso prévio. Consulte os Termos de usopara outras considerações.

Precisa de mais ajuda?

Quer mais opções

Explore os benefícios da assinatura, procure cursos de treinamento, saiba como proteger seu dispositivo e muito mais.

As comunidades ajudam você a fazer e responder perguntas, fazer comentários e ouvir especialistas com conhecimento avançado.

Essas informações foram úteis?

Qual é o seu grau de satisfação com a qualidade do idioma?
O que afetou sua experiência?
Ao pressionar enviar, seus comentários serão usados para aprimorar os produtos e serviços da Microsoft. Seu administrador de TI poderá coletar esses dados. Política de Privacidade.

Agradecemos seus comentários!

×