Iniciar sessão com a Microsoft
Iniciar sessão ou criar uma conta.
Olá,
Selecione uma conta diferente.
Tem várias contas
Selecione a conta com a qual pretende iniciar sessão.

Este artigo aplica-se para o Microsoft Dynamics NAV para todos os idiomas.

Sintomas

No Microsoft Dynamics NAV, quando tenta criar uma encomenda de venda em divisa estrangeira, se a Data de registo predefinido é definido como "Sem data", o sistema não consegue validar a taxa de câmbio. Por conseguinte, recebe a seguinte mensagem de erro:

Não existe nenhuma taxa de câmbio de divisa dentro do filtro.


Além disso, não é possível imprimir o mapa Confirmação Encomenda (205).
Este problema ocorre nos seguintes produtos:

  • Microsoft Dynamics NAV 2009 Service Pack 1 (SP1)

  • Microsoft Dynamics NAV 2009 R2

Resolução

Informações sobre correção

Agora tem uma correcção suportada disponível na Microsoft. Contudo, destina-se apenas a corrigir o problema descrito neste artigo. Aplique-a apenas em sistemas que tenham este problema específico. Esta correcção poderá ser submetida a testes adicionais. Por conseguinte, se não estiver a ser gravemente afectado por este problema, recomendamos que aguarde o próximo service pack do Microsoft Dynamics NAV 2009 ou a próxima versão do Microsoft Dynamics NAV que contenha esta correcção.

Nota Em casos especiais, os custos normalmente inerentes para suporte chamadas poderão ser anuladas se um técnico de suporte técnico do Microsoft Dynamics e produtos relacionados determina que uma actualização específica resolverá o problema. Os custos de normais do suporte serão aplicados a questões de suporte adicionais e problemas que não se enquadrem na atualização específica em questão.



Informações de instalação

A Microsoft fornece exemplos de programação apenas a título ilustrativo, sem garantia expressa ou implícita. Isto inclui, mas não está limitado a, garantias implícitas de comercialização ou adequação a um fim específico. Este artigo pressupõe que está familiarizado com a linguagem de programação que está a ser demonstrada e com as ferramentas que são utilizadas para criar e depurar procedimentos. Técnicos de suporte da Microsoft podem ajudar a explicar a funcionalidade de um determinado procedimento, mas não modificarão estes exemplos para proporcionarem funcionalidades adicionais nem criarão procedimentos adaptados às necessidades específicas do utilizador.

Nota Antes de instalar esta correcção, certifique-se de que todos os utilizadores de cliente do Microsoft Navision são registados no sistema. Isto inclui os utilizadores de clientes do Microsoft Navision Application Server (NAS). Deve ser o único usuário do cliente que tem sessão iniciada quando implementar esta correcção.

Para implementar esta correcção, tem de ter uma licença de desenvolvedor.

Recomendamos que a conta de utilizador na janela Logins do Windows ou na janela Logins de base de dados seja atribuída a ID de função "SUPER". Se a conta de utilizador não é possível atribuir o ID de função "SUPER", tem de verificar que a conta de utilizador tem as seguintes permissões:

  • A permissão Modificar para o objecto que estará a alterar.

  • A permissão executar para o objecto 5210 de ID de objecto de sistema e para o objecto 9015 de ID de objecto de sistema .



Nota Não tem de ter direitos para os arquivos de dados, excepto se tiver de efectuar a reparação de dados.

Alterações de código

Nota Sempre o código de ensaio corrige num ambiente controlado antes de aplicar as correcções para os computadores de produção.
Para resolver este problema, siga estes passos:

  1. Altere o código na função SalesHeaderExchDate na codeunit de Gestão de manutenção de rotina Calc. de preço de vendas (7000) do seguinte modo:
    Código existente

    ...WITH SalesHeader DO BEGIN

    // Delete the following lines.
    IF ("Document Type" IN ["Document Type"::"Blanket Order","Document Type"::Quote]) AND
    ("Posting Date" = 0D)
    THEN
    EXIT(WORKDATE);
    EXIT("Posting Date");
    // End of the deleted lines.

    END;
    ...

    Código de substituição

    ...WITH SalesHeader DO BEGIN

    // Add the following lines.
    IF "Posting Date" <>0D THEN
    EXIT("Posting Date");
    EXIT(WORKDATE);
    // End of the added lines.

    END;
    ...
  2. Altere o código na função PurchHeaderExchDate no Tabela Arquivo Linha Coment. Preço de manutenção de rotina Calc. Codeunit (7010) da seguinte forma:
    Código existente

    ...WITH PurchHeader DO BEGIN
    // Delete the following lines.
    IF ("Document Type" IN ["Document Type"::"Blanket Order","Document Type"::Quote]) AND
    ("Posting Date" = 0D)
    THEN
    EXIT(WORKDATE);
    EXIT("Posting Date");
    // End of the deleted lines.
    END;
    ...

    Código de substituição

    ...WITH PurchHeader DO BEGIN

    // Add the following lines.
    IF "Posting Date" <> 0D THEN
    EXIT("Posting Date");
    EXIT(WORKDATE);
    // End of the added lines.

    END;
    ...
  3. Altere o código no activador OnAssistEdit no campo Código de divisa (111) no formulário de Encomenda de vendas (42) do seguinte modo:
    Código existente

    ...CLEAR(ChangeExchangeRate);

    // Delete the following line.
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor","Posting Date");
    // End of the deleted line.

    IF ChangeExchangeRate.RUNMODAL = ACTION::OK THEN BEGIN
    VALIDATE("Currency Factor",ChangeExchangeRate.GetParameter);
    CurrForm.UPDATE;
    END;
    CLEAR(ChangeExchangeRate);
    ...

    Código de substituição

    ...CLEAR(ChangeExchangeRate);

    // Add the following lines.
    IF "Posting Date" <> 0D THEN
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor","Posting Date")
    ELSE
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor",WORKDATE);
    // End of the added lines.

    IF ChangeExchangeRate.RUNMODAL = ACTION::OK THEN BEGIN
    VALIDATE("Currency Factor",ChangeExchangeRate.GetParameter);
    CurrForm.UPDATE;
    END;
    CLEAR(ChangeExchangeRate);
    ...
  4. Altere o código no activador OnAssistEdit no campo Código de divisa (107) no formulário de Factura de vendas (43) do seguinte modo:
    Código existente

    ...CLEAR(ChangeExchangeRate);
    // Delete the following line.
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor","Posting Date");
    // End of the deleted line.
    IF ChangeExchangeRate.RUNMODAL = ACTION::OK THEN BEGIN
    VALIDATE("Currency Factor",ChangeExchangeRate.GetParameter);
    CurrForm.UPDATE;
    END;
    CLEAR(ChangeExchangeRate);
    ...

    Código de substituição

    ...CLEAR(ChangeExchangeRate);
    // Add the following lines.
    IF "Posting Date" <> 0D THEN
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor","Posting Date")
    ELSE
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor",WORKDATE);
    // End of the added lines.
    IF ChangeExchangeRate.RUNMODAL = ACTION::OK THEN BEGIN
    VALIDATE("Currency Factor",ChangeExchangeRate.GetParameter);
    CurrForm.UPDATE;
    END;
    CLEAR(ChangeExchangeRate);
    ...
  5. Altere o código no activador OnAssistEdit no campo Código de divisa (91) sob a forma de Nota de crédito de vendas (44) do seguinte modo:
    Código existente

    ...CLEAR(ChangeExchangeRate);

    // Delete the following line.
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor","Posting Date");
    // End of the deleted line.

    IF ChangeExchangeRate.RUNMODAL = ACTION::OK THEN BEGIN
    VALIDATE("Currency Factor",ChangeExchangeRate.GetParameter);
    CurrForm.UPDATE;
    END;
    CLEAR(ChangeExchangeRate);
    ...

    Código de substituição

    ...CLEAR(ChangeExchangeRate);

    // Add the following lines.
    IF "Posting Date" <> 0D THEN
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor","Posting Date")
    ELSE
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor",WORKDATE);
    // End of the added lines

    IF ChangeExchangeRate.RUNMODAL = ACTION::OK THEN BEGIN
    VALIDATE("Currency Factor",ChangeExchangeRate.GetParameter);
    CurrForm.UPDATE;
    END;
    CLEAR(ChangeExchangeRate);
    ...
  6. Altere o código no activador OnAssistEdit no campo Código de divisa (119) no formulário de Encomenda de compra (50) do seguinte modo:
    Código existente

    ...CLEAR(ChangeExchangeRate);

    // Delete the following line.
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor","Posting Date");
    // End of the deleted line.

    IF ChangeExchangeRate.RUNMODAL = ACTION::OK THEN BEGIN
    VALIDATE("Currency Factor",ChangeExchangeRate.GetParameter);
    CurrForm.UPDATE;
    END;
    CLEAR(ChangeExchangeRate);
    ...

    Código de substituição

    ...CLEAR(ChangeExchangeRate);

    // Add the following lines.
    IF "Posting Date" <> 0D THEN
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor","Posting Date")
    ELSE
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor",WORKDATE);
    // End of the added lines.

    IF ChangeExchangeRate.RUNMODAL = ACTION::OK THEN BEGIN
    VALIDATE("Currency Factor",ChangeExchangeRate.GetParameter);
    CurrForm.UPDATE;
    END;
    CLEAR(ChangeExchangeRate);
    ...
  7. Altere o código no activador OnAssistEdit no campo Código de divisa (104) sob a forma de Factura de compra (51) do seguinte modo:
    Código existente

    ...CLEAR(ChangeExchangeRate);

    // Delete the following line.
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor","Posting Date");
    // End of the deleted line.

    IF ChangeExchangeRate.RUNMODAL = ACTION::OK THEN BEGIN
    VALIDATE("Currency Factor",ChangeExchangeRate.GetParameter);
    CurrForm.UPDATE;
    END;
    CLEAR(ChangeExchangeRate);
    ...

    Código de substituição

    ...CLEAR(ChangeExchangeRate);

    // Add the following lines.
    IF "Posting Date" <> 0D THEN
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor","Posting Date")
    ELSE
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor",WORKDATE);
    // End of the added lines.

    IF ChangeExchangeRate.RUNMODAL = ACTION::OK THEN BEGIN
    VALIDATE("Currency Factor",ChangeExchangeRate.GetParameter);
    CurrForm.UPDATE;
    END;
    CLEAR(ChangeExchangeRate);
    ...
  8. Altere o código no activador OnAssistEdit no campo Código de divisa (91) sob a forma de Nota de crédito de compra (52) do seguinte modo:
    Código existente

    ...CLEAR(ChangeExchangeRate);

    // Delete the following line.
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor","Posting Date");
    // End of the deleted line.

    IF ChangeExchangeRate.RUNMODAL = ACTION::OK THEN BEGIN
    VALIDATE("Currency Factor",ChangeExchangeRate.GetParameter);
    CurrForm.UPDATE;
    END;
    CLEAR(ChangeExchangeRate);
    ...

    Código de substituição

    ...CLEAR(ChangeExchangeRate);

    // Add the following lines.
    IF "Posting Date" <> 0D THEN
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor","Posting Date")
    ELSE
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor",WORKDATE);
    // End of the added lines.

    IF ChangeExchangeRate.RUNMODAL = ACTION::OK THEN BEGIN
    VALIDATE("Currency Factor",ChangeExchangeRate.GetParameter);
    CurrForm.UPDATE;
    END;
    CLEAR(ChangeExchangeRate);
    ...
  9. Altere o código no activador OnAssistEdit no campo Código de divisa (91) sob a forma de Devolução de venda (6630) do seguinte modo:
    Código existente

    ...CLEAR(ChangeExchangeRate);

    // Delete the following line.
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor","Posting Date");
    // End of the deleted line.

    IF ChangeExchangeRate.RUNMODAL = ACTION::OK THEN BEGIN
    VALIDATE("Currency Factor",ChangeExchangeRate.GetParameter);
    CurrForm.UPDATE;
    END;
    CLEAR(ChangeExchangeRate);
    ...

    Código de substituição

    ...CLEAR(ChangeExchangeRate);

    // Add the following lines.
    IF "Posting Date" <> 0D THEN
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor","Posting Date")
    ELSE
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor",WORKDATE);
    // End of the added lines.

    IF ChangeExchangeRate.RUNMODAL = ACTION::OK THEN BEGIN
    VALIDATE("Currency Factor",ChangeExchangeRate.GetParameter);
    CurrForm.UPDATE;
    END;
    CLEAR(ChangeExchangeRate);
    ...
  10. Altere o código no activador OnAssistEdit no campo Código de divisa (91) sob a forma de Devolução Compra (6640) do seguinte modo:
    Código existente

    ...CLEAR(ChangeExchangeRate);

    // Delete the following line.
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor","Posting Date");
    // End of the deleted line.

    IF ChangeExchangeRate.RUNMODAL = ACTION::OK THEN BEGIN
    VALIDATE("Currency Factor",ChangeExchangeRate.GetParameter);
    CurrForm.UPDATE;
    END;
    CLEAR(ChangeExchangeRate);
    ...

    Código de substituição

    ...CLEAR(ChangeExchangeRate);

    // Add the following lines.
    IF "Posting Date" <> 0D THEN
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor","Posting Date")
    ELSE
    ChangeExchangeRate.SetParameter("Currency Code","Currency Factor",WORKDATE);
    // End of the added lines.

    IF ChangeExchangeRate.RUNMODAL = ACTION::OK THEN BEGIN
    VALIDATE("Currency Factor",ChangeExchangeRate.GetParameter);
    CurrForm.UPDATE;
    END;
    CLEAR(ChangeExchangeRate);
    ...
  11. Altere o código na função UpdateCurrencyFactor da tabela de Cabeçalho de vendas (36) do seguinte modo:
    Código existente

    ...IF "Currency Code" <>'' THEN BEGIN

    // Delete the following lines.
    IF ("Document Type" IN ["Document Type"::Quote,"Document Type"::"Blanket Order"]) AND
    ("Posting Date" = 0D)
    THEN
    CurrencyDate := WORKDATE
    ELSE
    CurrencyDate := "Posting Date";
    // End of the deleted lines.

    "Currency Factor" := CurrExchRate.ExchangeRate(CurrencyDate,"Currency Code");
    END ELSE
    "Currency Factor" := 0;
    ...

    Código de substituição

    ...IF "Currency Code" <> '' THEN BEGIN

    // Add the following lines.
    IF "Posting Date" <> 0D THEN
    CurrencyDate := "Posting Date"
    ELSE
    CurrencyDate := WORKDATE;
    // End of the added lines.

    "Currency Factor" := CurrExchRate.ExchangeRate(CurrencyDate,"Currency Code");
    END ELSE
    "Currency Factor" := 0;
    ...
  12. Altere o código de função GetDate na tabela Linha venda (37) do seguinte modo:
    Código existente

    ...// Delete the following lines.
    IF ("Document Type" IN ["Document Type"::"Blanket Order","Document Type"::Quote]) AND
    (SalesHeader."Posting Date" = 0D)
    THEN
    EXIT(WORKDATE);
    EXIT(SalesHeader."Posting Date");
    // End of the deleted lines.
    ...

    Código de substituição

    ...// Add the following lines.
    IF SalesHeader."Posting Date" <> 0D THEN
    EXIT(SalesHeader."Posting Date");
    EXIT(WORKDATE);
    // End of the added lines.
    ...
  13. Altere o código na função UpdateCurrencyFactor na tabela Cabeçalho da compra (38) do seguinte modo:
    Código existente

    ...IF "Currency Code" <> '' THEN BEGIN
    // Delete the following lines.
    IF ("Document Type" IN ["Document Type"::Quote,"Document Type"::"Blanket Order"]) AND
    ("Posting Date" = 0D)
    THEN
    CurrencyDate := WORKDATE
    ELSE
    CurrencyDate := "Posting Date";
    // End of the deleted lines.

    "Currency Factor" := CurrExchRate.ExchangeRate(CurrencyDate,"Currency Code");
    END ELSE
    "Currency Factor" := 0;
    ...

    Código de substituição

    ...IF "Currency Code"<>'' THEN BEGIN
    // Add the following lines.
    IF "Posting Date" <> 0D THEN
    CurrencyDate := "Posting Date"
    ELSE
    CurrencyDate := WORKDATE;
    // End of the added lines.

    "Currency Factor" := CurrExchRate.ExchangeRate(CurrencyDate,"Currency Code");
    END ELSE
    "Currency Factor" := 0;
    ...
  14. Altere o código de função GetDate na tabela Linha compra (39) do seguinte modo:
    Código existente

    ...// Delete the following lines.
    IF ("Document Type" IN ["Document Type"::"Blanket Order","Document Type"::Quote]) AND
    (PurchHeader."Posting Date" = 0D)
    THEN
    EXIT(WORKDATE);
    EXIT(PurchHeader."Posting Date")
    // End of the deleted lines.
    ...

    Código de substituição

    ...// Add the following lines.
    IF PurchHeader."Posting Date"<>0D THEN
    EXIT(PurchHeader."Posting Date");
    EXIT(WORKDATE);
    // End of the added lines.
    ...
  15. Altere o código na função RoundAmount na codeunit Vendas-Post (80) do seguinte modo:
    Código existente

    ...IF SalesHeader."Currency Code" <>'' THEN BEGIN
    // Delete the following lines.
    IF ("Document Type" IN ["Document Type"::"Blanket Order","Document Type"::Quote]) AND
    (SalesHeader."Posting Date" = 0D)
    THEN
    // End of the deleted lines.
    UseDate := WORKDATE
    ELSE
    UseDate := SalesHeader."Posting Date";
    ...

    Código de substituição

    ...IF SalesHeader."Currency Code" <>'' THEN BEGIN
    // Add the following line.
    IF (SalesHeader."Posting Date" = 0D) THEN
    // End of the added line.

    UseDate := WORKDATE
    ELSE
    UseDate := SalesHeader."Posting Date";
    ...
  16. Alterar o código de função na RoundAmount a Compr.-Post codeunit (90) do seguinte modo:
    Código existente

    ...IF PurchHeader."Currency Code" <>'' THEN BEGIN
    // Delete the following lines.
    IF ("Document Type" IN ["Document Type"::"Blanket Order","Document Type"::Quote]) AND
    (PurchHeader."Posting Date" = 0D)
    THEN
    // End of the deleted lines.
    Usedate := WORKDATE
    ELSE
    Usedate := PurchHeader."Posting Date";
    ...

    Código de substituição

    ...IF PurchHeader."Currency Code"<> '' THEN BEGIN
    // Add the following line.
    IF (PurchHeader."Posting Date" = 0D) THEN
    // End of the added line.
    Usedate := WORKDATE
    ELSE
    Usedate := PurchHeader."Posting Date";
    ...
  17. Altere o código na função UpdateHeaderInfo sob a forma de Estatística Encomenda Venda (402) do seguinte modo:
    Código existente

    ...IF "Prices Including VAT" THEN
    TotalSalesLineLCY[IndexNo].Amount := TotalAmount2[IndexNo]
    ELSE
    TotalSalesLineLCY[IndexNo].Amount := TotalAmount1[IndexNo];
    IF "Currency Code" <> '' THEN

    // Delete the following lines.
    IF ("Document Type" IN ["Document Type"::"Blanket Order","Document Type"::Quote]) AND
    ("Posting Date" = 0D)
    THEN
    // End of the deleted lines.

    UseDate := WORKDATE
    ELSE
    UseDate := "Posting Date";
    ...

    Código de substituição

    ...IF "Prices Including VAT" THEN
    TotalSalesLineLCY[IndexNo].Amount := TotalAmount2[IndexNo]
    ELSE
    TotalSalesLineLCY[IndexNo].Amount := TotalAmount1[IndexNo];
    IF "Currency Code" <>'' THEN
    // Add the following line.
    IF "Posting Date" = 0D THEN
    // End of the added line.
    UseDate := WORKDATE
    ELSE
    UseDate := "Posting Date";
    ...
  18. Altere o código na função UpdateHeaderInfo sob a forma de Estatística Encomenda Compra (403) do seguinte modo:
    Código existente

    ...IF "Prices Including VAT" THEN
    TotalPurchLineLCY[IndexNo].Amount := TotalAmount2[IndexNo]
    ELSE
    TotalPurchLineLCY[IndexNo].Amount := TotalAmount1[IndexNo];
    IF "Currency Code" <> '' THEN BEGIN
    // Delete the following lines.
    IF ("Document Type" IN ["Document Type"::"Blanket Order","Document Type"::Quote]) AND
    ("Posting Date" = 0D)
    THEN
    // End of the deleted lines.
    UseDate := WORKDATE
    ELSE
    UseDate := "Posting Date";
    ...

    Código de substituição

    ...IF "Prices Including VAT" THEN
    TotalPurchLineLCY[IndexNo].Amount := TotalAmount2[IndexNo]
    ELSE
    TotalPurchLineLCY[IndexNo].Amount := TotalAmount1[IndexNo];
    IF "Currency Code" <> '' THEN BEGIN
    // Add the following line.
    IF "Posting Date" = 0D THEN
    // End of the added line.
    UseDate := WORKDATE
    ELSE
    UseDate := "Posting Date";
    ...
  19. Altere o código na função CalculateInvoiceDiscount na codeunit Vendas-Calc. desconto (60) do seguinte modo:
    Código existente

    ...// Delete the following lines.  
    IF ("Document Type" IN ["Document Type"::"Blanket Order","Document Type"::Quote]) AND
    (SalesHeader."Posting Date" = 0D)
    THEN
    // End of the deleted lines.
    CurrencyDate := WORKDATE
    ELSE
    CurrencyDate := SalesHeader."Posting Date";
    ...

    Código de substituição

    ...// Add the following line.    
    IF SalesHeader."Posting Date" = 0D THEN
    // End of the added line.
    CurrencyDate := WORKDATE
    ELSE
    CurrencyDate := SalesHeader."Posting Date";
    ...
  20. Alterar o código de função na CalculateInvoiceDiscount a Compr.-Calc.Discount codeunit (70) do seguinte modo:
    Código existente

    ...// Delete the following lines.  
    IF ("Document Type" IN ["Document Type"::"Blanket Order","Document Type"::Quote]) AND
    (PurchHeader."Posting Date" = 0D)
    THEN
    // End of the deleted lines.
    CurrencyDate := WORKDATE
    ELSE
    CurrencyDate := PurchHeader."Posting Date";
    ...

    Código de substituição

    ...// Add the following line.   
    IF PurchHeader."Posting Date" = 0D THEN
    // End of the added line.
    CurrencyDate := WORKDATE
    ELSE
    CurrencyDate := PurchHeader."Posting Date";
    ...


Pré-requisitos

Tem de ter um dos seguintes produtos instalado para aplicar esta correcção:

  • Microsoft Dynamics NAV 2009 Service Pack 1 (SP1)

  • Microsoft Dynamics NAV 2009 R2



Informações de remoção

Não é possível remover esta correcção.

Estado

A Microsoft confirmou que este é um problema nos produtos da Microsoft listados na secção "Aplica-se a".

Referências

VSTF DynamicsNAV SE: 237796, 245981, 254036

Nota Este é um artigo "Publicação rápida" criado diretamente a partir da organização de suporte da Microsoft. As informações contidas neste documento são fornecidas como-se em resposta a questões emergentes. Como resultado da urgência na sua disponibilização, os materiais podem incluir erros tipográficos e podem ser revistos em qualquer altura sem aviso prévio. Para outras considerações, consulte os Termos de utilização .

Precisa de mais ajuda?

Quer mais opções?

Explore os benefícios da subscrição, navegue em cursos de formação, saiba como proteger o seu dispositivo e muito mais.

As comunidades ajudam-no a colocar e a responder perguntas, a dar feedback e a ouvir especialistas com conhecimentos abrangentes.

Estas informações foram úteis?

Quão satisfeito está com a qualidade do idioma?
O que afetou a sua experiência?
Ao selecionar submeter, o seu feedback será utilizado para melhorar os produtos e serviços da Microsoft. O seu administrador de TI poderá recolher estes dados. Declaração de Privacidade.

Obrigado pelo seu feedback!

×