Platí proDynamics NAV 2009

"Prohlášení dodavatele" sestava zobrazí nesprávné celková částka při použití faktury pomocí platby kde byla odečtena skonta v portugalské verzi Microsoft Dynamics NAV 2009. Částka platební slevy je zobrazena jako celkové saldo. Postupujte podle pokynů změny kódu sekce Chcete-li vyřešit tento problém. K tomuto problému dochází v následujících produktů:

  • Portugalské verzi Microsoft Dynamics NAV 2009 R2

  • Portugalské verzi Microsoft Dynamics NAV 2009 SP1

Řešení

Informace o opravě hotfix

Podporovaná oprava hotfix je nyní k dispozici od společnosti Microsoft. Však je určena pouze k odstranění problému popsaného v tomto článku. Použijte ji pouze u systémů, ve kterých dochází k tomuto konkrétnímu problému. Tato oprava hotfix může být dále testována. Proto pokud jste závažně tento problém, doporučujeme počkat na další aktualizaci service pack produktu Microsoft Dynamics NAV 2009 nebo další verze produktu Microsoft Dynamics NAV, která obsahuje tuto opravu hotfix.Poznámka: Ve zvláštních případech poplatky, které jsou třeba obvykle zaplatit za telefonní hovory mohou být stornovány, jestliže pracovník technické podpory společnosti Microsoft Dynamics a souvisejících produktů Určuje, že konkrétní aktualizace odstraní váš problém. Výdaje na technickou podporu použije dalších otázek a problémů, které nelze vyřešit konkrétní aktualizací.

Informace o instalaci

Společnost Microsoft poskytuje ukázky programování pouze pro ilustraci bez žádné záruky výslovně uvedené nebo odvozené. To zahrnuje, ale není omezen pouze na předpokládané záruky obchodovatelnosti nebo vhodnosti pro určitý účel. Tento článek předpokládá, že jste obeznámeni s programovacím jazykem, který je předmětem ukázky a s nástroji, které slouží k vytvoření a ladění skriptu. Pracovníci podpory společnosti Microsoft mohou vysvětlit funkce určitého postupu. Nemohou však následující příklady rozšířit o další funkce nebo konstrukce podle konkrétních požadavků.Poznámka: Před instalací této opravy hotfix ověřte, že všichni uživatelé klienta Microsoft Dynamics NAV odhlášeni systému. To zahrnuje služby Microsoft Dynamics NAV Application Server (NAS). Je třeba klienta pouze uživatel přihlášený při implementaci opravy hotfix.Chcete-li implementovat tuto opravu hotfix, musí mít licenci vývojáře.Doporučujeme, aby uživatelský účet v okně přihlášení systému Windows nebo v okně přihlášení databáze přidělí "SUPER" ID role. Pokud uživatelský účet nelze přiřadit ID role "SUPER", musíte ověřit, že uživatelský účet má následující oprávnění:

  • Změnit oprávnění pro objekt, který budete měnit.

  • Oprávnění ke spuštění pro System Object ID 5210 objekt a System Object ID 9015objektu.

Poznámka: Nemáte práva k úložištím dat. Pokud nebudete provádět opravu dat.

Změny kódu

Poznámka: vždy otestujte opravy kódu v kontrolovaném prostředí před instalací opravy v provozních počítačích. Před použitím změnu, importujte všechny aktualizace SEPA.Chcete-li vyřešit tento problém, postupujte takto:

  1. Změňte kód v 1 číslo položky dat v sestavě prohlášení dodavatele (13377) takto:Existující kód 1

    ...   Currency2.INSERT;                            UNTIL Currency.NEXT = 0;                        END;// Delete the following line.OnAfterGetRecord=BEGIN// End of the deleted line.                             CurrReport.LANGUAGE := Language.GetLanguageID("Language Code");                             PrintLine := FALSE;                             Vend2 := Vendor;                             COPYFILTER("Currency Filter",Currency2.Code);...

    Změněný kód 1

    ... Currency2.INSERT;                            UNTIL Currency.NEXT = 0;                        END;// Add the following lines.OnAfterGetRecord=VARVendLedgEntry@1000 : Record 25;BEGIN// End of the added lines.                             CurrReport.LANGUAGE := Language.GetLanguageID("Language Code");                             PrintLine := FALSE;                             Vend2 := Vendor;                             COPYFILTER("Currency Filter",Currency2.Code);...

    Existující kód 2

    ...PrintLine := Vend2."Net Change" <> 0;                                 UNTIL (Currency2.NEXT = 0) OR PrintLine;                             END;                             IF (NOT PrintLine) AND PrintAllHavingEntry THEN BEGIN// Delete the following lines."Vendor Ledger Entry".RESET;"Vendor Ledger Entry".SETCURRENTKEY("Vendor No.","Posting Date");"Vendor Ledger Entry".SETRANGE("Vendor No.",Vendor."No.");"Vendor Ledger Entry".SETRANGE("Posting Date",StartDate,EndDate);Vendor.COPYFILTER("Currency Filter","Vendor Ledger Entry"."Currency Code");PrintLine := "Vendor Ledger Entry".FIND('-');// End of the deleted lines.                             END;                             IF NOT PrintLine THEN                               CurrReport.SKIP;...

    Náhradní kód 2

    ... PrintLine := Vend2."Net Change" <> 0;                                 UNTIL (Currency2.NEXT = 0) OR PrintLine;                             END;                             IF (NOT PrintLine) AND PrintAllHavingEntry THEN BEGIN// Add the following lines.VendLedgEntry.SETCURRENTKEY("Vendor No.","Posting Date");VendLedgEntry.SETRANGE("Vendor No.",Vendor."No.");VendLedgEntry.SETRANGE("Posting Date",StartDate,EndDate);Vendor.COPYFILTER("Currency Filter",VendLedgEntry."Currency Code");PrintLine := NOT VendLedgEntry.ISEMPTY;// End of the added lines.                             END;                             IF NOT PrintLine THEN                               CurrReport.SKIP;...
  2. Změňte kód 4 číslo položky dat v sestavě prohlášení dodavatele (13377) takto:Existující kód 1

    ... }      { PROPERTIES        {          DataItemIndent=3;// Delete the following lines.DataItemTable=Table25;DataItemTableView=SORTING(Vendor No.,Posting Date);OnPreDataItem=BEGINSETRANGE("Posting Date",StartDate,EndDate);SETRANGE("Currency Code",Currency2.Code);CurrReport.CREATETOTALS("Remaining Amount");// End of the deleted lines.                          IF Currency2.Code = '' THEN BEGIN                            GLSetup.TESTFIELD("LCY Code");                            CurrencyCode3 := GLSetup."LCY Code"                          END ELSE...

    Změněný kód 1

    ...  }      { PROPERTIES        {          DataItemIndent=3;// Add the following lines.DataItemTable=Table2000000026;DataItemTableView=SORTING(Number)WHERE(Number=CONST(1));DataItemVarName=VendLedEntryHdr;PrintOnlyIfDetail=Yes;}SECTIONS{}}{ PROPERTIES{DataItemIndent=4;DataItemTable=Table380;DataItemTableView=SORTING(Vendor No.,Posting Date,Entry Type,Currency Code)WHERE(Excluded from calculation=CONST(No),Entry Type=FILTER(<>Application&<>Redrawal));DataItemVarName=DtldVendLedgEntry;PrintOnlyIfDetail=No;OnPreDataItem=BEGINSETRANGE("Vendor No.",Vendor."No.");SETRANGE("Posting Date",StartDate,EndDate);SETRANGE("Currency Code",Currency2.Code);// End of the added lines.                         IF Currency2.Code = '' THEN BEGIN                            GLSetup.TESTFIELD("LCY Code");                            CurrencyCode3 := GLSetup."LCY Code"                          END ELSE...

    Existující kód 2

    ...END ELSE                            CurrencyCode3 := Currency2.Code                        END;// Delete the following lines.OnAfterGetRecord=BEGIN// PT0002.begin// VendBalance := VendBalance + "Remaining Amount";VendBalance := VendBalance + "Original Amount";// PT0002.end// End of the deleted lines.                           END;          DataItemLinkReference=Vendor;          DataItemLink=Vendor No.=FIELD(No.);...

    Náhradní kód 2

    ... END ELSE                            CurrencyCode3 := Currency2.Code                        END;// Add the following lines.OnAfterGetRecord=VARVendLedgEntry@1000 : Record 25;DtldVendLedgEntry1@1001 : Record 380;BEGINRemainingAmount := 0;PrintLine := TRUE;CASE "Entry Type" OF"Entry Type"::"Initial Entry":BEGINVendLedgEntry.GET("Vendor Ledger Entry No.");Description := VendLedgEntry.Description;DueDate := VendLedgEntry."Due Date";VendLedgEntry.SETRANGE("Date Filter",0D, EndDate);VendLedgEntry.CALCFIELDS("Remaining Amount");RemainingAmount := VendLedgEntry."Remaining Amount";END;"Entry Type"::"Payment Discount","Entry Type"::"Payment Discount (VAT Excl.)","Entry Type"::"Payment Discount (VAT Adjustment)","Entry Type"::"Payment Discount Tolerance","Entry Type"::"Payment Discount Tolerance (VAT Excl.)","Entry Type"::"Payment Discount Tolerance (VAT Adjustment)":BEGINDescription := Text006;DueDate := 0D;END;"Entry Type"::"Payment Tolerance","Entry Type"::"Payment Tolerance (VAT Excl.)","Entry Type"::"Payment Tolerance (VAT Adjustment)":BEGINDescription := Text014;DueDate := 0D;END;"Entry Type"::"Appln. Rounding","Entry Type"::"Correction of Remaining Amount":BEGINDescription := Text007;DueDate := 0D;END; END;IF PrintLine THENVendBalance := VendBalance + Amount;// End of the added lines.                           END;          DataItemLinkReference=Vendor;          DataItemLink=Vendor No.=FIELD(No.);...
  3. Změňte kód v částech 4 číslo položky dat v sestava prohlášení dodavatele (13377) takto:Existující kód 1

    ... DataSetFieldName=Vendor_Ledger_Entry_Description }              { 47  ;TextBox      ;7980 ;0    ;1680 ;423  ;HorzAlign=Left;                                                           FontSize=9;                                                           CaptionML=ENU=Due Date;// Delete the following lines.SourceExpr=FORMAT("Due Date",0,4);DataSetFieldName=Vendor_Ledger_Entry__Due_Date_ }{ 48  ;TextBox      ;13230;0    ;2310 ;423  ;FontSize=9;CaptionML=ENU=Remaining Amount;SourceExpr="Remaining Amount";// End of the deleted lines.                                                           AutoFormatType=1;                                                           AutoFormatExpr="Currency Code";                                                           DataSetFieldName=Vendor_Ledger_Entry__Remaining_Amount_ }              { 49  ;TextBox      ;15750;0    ;2310 ;423  ;FontSize=9;...

    Změněný kód 1

    ...  DataSetFieldName=Vendor_Ledger_Entry_Description }              { 47  ;TextBox      ;7980 ;0    ;1680 ;423  ;HorzAlign=Left;                                                           FontSize=9;                                                           CaptionML=ENU=Due Date;// Add the following lines.SourceExpr=FORMAT(DueDate,0,4);DataSetFieldName=Vendor_Ledger_Entry__Due_Date_ }{ 48  ;TextBox      ;13230;0    ;2310 ;423  ;FontSize=9;CaptionML=ENU=Remaining Amount;SourceExpr=RemainingAmount;// End of the added lines.                                                           AutoFormatType=1;                                                           AutoFormatExpr="Currency Code";                                                           DataSetFieldName=Vendor_Ledger_Entry__Remaining_Amount_ }              { 49  ;TextBox      ;15750;0    ;2310 ;423  ;FontSize=9;...

    Existující kód 2

    ...AutoFormatType=1;                                                           AutoFormatExpr="Currency Code";                                                           DataSetFieldName=VendBalance_Control49 }              { 54  ;TextBox      ;10710;0    ;2310 ;423  ;FontSize=9;// Delete the following line.SourceExpr="Original Amount";// End of the deleted line.                                                           AutoFormatType=1;                                                           AutoFormatExpr="Currency Code";                                                           DataSetFieldName=Vendor_Ledger_Entry__Original_Amount_ }              { 78  ;TextBox      ;9870 ;0    ;840  ;423  ;FontSize=9;...

    Náhradní kód 2

    ...   AutoFormatType=1;                                                           AutoFormatExpr="Currency Code";                                                           DataSetFieldName=VendBalance_Control49 }              { 54  ;TextBox      ;10710;0    ;2310 ;423  ;FontSize=9;// Add the following line.SourceExpr=Amount;// End of the added line.                                                           AutoFormatType=1;                                                           AutoFormatExpr="Currency Code";                                                           DataSetFieldName=Vendor_Ledger_Entry__Original_Amount_ }              { 78  ;TextBox      ;9870 ;0    ;840  ;423  ;FontSize=9;...
  4. Změňte kód 5 číslo položky dat v sestavě prohlášení dodavatele (13377) takto:Existující kód

    ...END;          OnAfterGetRecord=BEGIN                             IF ISSERVICETIER THEN// Delete the following lines.VendBalance2 := VendBalance2 + "Remaining Amount"ELSEVendBalance := VendBalance + "Remaining Amount";// End of the deleted lines.                           END;          DataItemLinkReference=Vendor;          DataItemLink=Vendor No.=FIELD(No.);...

    Změněný kód

    ... END;          OnAfterGetRecord=BEGIN                             IF ISSERVICETIER THEN// Add the following lines.VendBalance2 := VendBalance2 + RemainingAmountELSEVendBalance := VendBalance + RemainingAmount;// End of the added lines.                           END;          DataItemLinkReference=Vendor;          DataItemLink=Vendor No.=FIELD(No.);...
  5. Změňte kód v částech 5 číslo položky dat v sestava prohlášení dodavatele (13377) takto:Existující kód

    ...SourceExpr=Description;                                                           DataSetFieldName=VendorLedgEntry2_Description }              { 60  ;TextBox      ;7980 ;0    ;1680 ;423  ;HorzAlign=Left;                                                           FontSize=9;// Delete the following lines.SourceExpr=FORMAT("Due Date",0,4);DataSetFieldName=VendorLedgEntry2__Due_Date_ }{ 61  ;TextBox      ;13230;0    ;2310 ;423  ;FontSize=9;SourceExpr="Remaining Amount";// End of the deleted lines.                                                           AutoFormatType=1;                                                           AutoFormatExpr="Currency Code";                                                           DataSetFieldName=VendorLedgEntry2__Remaining_Amount_ }              { 62  ;TextBox      ;15750;0    ;2310 ;423  ;FontSize=9;...

    Změněný kód

    ...  SourceExpr=Description;                                                           DataSetFieldName=VendorLedgEntry2_Description }              { 60  ;TextBox      ;7980 ;0    ;1680 ;423  ;HorzAlign=Left;                                                           FontSize=9;// Add the following lines.SourceExpr=FORMAT(DueDate,0,4);DataSetFieldName=VendorLedgEntry2__Due_Date_ }{ 61  ;TextBox      ;13230;0    ;2310 ;423  ;FontSize=9;SourceExpr=RemainingAmount;// End of the added lines.                                                           AutoFormatType=1;                                                           AutoFormatExpr="Currency Code";                                                           DataSetFieldName=VendorLedgEntry2__Remaining_Amount_ }              { 62  ;TextBox      ;15750;0    ;2310 ;423  ;FontSize=9;...
  6. Změňte kód v globální proměnné v sestavě prohlášení dodavatele (13377) takto:Existující kód 1

    ...Text000@1000 : TextConst 'ENU=Page %1';        Text001@1001 : TextConst 'ENU=Open Entries %1';        Text002@1002 : TextConst 'ENU=Overdue Entries %1';        Text003@1003 : TextConst 'ENU="Statement "';        GLSetup@1004 : Record 98;        CompanyInfo@1005 : Record 79;        Vend2@1006 : Record 23;        Currency@1007 : Record 4;...

    Změněný kód 1

    ...Text000@1000 : TextConst 'ENU=Page %1';        Text001@1001 : TextConst 'ENU=Open Entries %1';        Text002@1002 : TextConst 'ENU=Overdue Entries %1';        Text003@1003 : TextConst 'ENU="Statement "';// Add the following lines.Text005@1030 : TextConst 'ENU=Multicurrency Application';Text006@1031 : TextConst 'ENU=Payment Discount';Text007@1032 : TextConst 'ENU=Rounding';Text014@1033 : TextConst 'ENU=Application Writeoffs';// End of the added lines.        GLSetup@1004 : Record 98;        CompanyInfo@1005 : Record 79;        Vend2@1006 : Record 23;        Currency@1007 : Record 4;...

    Existující kód 2

    ...PrintAllHavingEntry@1010 : Boolean;        PrintAllHavingBal@1011 : Boolean;        PrintEntriesDue@1012 : Boolean;        PrintLine@1013 : Boolean;        StartDate@1014 : Date;        EndDate@1015 : Date;        VendAddr@1016 : ARRAY [8] OF Text[50];        CompanyAddr@1017 : ARRAY [8] OF Text[50];...

    Náhradní kód 2

    ...PrintAllHavingEntry@1010 : Boolean;        PrintAllHavingBal@1011 : Boolean;        PrintEntriesDue@1012 : Boolean;        PrintLine@1013 : Boolean;// Add the following line.DueDate@1038 : Date;// End of the added line.        StartDate@1014 : Date;        EndDate@1015 : Date;        VendAddr@1016 : ARRAY [8] OF Text[50];        CompanyAddr@1017 : ARRAY [8] OF Text[50];...

    Existující kód 3

    ...StartDate@1014 : Date;        EndDate@1015 : Date;        VendAddr@1016 : ARRAY [8] OF Text[50];        CompanyAddr@1017 : ARRAY [8] OF Text[50];        StartBalance@1018 : Decimal;        VendBalance@1019 : Decimal;        FormatAddr@1020 : Codeunit 365;        CurrencyCode3@1022 : Code[10];...

    Změněný kód 3

    ...StartDate@1014 : Date;        EndDate@1015 : Date;        VendAddr@1016 : ARRAY [8] OF Text[50];        CompanyAddr@1017 : ARRAY [8] OF Text[50];// Add the following lines.Description@1039 : Text[50];RemainingAmount@1040 : Decimal;// End of the added lines.        StartBalance@1018 : Decimal;        VendBalance@1019 : Decimal;        FormatAddr@1020 : Codeunit 365;        CurrencyCode3@1022 : Code[10];...

    Existující kód 4

    ... </ReportItems>                      </TableCell>                    </TableCells>                    <Visibility>// Delete the following line.<Hidden>=IIF(Fields!Vendor_Ledger_Entry_Vendor_No_.Value = "",TRUE,FALSE)</Hidden>// End of the deleted line.                    </Visibility>                  </TableRow>                </TableRows>              </Details>...

    Náhradní kód 4

    ...</ReportItems>                      </TableCell>                    </TableCells>                    <Visibility>// Add the following line.<Hidden>=IIF(Fields!DtldVendLedgEntry_Vendor_No_.Value = "",TRUE,FALSE)</Hidden>// End of the added line.                    </Visibility>                  </TableRow>                </TableRows>              </Details>...

    Existující kód 5

    ...<FontWeight>700</FontWeight>                                  <TextAlign>Right</TextAlign>                                  <VerticalAlign>Middle</VerticalAlign>                                </Style>// Delete the following line.<Value>=iif(Last(Fields!Vendor_Ledger_Entry_Vendor_No_.Value) = "" ,Last(Fields!VendBalance_Control66Caption.Value),// End of the deleted line.  Last(Fields!VendBalance_Control53Caption.Value))</Value>                              </Textbox>                            </ReportItems>                          </TableCell>...

    Změněný kód 5

    ...<FontWeight>700</FontWeight>                                  <TextAlign>Right</TextAlign>                                  <VerticalAlign>Middle</VerticalAlign>                                </Style>// Add the following line.<Value>=iif(Last(Fields!DtldVendLedgEntry_Vendor_No_.Value) = "" ,Last(Fields!VendBalance_Control66Caption.Value),// End of the added line.  Last(Fields!VendBalance_Control53Caption.Value))</Value>                              </Textbox>                            </ReportItems>                          </TableCell>...

    Existující kód 6

    ...<FontWeight>700</FontWeight>                                  <TextAlign>Right</TextAlign>                                  <VerticalAlign>Middle</VerticalAlign>                                </Style>// Delete the following line.<Value>=iif(Last(Fields!Vendor_Ledger_Entry_Vendor_No_.Value) = "" ,Last(Fields!CurrencyCode3_Control73.Value),// End of the deleted line.  Last(Fields!CurrencyCode3.Value))</Value>                              </Textbox>                            </ReportItems>                          </TableCell>...

    Náhradní kód 6

    ... <FontWeight>700</FontWeight>                                  <TextAlign>Right</TextAlign>                                  <VerticalAlign>Middle</VerticalAlign>                                </Style>// Add the following line.<Value>=iif(Last(Fields!DtldVendLedgEntry_Vendor_No_.Value) = "" ,Last(Fields!CurrencyCode3_Control73.Value),// End of the added line.  Last(Fields!CurrencyCode3.Value))</Value>                              </Textbox>                            </ReportItems>                          </TableCell>...

    Existující kód 7

    ...FontWeight>700</FontWeight>                                  <Format>=Fields!VendBalance_Control49Format.Value</Format>                                  <VerticalAlign>Middle</VerticalAlign>                                </Style>// Delete the following line.<Value>=iif(Last(Fields!Vendor_Ledger_Entry_Vendor_No_.Value) = "" ,Last(Fields!VendBalance_Control56.Value),// End of the deleted line.  LAST(Fields!VendBalance.Value))</Value>                              </Textbox>                            </ReportItems>                          </TableCell>...

    Změněný kód 7

    ...<FontWeight>700</FontWeight>                                  <Format>=Fields!VendBalance_Control49Format.Value</Format>                                  <VerticalAlign>Middle</VerticalAlign>                                </Style>// Add the following line.<Value>=iif(Last(Fields!DtldVendLedgEntry_Vendor_No_.Value) = "" ,Last(Fields!VendBalance_Control56.Value),// End of the added line.  LAST(Fields!VendBalance.Value))</Value>                              </Textbox>                            </ReportItems>                          </TableCell>...

    Existující kód 8

    ...</Field>          <Field Name="CurrencyCode3">            <DataField>CurrencyCode3</DataField>          </Field>// Delete the following lines.<Field Name="Vendor_Ledger_Entry_Entry_No_"><DataField>Vendor_Ledger_Entry_Entry_No_</DataField></Field><Field Name="Vendor_Ledger_Entry_Vendor_No_"><DataField>Vendor_Ledger_Entry_Vendor_No_</DataField>// End of the deleted lines.          </Field>          <Field Name="STRSUBSTNO_Text002_Currency2_Code_">            <DataField>STRSUBSTNO_Text002_Currency2_Code_</DataField>          </Field>...

    Náhradní kód 8

    ...</Field>          <Field Name="CurrencyCode3">            <DataField>CurrencyCode3</DataField>          </Field>// Add the following lines.<Field Name="DtldVendLedgEntry_Entry_No_"><DataField>DtldVendLedgEntry_Entry_No_</DataField></Field><Field Name="DtldVendLedgEntry_Vendor_No_"><DataField>DtldVendLedgEntry_Vendor_No_</DataField>// End of the added lines.          </Field>          <Field Name="STRSUBSTNO_Text002_Currency2_Code_">            <DataField>STRSUBSTNO_Text002_Currency2_Code_</DataField>          </Field>...

Předpoklady

Musí mít jednu z následujících produktů nainstalovali tuto opravu hotfix:

  • Portugalské verzi Microsoft Dynamics NAV 2009 R2

  • Portugalské verzi Microsoft Dynamics NAV 2009 SP1

Informace o odinstalaci

Tato oprava hotfix nelze odebrat.

Stav

Společnost Microsoft potvrdila, že se jedná o problém v produktech společnosti Microsoft, které jsou uvedeny v části "Platí pro".

Poznámka: Toto je článek "Rychlé publikování" vytvářen přímo v rámci odborné pomoci společnosti Microsoft. Informace obsažené v tomto dokumentu jsou poskytovány tak, jak je v reakci na vznikající problémy. V důsledku rychlosti v jeho zpřístupnění materiály, mohou obsahovat typografické chyby a mohou být upraveny kdykoli bez předchozího upozornění. Viz Podmínky použitípro další aspekty.

Potřebujete další pomoc?

Chcete další možnosti?

Prozkoumejte výhody předplatného, projděte si školicí kurzy, zjistěte, jak zabezpečit své zařízení a mnohem více.