Logga in med Microsoft
Logga in eller skapa ett konto.
Hej,
Välj ett annat konto.
Du har flera konton
Välj det konto som du vill logga in med.

Den här artikeln gäller för Microsoft Dynamics NAV för portugisiska (pt) språk.

Symptom

Anta att du anger värdet till Beräkna kassarabatt Rabatt betalningstypen . På rader i dialogrutan Redovisningsinställningar i den portugisiska versionen av Microsoft Dynamics NAV 2009. Du kan ange en fakturarabatt för en inköpsfaktura som innehåller mer än en rad med decimaler. Fakturarabatten beräknas felaktigt när du beräknar statistik för inköpsfakturan.

Det här problemet uppstår i följande produkter:

  • Den portugisiska versionen av Microsoft Dynamics NAV 2009 R2

  • Den portugisiska versionen av Microsoft Dynamics NAV 2009 Service Pack 1 (SP1)


Lösning

Information om snabbkorrigeringen

En snabbkorrigering är nu tillgänglig från Microsoft. Den är endast avsedd att åtgärda det problem som beskrivs i denna artikel. Använd den bara på datorer där detta problem uppstår. Snabbkorrigeringen kan komma att testas igen. Om inte störs alltför mycket av detta problem rekommenderar vi att du väntar på Nästa service pack-versionen för Microsoft Dynamics NAV 2009 eller nästa Microsoft Dynamics NAV-version som innehåller den här snabbkorrigeringen.

Obs! I särskilda fall, de avgifter som är normalt för support vara avgiftsfri om en supporttekniker för Microsoft Dynamics och relaterade produkter som bestämmer att en särskild uppdatering kan lösa ditt problem. De vanliga supportkostnaderna gäller för övriga supportfrågor och problem som inte berör den särskilda uppdateringen.

Installationsinformation

Microsoft tillhandahåller programmeringsexempel endast utan garanti varken uttryckliga eller underförstådda. Detta inkluderar men är inte begränsat till, underförstådda garantier om säljbarhet eller lämplighet för ett särskilt ändamål. Den här artikeln förutsätter att du är bekant med det programmeringsspråk som demonstreras och de verktyg som används för att skapa och felsöka procedurer. Microsofts supporttekniker kan hjälpa till att förklara funktionen hos en viss procedur. De kommer inte ändra dessa exempel för att ge ytterligare funktioner eller skapa procedurer som motsvarar dina speciella behov.

Obs! Innan du installerar den här snabbkorrigeringen måste du kontrollera att alla användare i Microsoft Dynamics NAV-klienten har loggat ut. Detta omfattar tjänster för Microsoft Dynamics NAV Application Server (NAS). Du ska endast klientanvändare som är inloggad när du implementerar den här snabbkorrigeringen.

Om du vill genomföra den här snabbkorrigeringen måste du ha en utvecklarlicens.

Vi rekommenderar att tilldelas användarkontot i fönstret Windows-inloggningar eller i fönstret databasinloggningar "SUPER" roll-ID. Om användarkontot inte kan tilldelas "SUPER" roll-ID måste du kontrollera att användarkontot har följande behörigheter:

  • Ändra behörighet för objektet ändras.

  • Körbehörighet för systemet objektet ID 5210 objekt och System objektet ID 9015

    objektet.

Obs! Du har inte behörighet för datalager inte data reparation.

Kod ändras

Obs! Alltid åtgärdas testa koden i en kontrollerad miljö innan du installerar korrigeringar för produktionsdatorer.

Lös problemet så här:

  1. Ändra koden i funktionen CalculateInvoiceDiscount i försäljning beräkna rabatt kodmodul (60) enligt följande:
    Befintlig kod 1

    ...GLAcc@1110002 : Record 15;
    BEGIN
    ...

    Ersättningskod 1

    ...GLAcc@1110002 : Record 15;

    // Add the following lines.
    TempSalesLineRemainder@1110000 : Record 37;
    TotRoundedInvDiscAmt@1110001 : Decimal;
    TotRoundedPmtDiscAmt@1110003 : Decimal;
    // End of the added lines.

    BEGIN
    ...

    Befintlig kod 2

    ...GLSetup."Discount Calculation"::"Line Disc. * Inv. Disc. * Payment Disc.":

    // Delete the following lines.
    SalesLine2."Inv. Discount Amount" :=
    ROUND(SalesLine2."Line Amount" * CustInvDisc."Discount %" / 100,0.01);
    GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. + Payment Disc.",
    GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. * Payment Disc.":
    SalesLine2."Inv. Discount Amount" :=
    ROUND(
    (SalesLine2."Line Amount" + SalesLine2."Line Discount Amount" ) *
    CustInvDisc."Discount %" / 100,0.01);
    END;
    // End of the deleted lines.

    IF GLSetup."Payment Discount Type" =
    ...

    Ersättningskod 2

    ...GLSetup."Discount Calculation"::"Line Disc. * Inv. Disc. * Payment Disc.":

    // Add the following lines.
    BEGIN
    TempSalesLineRemainder."Inv. Discount Amount" +=
    SalesLine2."Line Amount" * CustInvDisc."Discount %" / 100;
    SalesLine2."Inv. Discount Amount" :=
    CalcRoundedAmt(TempSalesLineRemainder."Inv. Discount Amount",TotRoundedInvDiscAmt,0.01);
    END;
    GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. + Payment Disc.",
    GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. * Payment Disc.":
    BEGIN
    TempSalesLineRemainder."Inv. Discount Amount" +=
    (SalesLine2."Line Amount" + SalesLine2."Line Discount Amount" ) *
    CustInvDisc."Discount %" / 100;
    SalesLine2."Inv. Discount Amount" :=
    CalcRoundedAmt(TempSalesLineRemainder."Inv. Discount Amount",TotRoundedInvDiscAmt,0.01);
    END;
    END;
    // End of the added lines.

    IF GLSetup."Payment Discount Type" =
    ...

    Befintlig kod 3

    ...GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. + Payment Disc.":

    // Delete the following lines.
    SalesLine2."Pmt. Disc. Given Amount" :=
    ROUND(
    (SalesLine2."Line Amount" + SalesLine2."Line Discount Amount")
    * SalesHeader."Payment Discount %" / 100,0.01);
    GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. * Payment Disc.":
    SalesLine2."Pmt. Disc. Given Amount" :=
    ROUND(
    (SalesLine2."Line Amount" - SalesLine2."Inv. Discount Amount") *
    SalesHeader."Payment Discount %" / 100,0.01);
    GLSetup."Discount Calculation"::"Line Disc. * Inv. Disc. + Payment Disc.":
    SalesLine2."Pmt. Disc. Given Amount" :=
    ROUND(
    (SalesLine2."Line Amount" + SalesLine2."Line Discount Amount") *
    SalesHeader."Payment Discount %" / 100,0.01);
    GLSetup."Discount Calculation"::"Line Disc. * Inv. Disc. * Payment Disc.":
    SalesLine2."Pmt. Disc. Given Amount" :=
    ROUND(
    (SalesLine2."Line Amount" - SalesLine2."Inv. Discount Amount") *
    SalesHeader."Payment Discount %" / 100,0.01);
    // End of the deleted lines.

    END;
    ...

    Ersättningskod 3

    ...GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. + Payment Disc.":

    // Add the following lines.
    BEGIN
    TempSalesLineRemainder."Pmt. Disc. Given Amount" +=
    (SalesLine2."Line Amount" + SalesLine2."Line Discount Amount" ) *
    SalesHeader."Payment Discount %" / 100;
    SalesLine2."Pmt. Disc. Given Amount" :=
    CalcRoundedAmt(TempSalesLineRemainder."Pmt. Disc. Given Amount",TotRoundedPmtDiscAmt,0.01);
    END;
    GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. * Payment Disc.":
    BEGIN
    TempSalesLineRemainder."Pmt. Disc. Given Amount" +=
    (SalesLine2."Line Amount" - SalesLine2."Line Discount Amount" ) *
    SalesHeader."Payment Discount %" / 100;
    SalesLine2."Pmt. Disc. Given Amount" :=
    CalcRoundedAmt(TempSalesLineRemainder."Pmt. Disc. Given Amount",TotRoundedPmtDiscAmt,0.01);
    END;
    GLSetup."Discount Calculation"::"Line Disc. * Inv. Disc. + Payment Disc.":
    BEGIN
    TempSalesLineRemainder."Pmt. Disc. Given Amount" +=
    (SalesLine2."Line Amount" + SalesLine2."Line Discount Amount" ) *
    SalesHeader."Payment Discount %" / 100;
    SalesLine2."Pmt. Disc. Given Amount" :=
    CalcRoundedAmt(TempSalesLineRemainder."Pmt. Disc. Given Amount",TotRoundedPmtDiscAmt,0.01);
    END;
    GLSetup."Discount Calculation"::"Line Disc. * Inv. Disc. * Payment Disc.":
    BEGIN
    TempSalesLineRemainder."Pmt. Disc. Given Amount" +=
    (SalesLine2."Line Amount" - SalesLine2."Line Discount Amount" ) *
    SalesHeader."Payment Discount %" / 100;
    SalesLine2."Pmt. Disc. Given Amount" :=
    CalcRoundedAmt(TempSalesLineRemainder."Pmt. Disc. Given Amount",TotRoundedPmtDiscAmt,0.01);
    END;
    // End of the added lines.

    END;
    ...
  2. Skapa en funktion i försäljning beräkna rabatt kodmodul (60) enligt följande:

    PROCEDURE CalcRoundedAmt@1110000(TotAmt@1110000 : Decimal;VAR TotAmtRnded@1110001 : Decimal;AmountRoundingPrecision@1110002 : Decimal) RndAmt : Decimal;BEGIN
    RndAmt := ROUND(TotAmt,AmountRoundingPrecision) - TotAmtRnded;
    TotAmtRnded := TotAmtRnded + RndAmt;
    END;
  3. Ändra koden i funktionen CalculateInvoiceDiscount i inköp.-Calc.Discount kodmodul (70) enligt följande:
    Befintlig kod 1

    ...GLAcc@1110002 : Record 15;
    BEGIN
    ...

    Ersättningskod 1

    ...GLAcc@1110002 : Record 15;

    // Add the following lines.
    TempPurchLineRemainder@1110000 : Record 39;
    TotRoundedInvDiscAmt@1110001 : Decimal;
    TotRoundedPmtDiscAmt@1110004 : Decimal;
    // End of the added lines.

    BEGIN
    ...

    Befintlig kod 2

    ...GLSetup."Discount Calculation"::"Line Disc. * Inv. Disc. * Payment Disc.":

    // Delete the following lines.
    PurchLine2."Inv. Discount Amount" :=
    ROUND(PurchLine2."Line Amount" * VendInvDisc."Discount %" / 100,0.01);
    GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. + Payment Disc.",
    GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. * Payment Disc.":
    PurchLine2."Inv. Discount Amount" :=
    ROUND(
    (PurchLine2."Line Amount" + PurchLine2."Line Discount Amount" ) *
    VendInvDisc."Discount %" / 100,0.01);
    // End of the deleted lines.

    END;
    ...

    Ersättningskod 2

    ...GLSetup."Discount Calculation"::"Line Disc. * Inv. Disc. * Payment Disc.":

    // Add the following lines.
    BEGIN
    TempPurchLineRemainder."Inv. Discount Amount" +=
    PurchLine2."Line Amount" * VendInvDisc."Discount %" / 100;
    PurchLine2."Inv. Discount Amount" :=
    CalcRoundedAmt(TempPurchLineRemainder."Inv. Discount Amount",TotRoundedInvDiscAmt,0.01);
    END;
    GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. + Payment Disc.",
    GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. * Payment Disc.":
    BEGIN
    TempPurchLineRemainder."Inv. Discount Amount" +=
    (PurchLine2."Line Amount" + PurchLine2."Line Discount Amount" ) *
    VendInvDisc."Discount %" / 100;
    PurchLine2."Inv. Discount Amount" :=
    CalcRoundedAmt(TempPurchLineRemainder."Inv. Discount Amount",TotRoundedInvDiscAmt,0.01);
    END;
    // End of the added lines.

    END;
    ...

    Befintlig kod 3

    ...GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. + Payment Disc.":

    // Delete the following lines.
    PurchLine2."Pmt. Disc. Rcd. Amount" :=
    ROUND(
    (PurchLine2."Line Amount" + PurchLine2."Line Discount Amount") *
    PurchHeader."Payment Discount %" / 100,0.01);
    GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. * Payment Disc.":
    PurchLine2."Pmt. Disc. Rcd. Amount" :=
    ROUND(
    (PurchLine2."Line Amount" - PurchLine2."Inv. Discount Amount") *
    PurchHeader."Payment Discount %" / 100,0.01);
    GLSetup."Discount Calculation"::"Line Disc. * Inv. Disc. + Payment Disc.":
    PurchLine2."Pmt. Disc. Rcd. Amount" :=
    ROUND(
    (PurchLine2."Line Amount" + PurchLine2."Line Discount Amount") *
    PurchHeader."Payment Discount %" / 100,0.01);
    GLSetup."Discount Calculation"::"Line Disc. * Inv. Disc. * Payment Disc.":
    PurchLine2."Pmt. Disc. Rcd. Amount" :=
    ROUND(
    (PurchLine2."Line Amount" - PurchLine2."Inv. Discount Amount") *
    PurchHeader."Payment Discount %" / 100,0.01);
    // End of the deleted lines.

    END;
    ...

    Ersättningskod 3

    ...GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. + Payment Disc.":

    // Add the following lines.
    BEGIN
    TempPurchLineRemainder."Pmt. Disc. Rcd. Amount" +=
    (PurchLine2."Line Amount" + PurchLine2."Line Discount Amount" ) *
    PurchHeader."Payment Discount %" / 100;
    PurchLine2."Pmt. Disc. Rcd. Amount" :=
    CalcRoundedAmt(TempPurchLineRemainder."Pmt. Disc. Rcd. Amount",TotRoundedPmtDiscAmt,0.01);
    END;
    GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. * Payment Disc.":
    BEGIN
    TempPurchLineRemainder."Pmt. Disc. Rcd. Amount" +=
    (PurchLine2."Line Amount" - PurchLine2."Line Discount Amount" ) *
    PurchHeader."Payment Discount %" / 100;
    PurchLine2."Pmt. Disc. Rcd. Amount" :=
    CalcRoundedAmt(TempPurchLineRemainder."Pmt. Disc. Rcd. Amount",TotRoundedPmtDiscAmt,0.01);
    END;
    GLSetup."Discount Calculation"::"Line Disc. * Inv. Disc. + Payment Disc.":
    BEGIN
    TempPurchLineRemainder."Pmt. Disc. Rcd. Amount" +=
    (PurchLine2."Line Amount" + PurchLine2."Line Discount Amount" ) *
    PurchHeader."Payment Discount %" / 100;
    PurchLine2."Pmt. Disc. Rcd. Amount" :=
    CalcRoundedAmt(TempPurchLineRemainder."Pmt. Disc. Rcd. Amount",TotRoundedPmtDiscAmt,0.01);
    END;
    GLSetup."Discount Calculation"::"Line Disc. * Inv. Disc. * Payment Disc.":
    BEGIN
    TempPurchLineRemainder."Pmt. Disc. Rcd. Amount" +=
    (PurchLine2."Line Amount" - PurchLine2."Line Discount Amount" ) *
    PurchHeader."Payment Discount %" / 100;
    PurchLine2."Pmt. Disc. Rcd. Amount" :=
    CalcRoundedAmt(TempPurchLineRemainder."Pmt. Disc. Rcd. Amount",TotRoundedPmtDiscAmt,0.01);
    END;
    // End of the added lines.

    END;
    ...
  4. Skapa en funktion i inköp.-Calc.Discount kodmodul (70) enligt följande:

    PROCEDURE CalcRoundedAmt@1110000(TotAmt@1110000 : Decimal;VAR TotAmtRnded@1110001 : Decimal;AmountRoundingPrecision@1110002 : Decimal) RndAmt : Decimal;BEGIN
    RndAmt := ROUND(TotAmt,AmountRoundingPrecision) - TotAmtRnded;
    TotAmtRnded := TotAmtRnded + RndAmt;
    END;
  5. Ändra koden i funktionen CalculateInvoiceDiscount i tjänsten beräkna rabatt kodmodul (5950) enligt följande:
    Befintlig kod 1

    ...GLAcc@1110002 : Record 15;
    BEGIN
    ...

    Ersättningskod 1

    ...GLAcc@1110002 : Record 15;

    // Add the following lines.
    TempServLineRemainder@1110000 : Record 5902;
    TotRoundedInvDiscAmt@1110001 : Decimal;
    TotRoundedPmtDiscAmt@1110003 : Decimal;
    // End of the added lines.

    BEGIN
    ...

    Befintlig kod 2

    ...GLSetup."Discount Calculation"::"Line Disc. * Inv. Disc. * Payment Disc.":

    // Delete the following lines.
    ServiceLine2."Inv. Discount Amount" :=
    ROUND(ServiceLine2."Line Amount" * CustInvDisc."Discount %" / 100,0.01);
    GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. + Payment Disc.",
    GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. * Payment Disc.":
    ServiceLine2."Inv. Discount Amount" :=
    ROUND(
    (ServiceLine2."Line Amount" + ServiceLine2."Line Discount Amount" ) *
    CustInvDisc."Discount %" / 100,0.01);
    END;
    // End of the deleted lines.

    IF GLSetup."Payment Discount Type" =
    ...

    Ersättningskod 2

    ...GLSetup."Discount Calculation"::"Line Disc. * Inv. Disc. * Payment Disc.":

    // Add the following lines.
    BEGIN
    TempServLineRemainder."Inv. Discount Amount" +=
    ServiceLine2."Line Amount" * CustInvDisc."Discount %" / 100;
    ServiceLine2."Inv. Discount Amount" :=
    CalcRoundedAmt(TempServLineRemainder."Inv. Discount Amount",TotRoundedInvDiscAmt,0.01);
    END;
    GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. + Payment Disc.",
    GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. * Payment Disc.":
    BEGIN
    TempServLineRemainder."Inv. Discount Amount" +=
    (ServiceLine2."Line Amount" + ServiceLine2."Line Discount Amount" ) *
    CustInvDisc."Discount %" / 100;
    ServiceLine2."Inv. Discount Amount" :=
    CalcRoundedAmt(TempServLineRemainder."Inv. Discount Amount",TotRoundedInvDiscAmt,0.01);
    END;
    END;
    // End of the added lines.

    IF GLSetup."Payment Discount Type" =
    ...

    Befintlig kod 3

    ...GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. + Payment Disc.":

    // Delete the following lines.
    ServiceLine2."Pmt. Disc. Given Amount" :=
    ROUND(
    (ServiceLine2."Line Amount" + ServiceLine2."Line Discount Amount")
    * ServHeader."Payment Discount %" / 100,0.01);
    GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. * Payment Disc.":
    ServiceLine2."Pmt. Disc. Given Amount" :=
    ROUND(
    (ServiceLine2."Line Amount" - ServiceLine2."Inv. Discount Amount") *
    ServHeader."Payment Discount %" / 100,0.01);
    GLSetup."Discount Calculation"::"Line Disc. * Inv. Disc. + Payment Disc.":
    ServiceLine2."Pmt. Disc. Given Amount" :=
    ROUND(
    (ServiceLine2."Line Amount" + ServiceLine2."Line Discount Amount") *
    ServHeader."Payment Discount %" / 100,0.01);
    GLSetup."Discount Calculation"::"Line Disc. * Inv. Disc. * Payment Disc.":
    ServiceLine2."Pmt. Disc. Given Amount" :=
    ROUND(
    (ServiceLine2."Line Amount" - ServiceLine2."Inv. Discount Amount") *
    ServHeader."Payment Discount %" / 100,0.01);
    // End of the deleted lines.

    END;

    Ersättningskod 3

    ...GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. + Payment Disc.":

    // Add the following lines.
    BEGIN
    TempServLineRemainder."Pmt. Disc. Given Amount" +=
    (ServiceLine2."Line Amount" + ServiceLine2."Line Discount Amount" ) *
    ServHeader."Payment Discount %" / 100;
    ServiceLine2."Pmt. Disc. Given Amount" :=
    CalcRoundedAmt(TempServLineRemainder."Pmt. Disc. Given Amount",TotRoundedPmtDiscAmt,0.01);
    END;
    GLSetup."Discount Calculation"::"Line Disc. + Inv. Disc. * Payment Disc.":
    BEGIN
    TempServLineRemainder."Pmt. Disc. Given Amount" +=
    (ServiceLine2."Line Amount" - ServiceLine2."Line Discount Amount" ) *
    ServHeader."Payment Discount %" / 100;
    ServiceLine2."Pmt. Disc. Given Amount" :=
    CalcRoundedAmt(TempServLineRemainder."Pmt. Disc. Given Amount",TotRoundedPmtDiscAmt,0.01);
    END;
    GLSetup."Discount Calculation"::"Line Disc. * Inv. Disc. + Payment Disc.":
    BEGIN
    TempServLineRemainder."Pmt. Disc. Given Amount" +=
    (ServiceLine2."Line Amount" + ServiceLine2."Line Discount Amount" ) *
    ServHeader."Payment Discount %" / 100;
    ServiceLine2."Pmt. Disc. Given Amount" :=
    CalcRoundedAmt(TempServLineRemainder."Pmt. Disc. Given Amount",TotRoundedPmtDiscAmt,0.01);
    END;
    GLSetup."Discount Calculation"::"Line Disc. * Inv. Disc. * Payment Disc.":
    BEGIN
    TempServLineRemainder."Pmt. Disc. Given Amount" +=
    (ServiceLine2."Line Amount" - ServiceLine2."Line Discount Amount" ) *
    ServHeader."Payment Discount %" / 100;
    ServiceLine2."Pmt. Disc. Given Amount" :=
    CalcRoundedAmt(TempServLineRemainder."Pmt. Disc. Given Amount",TotRoundedPmtDiscAmt,0.01);
    END;
    // End of the added lines.

    END;
    ...
  6. Skapa en funktion i tjänsten beräkna rabatt kodmodul (5950) enligt följande:

    PROCEDURE CalcRoundedAmt@1110000(TotAmt@1110000 : Decimal;VAR TotAmtRnded@1110001 : Decimal;AmountRoundingPrecision@1110002 : Decimal) RndAmt : Decimal;BEGIN
    RndAmt := ROUND(TotAmt,AmountRoundingPrecision) - TotAmtRnded;
    TotAmtRnded := TotAmtRnded + RndAmt;
    END;


Förutsättningar

Du måste ha någon av följande produkter som har installerat den här snabbkorrigeringen:

  • Den portugisiska versionen av Microsoft Dynamics NAV 2009 R2

  • Den portugisiska versionen av Microsoft Dynamics NAV 2009 Service Pack 1

Information om borttagning

Du kan inte ta bort den här snabbkorrigeringen.

Status

Microsoft har bekräftat att detta är ett problem i Microsoft-produkterna som nämns i avsnittet "Gäller".

Obs! Detta är en "SNABBPUBLICERING"-artikel skapad direkt från Microsoft support-organisationen. Informationen häri tillhandahålls i befintligt skick som svar på nya problem. Till följd av hastigheten för att göra det tillgängligt kan materialet innehålla typografiska fel och kan ändras när som helst utan föregående meddelande. Se Villkoren för användningför andra överväganden.

Behöver du mer hjälp?

Vill du ha fler alternativ?

Utforska prenumerationsförmåner, bläddra bland utbildningskurser, lär dig hur du skyddar din enhet med mera.

Communities hjälper dig att ställa och svara på frågor, ge feedback och få råd från experter med rika kunskaper.

Hade du nytta av den här informationen?

Hur nöjd är du med språkkvaliteten?
Vad påverkade din upplevelse?
Genom att trycka på skicka, kommer din feedback att användas för att förbättra Microsofts produkter och tjänster. IT-administratören kan samla in denna data. Sekretesspolicy.

Tack för din feedback!

×