Prisijunkite prie „Microsoft“
Prisijunkite arba sukurkite paskyrą.
Sveiki,
Pasirinkti kitą paskyrą.
Turite kelias paskyras
Pasirinkite paskyrą, kurią naudodami norite prisijungti.

Požymiai

Priminimo suma yra neteisinga, jei priminimas mokestį paskyra sukonfigūruota su pridėtinės vertės mokestis (PVM) Microsoft Dynamics NAV 2009. Taip nutinka, nors priminimą mokestį neužregistruotas ir klientas yra ES klientas. Atlikite veiksmus, kodo pasikeitimus skyriuje išspręsti šią problemą. Ši problema iškyla faile šiems produktams:

  • Microsoft Dynamics NAV 2009 R2

  • Microsoft Dynamics NAV 2009 SP1

Sprendimas

Karštųjų pataisų informacija

Palaikomą naujausią pataisą dabar yra Microsoft. Tačiau jos skirtos tik šiame straipsnyje aprašytai problemai spręsti. Taikyti ją tik sistemoms, kuriose kyla ši konkreti problema. Šios karštosios pataisos gali būti papildomai išbandoma. Todėl, jei jums nelabai trukdo Ši problema, rekomenduojame palaukti kito "Microsoft Dynamics NAV 2009" pakeitimų paketo arba kitą versiją Microsoft Dynamics NAV, kuriame bus šios karštosios pataisos.

Pastaba. Konkrečiais atvejais už palaikymo skambučius gali būti atšaukti, jei techninės pagalbos specialistas Microsoft Dynamics ir susijusių produktų taikomi įprasti mokesčiai nustato, kad jūsų problemą galima išspręsti naudojant konkretų naujinimą. Į įprastos kainos už palaikymą taikomos papildomos palaikymo klausimams ir problemoms, kurių negalima išspręsti naudojant minėtą naujinimą.

Diegimo informacija

Microsoft pateikia programavimo pavyzdžius tik, tačiau nesuteikia jokių aiškių arba numanomų garantijų. Tai apima, bet neapsiribojant, numanomas garantijas dėl perkamumo ir tinkamumo konkrečiam tikslui. Šis straipsnis parašytas galvojant, kad esate susipažinę su pateikta programavimo kalba ir įrankiais, kurie yra naudojami procedūroms kurti ir derinti. "Microsoft" palaikymo inžinieriai gali padėti paaiškindami konkrečios procedūros funkcines galimybes. Tačiau jie nekeis šių pavyzdžių, kad numatytų papildomą funkcinę galimybę arba sukurtų konkrečius jūsų reikalavimus atitinkančias procedūras.

Pastaba. Prieš diegdami šias karštąsias pataisas, patikrinkite, kad visi Microsoft Dynamics NAV kliento vartotojai išsiregistravę sistema. Tai apima Microsoft Dynamics NAV programų serverio (NAS) paslaugas. Jums turėtų būti tik kliento vartotojo, kuris yra prisijungęs, kai atliekate šias karštąsias pataisas.

Norint pritaikyti šią karštąją pataisą, turite programų kūrėjo licencijos.

Rekomenduojame, kad vartotojo abonemento Windows registravimosi lange arba duomenų bazės prisijungimų langas priskirti "SUPER" vaidmenį ID. Jei vartotojo abonementas negali būti priskirta "SUPER" ID., turi patikrinti, kad vartotojo abonementas turi šias teises:

  • Keisti teisės objektas, kuris bus pakeisti.

  • Teisės vykdyti sistemos objekto ID 5210 objekto ir sistemos objekto ID 9015

    objekto.

Pastaba. Jūs neturite turėti teisių į duomenų parduotuvių, nebent jūs turite atlikti duomenų atkūrimo.

Pastaba.

Pastaba. Visada bandymas kodas nustato kontroliuojamoje aplinkoje prieš taikydami nustato savo gamybos kompiuteriams.

Norėdami išspręsti šią problemą, atlikite šiuos veiksmus:

  1. Pakeisti priminimą statistikos formos (437) ypatybės kodą taip:
    Esamas kodas

    ... CALCFIELDS("Interest Amount","VAT Amount");
    ReminderTotal := "Remaining Amount" + "Additional Fee" + "Interest Amount" + "VAT Amount";
    CustPostingGr.GET("Customer Posting Group");
    VATInterest := 0;
    IF ReminderLevel.GET("Reminder Terms Code","Reminder Level") THEN

    // Delete the following lines.
    IF ReminderLevel."Calculate Interest" THEN BEGIN
    GLAcc.GET(CustPostingGr."Interest Account");
    VATPostingSetup.GET("VAT Bus. Posting Group",GLAcc."VAT Prod. Posting Group");
    VATInterest := VATPostingSetup."VAT %";
    END;

    IF GLAcc.GET(CustPostingGr."Additional Fee Account") THEN
    VATPostingSetup.GET("VAT Bus. Posting Group",GLAcc."VAT Prod. Posting Group");

    Interest := (ReminderTotal - "Remaining Amount" - "Additional Fee" * (VATPostingSetup."VAT %"/100 + 1))/
    (VATInterest/100 + 1);

    VatAmount := Interest * VATInterest/100 +
    "Additional Fee" * VATPostingSetup."VAT %"/100;

    // End of the deleted lines.

    IF Cust.GET("Customer No.") THEN
    Cust.CALCFIELDS("Balance (LCY)")
    ELSE
    CLEAR(Cust);
    IF Cust."Credit Limit (LCY)" = 0 THEN
    ...

    Pastaba.

    ... CALCFIELDS("Interest Amount","VAT Amount");
    ReminderTotal := "Remaining Amount" + "Additional Fee" + "Interest Amount" + "VAT Amount";
    CustPostingGr.GET("Customer Posting Group");
    VATInterest := 0;
    IF ReminderLevel.GET("Reminder Terms Code","Reminder Level") THEN

    // Add the following lines.
    IF ReminderLevel."Calculate Interest" AND ("VAT Amount" <> 0) THEN BEGIN
    GLAcc.GET(CustPostingGr."Interest Account");
    VATPostingSetup.GET("VAT Bus. Posting Group",GLAcc."VAT Prod. Posting Group");
    VATInterest := VATPostingSetup."VAT %";
    IF GLAcc.GET(CustPostingGr."Additional Fee Account") THEN
    VATPostingSetup.GET("VAT Bus. Posting Group",GLAcc."VAT Prod. Posting Group");
    Interest :=
    (ReminderTotal -
    "Remaining Amount" - "Additional Fee" * (VATPostingSetup."VAT %"/ 100 + 1)) /(VATInterest / 100 + 1);
    VatAmount := Interest * VATInterest / 100 + "Additional Fee" * VATPostingSetup."VAT %" / 100;
    END ELSE
    Interest := "Interest Amount";
    // End of the added lines.

    IF Cust.GET("Customer No.") THEN
    Cust.CALCFIELDS("Balance (LCY)")
    ELSE
    CLEAR(Cust);
    IF Cust."Credit Limit (LCY)" = 0 THEN
    ...
  2. Pakeisti priminimą statistikos formos (441) ypatybės kodą taip:
    Esamas kodas

    ...BEGIN
    SETRANGE("No.");
    CALCFIELDS("Interest Amount","VAT Amount");
    ReminderTotal := "Remaining Amount" + "Additional Fee" + "Interest Amount" + "VAT Amount";
    CustPostingGr.GET("Customer Posting Group");

    // Delete the following lines.
    ReminderLevel.GET("Reminder Terms Code","Reminder Level");
    IF ReminderLevel."Calculate Interest" THEN BEGIN
    GLAcc.GET(CustPostingGr."Interest Account");
    VATPostingSetup.GET("VAT Bus. Posting Group",GLAcc."VAT Prod. Posting Group");
    VATInterest := VATPostingSetup."VAT %";
    END ELSE
    VATInterest := 0;
    IF GLAcc.GET(CustPostingGr."Additional Fee Account") THEN
    VATPostingSetup.GET("VAT Bus. Posting Group",GLAcc."VAT Prod. Posting Group");

    Interest := (ReminderTotal - "Remaining Amount" - "Additional Fee" * (VATPostingSetup."VAT %"/100 + 1))/
    (VATInterest/100 + 1);

    VatAmount := Interest * VATInterest/100 +
    "Additional Fee" * VATPostingSetup."VAT %"/100;

    // End of the deleted lines.

    IF Cust.GET("Customer No.") THEN
    Cust.CALCFIELDS("Balance (LCY)")
    ELSE
    CLEAR(Cust);
    IF Cust."Credit Limit (LCY)" = 0 THEN
    ...

    Pastaba.

    ...BEGIN
    SETRANGE("No.");
    CALCFIELDS("Interest Amount","VAT Amount");
    ReminderTotal := "Remaining Amount" + "Additional Fee" + "Interest Amount" + "VAT Amount";
    CustPostingGr.GET("Customer Posting Group");

    // Add the following lines.
    IF ReminderLevel.GET("Reminder Terms Code","Reminder Level") THEN
    IF ReminderLevel."Calculate Interest" AND ("VAT Amount" <> 0) THEN BEGIN
    GLAcc.GET(CustPostingGr."Interest Account");
    VATPostingSetup.GET("VAT Bus. Posting Group",GLAcc."VAT Prod. Posting Group");
    VATInterest := VATPostingSetup."VAT %";
    IF GLAcc.GET(CustPostingGr."Additional Fee Account") THEN
    VATPostingSetup.GET("VAT Bus. Posting Group",GLAcc."VAT Prod. Posting Group");
    Interest :=
    (ReminderTotal -
    "Remaining Amount" - "Additional Fee" * (VATPostingSetup."VAT %"/ 100 + 1)) /(VATInterest / 100 + 1);
    VatAmount := Interest * VATInterest / 100 + "Additional Fee" * VATPostingSetup."VAT %" / 100;
    END ELSE
    Interest := "Interest Amount";
    // End of the added lines.

    IF Cust.GET("Customer No.") THEN
    Cust.CALCFIELDS("Balance (LCY)")
    ELSE
    CLEAR(Cust);
    IF Cust."Credit Limit (LCY)" = 0 THEN
    ...
  3. Pakeisti kodą duomenų elemento numeris 1 priminimą statistikos ataskaitos (117) taip:
    Esamas kodas

    ...IF GLAcc.GET(CustPostingGroup."Additional Fee Account") THEN BEGIN
    VATPostingSetup.GET("VAT Bus. Posting Group",GLAcc."VAT Prod. Posting Group");
    AddFeeInclVAT := "Additional Fee" * (1 + VATPostingSetup."VAT %"/100);
    END ELSE
    AddFeeInclVAT := "Additional Fee";

    // Delete the following lines.
    CALCFIELDS("Interest Amount");
    IF "Interest Amount" <> 0 THEN BEGIN
    GLAcc.GET(CustPostingGroup."Interest Account");
    VATPostingSetup.GET("VAT Bus. Posting Group",GLAcc."VAT Prod. Posting Group");
    VATInterest := VATPostingSetup."VAT %";
    END ELSE
    VATInterest := 0;
    // End of the deleted lines.

    IF ISSERVICETIER THEN BEGIN
    NNC_InterestAmountTotal := 0;
    NNC_RemainingAmountTotal := 0;
    NNC_VATAmountTotal := 0;
    ...

    Pastaba.

    ...  IF GLAcc.GET(CustPostingGroup."Additional Fee Account") THEN BEGIN
    VATPostingSetup.GET("VAT Bus. Posting Group",GLAcc."VAT Prod. Posting Group");
    AddFeeInclVAT := "Additional Fee" * (1 + VATPostingSetup."VAT %"/100);
    END ELSE
    AddFeeInclVAT := "Additional Fee";

    // Add the following lines.
    CALCFIELDS("Interest Amount","VAT Amount");
    IF ("Interest Amount" <> 0) AND ("VAT Amount" <> 0) THEN BEGIN
    GLAcc.GET(CustPostingGroup."Interest Account");
    VATPostingSetup.GET("VAT Bus. Posting Group",GLAcc."VAT Prod. Posting Group");
    VATInterest := VATPostingSetup."VAT %";
    Interest:=
    (ReminderInterestAmount +
    "VAT Amount" +"Issued Reminder Header"."Additional Fee" - AddFeeInclVAT) / (VATInterest / 100 + 1);
    END ELSE BEGIN
    Interest:= "Interest Amount";
    VATInterest := 0;
    END;
    // End of the added lines.

    IF ISSERVICETIER THEN BEGIN
    NNC_InterestAmountTotal := 0;
    NNC_RemainingAmountTotal := 0;
    NNC_VATAmountTotal := 0;
    ...
  4. Pakeisti kodą duomenų elemento numeris 4 skyrius primena statistikos ataskaitos (117) taip:
    Esamas kodas 1

    ...}
    CONTROLS
    {
    { 45 ;TextBox ;10710;0 ;2520 ;423 ;FontSize=9;
    CaptionML=ENU=Interest Amount;

    // Delete the following line.
    SourceExpr=(ReminderInterestAmount + "VAT Amount" +"Issued Reminder Header"."Additional Fee" - AddFeeInclVAT)/(VATInterest/100 +1);
    // End of the deleted line.

    AutoFormatType=1;
    AutoFormatExpr="Issued Reminder Line".GetCurrencyCodeFromHeader;
    DataSetFieldName=ReminderInterestAmount____VAT_Amount____Issued_Reminder_Header___Additional_Fee____AddFeeInclVAT___VATInterest_100__1_ }
    { 47 ;Label ;6090 ;0 ;4200 ;423 ;ParentControl=45;
    FontSize=9;
    ...

    Atsarginis kodas 1

    ...}
    CONTROLS
    {
    { 45 ;TextBox ;10710;0 ;2520 ;423 ;FontSize=9;
    CaptionML=ENU=Interest Amount;

    // Add the following line.
    SourceExpr=Interest;
    // End of the added line.

    AutoFormatType=1;
    AutoFormatExpr="Issued Reminder Line".GetCurrencyCodeFromHeader;
    DataSetFieldName=ReminderInterestAmount____VAT_Amount____Issued_Reminder_Header___Additional_Fee____AddFeeInclVAT___VATInterest_100__1_ }
    { 47 ;Label ;6090 ;0 ;4200 ;423 ;ParentControl=45;
    FontSize=9;
    ...

    Esamas kodas 2

    ...CONTROLS
    {
    { 44 ;TextBox ;10710;0 ;2520 ;423 ;FontSize=9;
    FontBold=Yes;
    CaptionML=ENU=Total;

    // Delete the following line.
    SourceExpr="Remaining Amount" + ReminderInterestAmount + "VAT Amount"-(ReminderInterestAmount + "VAT Amount" +"Issued Reminder Header"."Additional Fee" - AddFeeInclVAT)/(VATInterest/100+1)*VATInterest/100 + "Issued Reminder Header"."Additional Fee" - AddFeeInclVAT;
    // End of the deleted line.

    AutoFormatType=1;
    AutoFormatExpr="Issued Reminder Line".GetCurrencyCodeFromHeader;
    DataSetFieldName=Remaining_Amount____ReminderInterestAmount____VAT_Amount___ReminderInterestAmount____VAT_Amount____Issued_Reminder_Header___Additional_Fee____AddFeeInclVAT___VATInterest_100_1__VATInterest_100____Issued_Reminder_Header___Additional_Fee____AddFeeInclVAT }
    { 56 ;TextBox ;6090 ;0 ;4200 ;423 ;FontSize=9;
    FontBold=Yes;
    ...

    Atsarginis kodas 2

    ... CONTROLS
    {
    { 44 ;TextBox ;10710;0 ;2520 ;423 ;FontSize=9;
    FontBold=Yes;
    CaptionML=ENU=Total;

    // Add the following line.
    SourceExpr="Remaining Amount" + ReminderInterestAmount;
    // End of the added line.

    AutoFormatType=1;
    AutoFormatExpr="Issued Reminder Line".GetCurrencyCodeFromHeader;
    DataSetFieldName=Remaining_Amount____ReminderInterestAmount____VAT_Amount___ReminderInterestAmount____VAT_Amount____Issued_Reminder_Header___Additional_Fee____AddFeeInclVAT___VATInterest_100_1__VATInterest_100____Issued_Reminder_Header___Additional_Fee____AddFeeInclVAT }
    { 56 ;TextBox ;6090 ;0 ;4200 ;423 ;FontSize=9;
    FontBold=Yes;
    ...
  5. Pakeisti kodą duomenų elemento numeris 1 priminimą statistikos ataskaitos (122) taip:
    Esamas kodas

    ...IF GLAcc.GET(CustPostingGroup."Additional Fee Account") THEN BEGIN
    VATPostingSetup.GET("VAT Bus. Posting Group",GLAcc."VAT Prod. Posting Group");
    AddFeeInclVAT := "Additional Fee" * (1 + VATPostingSetup."VAT %"/100);
    END ELSE
    AddFeeInclVAT := "Additional Fee";

    // Delete the following lines.
    CALCFIELDS("Interest Amount");
    IF "Interest Amount" <> 0 THEN BEGIN
    GLAcc.GET(CustPostingGroup."Interest Account");
    VATPostingSetup.GET("VAT Bus. Posting Group",GLAcc."VAT Prod. Posting Group");
    VATInterest := VATPostingSetup."VAT %";
    END ELSE
    VATInterest := 0;

    // End of the deleted lines.

    IF ISSERVICETIER THEN BEGIN
    NNC_Interest := 0;
    NNC_TotalLCY := 0;
    NNC_VATAmount := 0;
    NNC_TotalLCYVATAmount := 0;
    ...

    Pastaba.

    ...IF GLAcc.GET(CustPostingGroup."Additional Fee Account") THEN BEGIN
    VATPostingSetup.GET("VAT Bus. Posting Group",GLAcc."VAT Prod. Posting Group");
    AddFeeInclVAT := "Additional Fee" * (1 + VATPostingSetup."VAT %"/100);
    END ELSE
    AddFeeInclVAT := "Additional Fee";

    // Add the following lines.
    CALCFIELDS("Interest Amount","VAT Amount");
    IF ("Interest Amount" <> 0) AND ("VAT Amount" <> 0) THEN BEGIN
    GLAcc.GET(CustPostingGroup."Interest Account");
    VATPostingSetup.GET("VAT Bus. Posting Group",GLAcc."VAT Prod. Posting Group");
    VATInterest := VATPostingSetup."VAT %";
    Interest:=
    (ReminderInterestAmount +
    "VAT Amount" +"Reminder Header"."Additional Fee" - AddFeeInclVAT) / (VATInterest / 100 + 1);
    END ELSE BEGIN
    Interest:= "Interest Amount";
    VATInterest := 0;
    END;
    IF VATInterest <> 0 THEN
    // End of the added lines.

    IF ISSERVICETIER THEN BEGIN
    NNC_Interest := 0;
    NNC_TotalLCY := 0;
    NNC_VATAmount := 0;
    NNC_TotalLCYVATAmount := 0;
    ...
  6. Pakeisti priminimą statistikos ataskaitos (122) 2 duomenų elemento numerį taip:
    Esamas kodas

    ... }
    { PROPERTIES
    {
    DataItemIndent=1;
    DataItemTable=Table2000000026;

    // Delete the following line.
    DataItemTableView=SORTING(Number) WHERE(Number=CONST(1));
    // End of the deleted line.

    DataItemVarName=PageCounter;
    }
    SECTIONS
    {
    { PROPERTIES
    ...

    Pastaba.

    ...}
    { PROPERTIES
    {
    DataItemIndent=1;
    DataItemTable=Table2000000026;

    // Add the following lines.
    DataItemTableView=SORTING(Number)
    WHERE(Number=CONST(1));
    // End of the added lines.

    DataItemVarName=PageCounter;
    }
    SECTIONS
    {
    { PROPERTIES
    ...
  7. Keisti kodo duomenų elemento numeris 3, primena statistikos ataskaitos (122) taip:
    Esamas kodas

    ...}
    { PROPERTIES
    {
    DataItemIndent=2;
    DataItemTable=Table2000000026;

    // Delete the following line.
    DataItemTableView=SORTING(Number) WHERE(Number=FILTER(1..));
    // End of the deleted line.

    DataItemVarName=DimensionLoop;
    OnPreDataItem=BEGIN
    IF NOT ShowDim THEN
    CurrReport.BREAK;
    DocDim.SETRANGE("Table ID",DATABASE::"Reminder Header");
    ...

    Pastaba.

    ...}
    { PROPERTIES
    {
    DataItemIndent=2;
    DataItemTable=Table2000000026;

    // Add the following lines.
    DataItemTableView=SORTING(Number)
    WHERE(Number=FILTER(1..));
    // End of the added lines.

    DataItemVarName=DimensionLoop;
    OnPreDataItem=BEGIN
    IF NOT ShowDim THEN
    CurrReport.BREAK;
    DocDim.SETRANGE("Table ID",DATABASE::"Reminder Header");
    ...
  8. Keisti kodo duomenų elemento numeris 5 priminimą statistikos ataskaitos (122) taip:
    Esamas kodas

    ... }
    { PROPERTIES
    {
    DataItemIndent=2;
    DataItemTable=Table296;

    // Delete the following line.
    DataItemTableView=SORTING(Reminder No.,Line No.) WHERE(Line Type=FILTER(<>Not Due));
    // End of the deleted line.

    OnPreDataItem=BEGIN
    IF ISSERVICETIER THEN
    TotalVATAmount := 0;

    IF FIND('+') THEN BEGIN
    ...

    Pastaba.

    ...}
    { PROPERTIES
    {
    DataItemIndent=2;
    DataItemTable=Table296;

    // Add the following lines.
    DataItemTableView=SORTING(Reminder No.,Line No.)
    WHERE(Line Type=FILTER(<>Not Due));
    // End of the added lines.

    OnPreDataItem=BEGIN
    IF ISSERVICETIER THEN
    TotalVATAmount := 0;

    IF FIND('+') THEN BEGIN
    ...
  9. Keisti kodo duomenų elemento numeris 5 skyriuose primena statistikos ataskaitos (122) taip:
    Esamas kodas 1

    ...   }
    CONTROLS
    {
    { 17 ;TextBox ;10710;0 ;2520 ;423 ;FontSize=9;
    CaptionML=ENU=Interest Amount;

    // Delete the following line.
    SourceExpr=(ReminderInterestAmount + "VAT Amount" +"Reminder Header"."Additional Fee" - AddFeeInclVAT)/(VATInterest/100 +1);
    // End of the deleted line.

    AutoFormatType=1;
    AutoFormatExpr="Reminder Line".GetCurrencyCodeFromHeader;
    DataSetFieldName=ReminderInterestAmount____VAT_Amount____Reminder_Header___Additional_Fee____AddFeeInclVAT___VATInterest_100__1_ }
    { 20 ;Label ;6090 ;0 ;4200 ;423 ;ParentControl=17;
    FontSize=9;
    ...

    Atsarginis kodas 1

    ... }
    CONTROLS
    {
    { 17 ;TextBox ;10710;0 ;2520 ;423 ;FontSize=9;
    CaptionML=ENU=Interest Amount;

    // Add the following line.
    SourceExpr=Interest;
    // End of the added line.

    AutoFormatType=1;
    AutoFormatExpr="Reminder Line".GetCurrencyCodeFromHeader;
    DataSetFieldName=ReminderInterestAmount____VAT_Amount____Reminder_Header___Additional_Fee____AddFeeInclVAT___VATInterest_100__1_ }
    { 20 ;Label ;6090 ;0 ;4200 ;423 ;ParentControl=17;
    FontSize=9;
    ...

    Esamas kodas 2

    ...}
    CONTROLS
    {
    { 29 ;TextBox ;10710;0 ;2520 ;423 ;FontSize=9;
    FontBold=Yes;

    // Delete the following line.
    SourceExpr="Remaining Amount" + ReminderInterestAmount + "VAT Amount"-(ReminderInterestAmount + "VAT Amount" +"Reminder Header"."Additional Fee" - AddFeeInclVAT)/(VATInterest/100+1)*VATInterest/100 + "Reminder Header"."Additional Fee" - AddFeeInclVAT;
    // End of the deleted line.

    AutoFormatType=1;
    AutoFormatExpr="Reminder Line".GetCurrencyCodeFromHeader;
    DataSetFieldName=Remaining_Amount____ReminderInterestAmount____VAT_Amount___ReminderInterestAmount____VAT_Amount____Reminder_Header___Additional_Fee____AddFeeInclVAT___VATInterest_100_1__VATInterest_100____Reminder_Header___Additional_Fee____AddFeeInclVAT }
    { 43 ;TextBox ;6090 ;0 ;4200 ;423 ;FontSize=9;
    FontBold=Yes;
    ...

    Atsarginis kodas 2

    ...}
    CONTROLS
    {
    { 29 ;TextBox ;10710;0 ;2520 ;423 ;FontSize=9;
    FontBold=Yes;

    // Add the following line.
    SourceExpr="Remaining Amount" + ReminderInterestAmount;
    // End of the added line.

    AutoFormatType=1;
    AutoFormatExpr="Reminder Line".GetCurrencyCodeFromHeader;
    DataSetFieldName=Remaining_Amount____ReminderInterestAmount____VAT_Amount___ReminderInterestAmount____VAT_Amount____Reminder_Header___Additional_Fee____AddFeeInclVAT___VATInterest_100_1__VATInterest_100____Reminder_Header___Additional_Fee____AddFeeInclVAT }
    { 43 ;TextBox ;6090 ;0 ;4200 ;423 ;FontSize=9;
    FontBold=Yes;
    ...

Būtinosios sąlygos

Turi būti viena iš toliau nurodytų produktų, norint taikyti šias karštąsias pataisas:

  • Microsoft Dynamics NAV 2009 R2

  • Microsoft Dynamics NAV 2009 SP1

Pašalinimo informacija

Jūs negalite pašalinti šias karštąsias pataisas.

Būsena

„Microsoft“ patvirtino, kad tai yra „Microsoft“ produktų, išvardytų skyriuje „Taikoma“, problema.

Pastaba. Tai yra "GREITAI PUBLIKUOJAMAS" straipsnis, sukurtas tiesiogiai Microsoft palaikymo tarnybos. Čia pateikta informacija yra atsakas į kylančius klausimus. Dėl greito publikavimo medžiagoje gali būti spausdinimo klaidų ir ji gali būti peržiūrima bet kuriuo metu be įspėjimo. Naudojimoieškokite kitų priežasčių.

Reikia daugiau pagalbos?

Norite daugiau parinkčių?

Sužinokite apie prenumeratos pranašumus, peržiūrėkite mokymo kursus, sužinokite, kaip apsaugoti savo įrenginį ir kt.

Bendruomenės padeda užduoti klausimus ir į juos atsakyti, pateikti atsiliepimų ir išgirsti iš ekspertų, turinčių daug žinių.

Ar ši informacija buvo naudinga?

Ar esate patenkinti kalbos kokybe?
Kas turėjo įtakos jūsų įspūdžiams?
Paspaudus mygtuką Pateikti, jūsų atsiliepimai bus naudojami tobulinant „Microsoft“ produktus ir paslaugas. Jūsų IT administratorius galės rinkti šiuos duomenis. Privatumo patvirtinimas.

Dėkojame už jūsų atsiliepimą!

×