Applies ToDynamics NAV 2009

Ten artykuł dotyczy systemu Microsoft Dynamics NAV dla ustawień regionalnych języka portugalski (pt).

Objawy

Załóżmy, że zestaw wartości Typ rabatu płatności do Oblicz rab. W wierszach w oknie dialogowym Ustawienia księgi głównej w portugalskiej wersji systemu Microsoft Dynamics NAV 2009. Możesz ustawić rabatu faktury dla faktury zakupu, który ma więcej niż jeden wiersz z miejscami po przecinku. Podczas obliczania statystyki faktury zakupu, kwota rabatu faktury jest obliczany nieprawidłowo.Ten problem występuje w następujących produktach:

  • Portugalskiej wersji systemu Microsoft Dynamics NAV 2009 R2

  • Portugalskiej wersji z dodatkiem Service Pack 1 (SP1) dla systemu Microsoft Dynamics NAV 2009

Rozwiązanie

Informacje o poprawce

Obsługiwana poprawka jest obecnie udostępniana przez firmę Microsoft. Jednak to jest przeznaczona tylko do usunięcia problemu opisanego w tym artykule. Zastosuj ją tylko w systemach, w których występuje ten problem. Ta poprawka może być wciąż w fazie testowania. Jeśli dany system nie jest poważnie narażony na ten problem, firma Microsoft zaleca, aby poczekać na następny dodatek service pack dla systemu Microsoft Dynamics NAV 2009 lub następną wersję systemu Microsoft Dynamics NAV, zawierający tę poprawkę.Uwaga W wyjątkowych przypadkach opłaty, telefonujący do pomocy technicznej mogą zostać anulowane, jeśli pomocy technicznej dla systemu Microsoft Dynamics i produktów powiązanych Określa, że określonej aktualizacji, można rozwiązać swój problem. Koszty obsługi zwykłych zastosuje się do dodatkowych pytań i problemów, których nie można rozwiązać przy użyciu określonej aktualizacji.

Informacje dotyczące instalacji

Firma Microsoft podaje przykłady programowania wyłącznie, bez jakichkolwiek gwarancji wyrażonych wprost lub domyślnie. To obejmuje, ale nie jest ograniczona, ustawowej rękojmi co do przydatności handlowej lub przydatności do określonego celu. W tym artykule założono, że użytkownik zna demonstrowany język programowania oraz narzędzia, które są używane do tworzenia i debugowania procedur. Wykwalifikowani pracownicy pomocy technicznej firmy Microsoft mogą pomóc w wyjaśnieniu, jak działa określona procedura. Nie będą jednak modyfikować tych przykładów ani dodawać funkcjonalności i konstruować procedur w celu zaspokojenia określonych potrzeb użytkownika.Uwaga Przed zainstalowaniem tej poprawki należy zweryfikować, że wszyscy użytkownicy klienta systemu Microsoft Dynamics NAV są wylogowani systemu. Obejmuje to usług systemu Microsoft Dynamics NAV aplikacji serwera (NAS). Powinny być użytkownika klienta, który jest zalogowany w momencie wdrożyć tę poprawkę.Aby wdrożyć tę poprawkę, musi mieć licencję deweloperską.Firma Microsoft zaleca, aby do konta użytkownika w oknie identyfikatorów logowania systemu Windows lub w oknie identyfikatorów logowania bazy danych być przypisany identyfikator roli "SUPER". Jeśli konto użytkownika nie można przypisać Identyfikatora roli "SUPER", należy sprawdzić, czy konto użytkownika ma następujące uprawnienia:

  • Uprawnienie Modyfikacja dla obiektu, który będzie zmieniany.

  • Uprawnienie Execute obiektu 5210 identyfikator obiektu systemu i 9015 identyfikator obiektu systemuobiekt.

Uwaga Nie trzeba mieć prawa do magazynów danych, chyba że konieczne jest przeprowadzenie naprawy danych.

Zmiany kodu

Uwaga Zawsze test poprawki kodu w kontrolowanym środowisku przed zastosowaniem poprawki na komputerach produkcyjnych.Aby rozwiązać ten problem, wykonaj następujące kroki:

  1. Zmień kod w funkcji CalculateInvoiceDiscount w sprzedaży-Oblicz rabat Codeunit (60) w następujący sposób:Istniejący kod 1

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

    Kod zastępczy 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...

    Istniejący 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" =...

    Kod zastępczy 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" =...

    Istniejący 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;...

    Kod zastępczy 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. Tworzenie funkcji w sprzedaży-Oblicz rabat Codeunit (60) w następujący sposób:

    PROCEDURE CalcRoundedAmt@1110000(TotAmt@1110000 : Decimal;VAR TotAmtRnded@1110001 : Decimal;AmountRoundingPrecision@1110002 : Decimal) RndAmt : Decimal;BEGINRndAmt := ROUND(TotAmt,AmountRoundingPrecision) - TotAmtRnded;TotAmtRnded := TotAmtRnded + RndAmt;END;
  3. Zmień kod w funkcji CalculateInvoiceDiscount w zam.-Calc.Discount Codeunit (70) w następujący sposób:Istniejący kod 1

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

    Kod zastępczy 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...

    Istniejący 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;...

    Kod zastępczy 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;...

    Istniejący 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;...

    Kod zastępczy 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. Utwórz funkcję zam.-Calc.Discount Codeunit (70) w następujący sposób:

    PROCEDURE CalcRoundedAmt@1110000(TotAmt@1110000 : Decimal;VAR TotAmtRnded@1110001 : Decimal;AmountRoundingPrecision@1110002 : Decimal) RndAmt : Decimal;BEGINRndAmt := ROUND(TotAmt,AmountRoundingPrecision) - TotAmtRnded;TotAmtRnded := TotAmtRnded + RndAmt;END;
  5. Zmień kod w funkcji CalculateInvoiceDiscount w Service-Oblicz rabat Codeunit (5950) w następujący sposób:Istniejący kod 1

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

    Kod zastępczy 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...

    Istniejący 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" =...

    Kod zastępczy 2

    ...GLSetup."Discount Calculation"::"Line Disc. * Inv. Disc. * Payment Disc.":// Add the following lines.BEGINTempServLineRemainder."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.":BEGINTempServLineRemainder."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" =...

    Istniejący 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;

    Kod zastępczy 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. Tworzenie funkcji w Service-Oblicz rabat Codeunit (5950) w następujący sposób:

    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;

Wymagania wstępne

Musi mieć jedną z następujących produktów, w celu zastosowania tej poprawki:

  • Portugalskiej wersji systemu Microsoft Dynamics NAV 2009 R2

  • Portugalskiej wersji dodatku Service Pack 1 dla systemu Microsoft Dynamics NAV 2009

Informacje dotyczące usuwania

Nie można usunąć tej poprawki.

Stan

Firma Microsoft potwierdziła, że jest to problem występujący w produktach firmy Microsoft wymienionych w sekcji „Dotyczy”.

Uwaga Jest to artykuł " szybkiej publikacji" tworzony bezpośrednio przez organizację pomocy technicznej firmy Microsoft. Informacje zawarte w niniejszym dokumencie są dostarczane jako odpowiedź na pojawiające się problemy. W wyniku przyspieszonego udostępnienia, materiały te mogą zawierać błędy typograficzne i mogą być zmieniane w dowolnym czasie bez uprzedzenia. Zobacz Warunki użytkowaniadla innych względów.

Potrzebujesz dalszej pomocy?

Chcesz uzyskać więcej opcji?

Poznaj korzyści z subskrypcji, przeglądaj kursy szkoleniowe, dowiedz się, jak zabezpieczyć urządzenie i nie tylko.

Społeczności pomagają zadawać i odpowiadać na pytania, przekazywać opinie i słuchać ekspertów z bogatą wiedzą.