Ilmneb järgmisi probleeme:
-
Base ja suuruse väärtused on ümardatud.
-
Kokku read on valed ja loob järgmine tõrge, kui proovite esitada faili lehel AT:
60201201 777777777
Järgige juhiseid koodi muudatusi selle probleemi lahendamiseks jaotisse. See probleem ilmneb järgmiste toodetega:
-
Portugali versioonis Microsoft Dynamics nav-i 2009 R2
-
Portugali versioonis Microsoft Dynamics nav-i 2009 Service Pack 1 (SP1)
Lahendus
Kiirparanduse teave
Lasknud välja toetatava käigultparanduse on nüüd Microsoftilt saadaval. Kuid see on ette nähtud ainult selles artiklis kirjeldatud probleemi kõrvaldamiseks. Rakendage seda ainult süsteemides, kus ilmneb see konkreetne probleem. Seda käigultparandust võidakse täiendavalt testida. Seega, kui probleem teie tööd tõsiselt ei kahjusta, soovitame oodata järgmist hoolduspaketti Microsoft Dynamics nav-i 2009 või järgmise Microsoft Dynamics nav-i versiooni, mis sisaldab seda kiirparandust.Märkus. Erijuhtudel kulud, mis tekivad teatud palub tühistada saab kui tehniline toetus Professional Microsoft Dynamics ja nendega seotud toodete leiab, et mõni konkreetne värskendus lahendab teie probleemi. Tavaline tugiteenuste kohaldatakse täiendavat tugiteenust vajavatele küsimustele ning probleemidele, mis pole lahendatavad konkreetse värskenduse installimisega.
Installiteave
Microsoft pakub programmeerimisnäiteid ainult artikli illustreerimiseks ilma igasuguse otsese või kaudse garantiita. See hõlmab, kuid ei piirdu kaudseid garantiisid turustatavuse või kindlaks otstarbeks sobivusega. See artikkel eeldab, et olete demonstreeritava programmeerimiskeelega programmeerimise keel ning luua protseduuride ja silumiseks kasutatavate tööriistadega tuttav. Microsofti tugitehnikud võivad aidata mõne konkreetse protseduuri talitlust selgitada. Siiski ei muuda nad neid näiteid lisafunktsioonide pakkumiseks ega Koosta vastavaid protseduure teie konkreetsetele nõuetele.Märkus. Enne selle kiirparanduse installimist veenduge, et kõik Microsoft Dynamics nav-i kliendi kasutajat sisse loginud süsteem välja. See hõlmab Microsoft Dynamics nav-i rakenduste Server (NAS) teenuseid. Peaks olema ainult kliendi kasutaja on sisse logitud, kui otsustate seda käigultparandust.Selle kiirparanduse rakendamiseks peab teil olema arendaja litsentsi.Soovitame Windowsi sisselogimise aken või aken andmebaasi logimine kasutajakonto määrata "SUPER" rolli ID. Kui "SUPER" rolli ID-d ei saa määratud kasutajakonto, peate veenduma, et kasutaja konto on järgmised õigused:
-
Sa muutuvad objekti Muuda õigusi.
-
Käivita luba süsteemi objekti ID 5210 objekti ja süsteemi objekti ID 9015objekti.
Märkus. Teil pole õigust andmeid talletab enne, kui olete andmete parandamiseks.
Koodi muudatusi
Märkus. Alati test koodi lahendab kontrollitavas keskkonnas enne rakendamist tootmine arvutite parandused.Selle probleemi lahendamiseks toimige järgmiselt.
-
Muuta koodi InsertECDeclarationTrailer funktsiooni tabelis KM aruande faili puhver (13380) järgmiselt:Olemasolevate co de
...BEGIN NewLine; //NAVPTL005.001,o InsertIntegerValue (89, 2);// Delete the following line. InsertIntegerValue (98, 2); //NAVPTL005.001,n InsertIntegerValue (LineNumber, 9); PadLinetill134Characters(Blank); END;...
Eemaldamise teave
...BEGIN NewLine; //NAVPTL005.001,o InsertIntegerValue (89, 2);// Add the following lines. //PT355807,o InsertIntegerValue (98, 2); //NAVPTL005.001,n InsertIntegerValue (89, 2); //PT355807,n// End of the added lines. InsertIntegerValue (LineNumber, 9); PadLinetill134Characters(Blank); END;...
-
Muuta koodi InsertAnnex4041CustomerLine funktsiooni tabelis KM aruande faili puhver (13380) järgmiselt:Kood
...InsertIntegerValue (pLineNumber, 5); InsertTextValue (pVATAnnexSetup."Tax Authority Code",2,Blank); InsertTextValue (pVATRegNo, 9,Blank);// Delete the following lines. InsertIntegerValue(ABS(ROUND(pVATEntry.Base,1,'<')*100),12); InsertIntegerValue(ABS(ROUND(pVATEntry.Amount,1,'<')*100),12);// End of the deleted lines. InsertTextValue (Blank,92,Blank); END;...
Eemaldamise teave
...InsertIntegerValue (pLineNumber, 5); InsertTextValue (pVATAnnexSetup."Tax Authority Code",2,Blank); InsertTextValue (pVATRegNo, 9,Blank);// Add the following lines. //PT355807,o InsertIntegerValue(ABS(ROUND(pVATEntry.Base,1,'<')*100),12); //PT355807,o InsertIntegerValue(ABS(ROUND(pVATEntry.Amount,1,'<')*100),12); InsertIntegerValue(ABS(ROUND(pVATEntry.Base*100,1,'<')),12); //PT355807,n InsertIntegerValue(ABS(ROUND(pVATEntry.Amount*100,1,'<')),12); //PT355807,n// End of the added lines. InsertTextValue (Blank,92,Blank); END;...
-
Muuta koodi InsertAnnex4041DocumentLine funktsiooni tabelis KM aruande faili puhver (13380) järgmiselt:Kood
...InsertIntegerValue (pLineNumber, 5); InsertTextValue (pVATAnnexSetup."Tax Authority Code",2,Blank); InsertTextValue(pDocNo,13,Blank);// Delete the following line. InsertIntegerValue(ABS(ROUND(pVATEntry.Amount,1,'<')*100),12); InsertTextValue (Blank,100,Blank); END;...
Eemaldamise teave
...InsertIntegerValue (pLineNumber, 5); InsertTextValue (pVATAnnexSetup."Tax Authority Code",2,Blank); InsertTextValue(pDocNo,13,Blank);// Add the following lines. //PT355807,o InsertIntegerValue(ABS(ROUND(pVATEntry.Amount,1,'<')*100),12); InsertIntegerValue(ABS(ROUND(pVATEntry.Amount*100,1,'<')),12); //PT355807,n// End of the added lines. InsertTextValue (Blank,100,Blank); END;...
-
Muuta koodi InsertAnnex4041ReasonLine funktsiooni tabelis KM aruande faili puhver (13380) järgmiselt:Kood 1
...InsertTextValue (Blank,100,Blank); END;// Delete the following lines. PROCEDURE InsertAnnex4041ReasonLine@1000000003(pVATAnnexSetup@1000000000 : Record 13386;pVATEntry@1000000003 : Record 254); BEGIN NewLine; InsertTextValue (pVATAnnexSetup."Record Type",2,Blank); IF pVATAnnexSetup.Frame = pVATAnnexSetup.Frame::"2" THEN BEGIN InsertIntegerValue(ABS(ROUND(pVATEntry.Base,1,'<')*100),12); InsertIntegerValue(ABS(ROUND(pVATEntry.Amount,1,'<')*100),12); InsertTextValue (Blank,50,Blank);// End of the deleted lines. END;IF pVATAnnexSetup.Frame = pVATAnnexSetup.Frame::"3" THEN BEGIN...
Kood 1
...InsertTextValue (Blank,100,Blank); END;// Add the following lines. PROCEDURE InsertAnnex4041ReasonLine@1000000003(pVATAnnexSetup@1000000000 : Record 13386;pVATEntry@1000000003 : Record 254;LineNo@1000000001 : Integer); BEGIN //PT355807,o NewLine; //PT355807,o InsertTextValue (pVATAnnexSetup."Record Type",2,Blank); IF pVATAnnexSetup.Frame = pVATAnnexSetup.Frame::"2" THEN BEGIN //PT355807,o InsertIntegerValue(ABS(ROUND(pVATEntry.Base,1,'<')*100),12); //PT355807,o InsertIntegerValue(ABS(ROUND(pVATEntry.Amount,1,'<')*100),12); //PT355807,o InsertTextValue (Blank,50,Blank);//PT355807,sn IF (pVATAnnexSetup.SubSection = 'a') OR (pVATAnnexSetup.SubSection = '') THEN BEGIN NewLine; InsertTextValue (pVATAnnexSetup."Record Type",2,Blank); END; IF (pVATAnnexSetup.SubSection = 'b') AND (LineNo=1) THEN BEGIN NewLine; InsertTextValue (pVATAnnexSetup."Record Type",2,Blank); InsertIntegerValue(0,24); END; InsertIntegerValue(ABS(ROUND(pVATEntry.Base*100,1,'<')),12); InsertIntegerValue(ABS(ROUND(pVATEntry.Amount*100,1,'<')),12); //PT355807,en// End of the added lines. END; IF pVATAnnexSetup.Frame = pVATAnnexSetup.Frame::"3" THEN BEGIN...
Kood 2
...IF pVATAnnexSetup.Frame = pVATAnnexSetup.Frame::"3" THEN BEGIN IF (pVATAnnexSetup.SubSection = 'a') OR (pVATAnnexSetup.SubSection = 'A') THEN BEGIN// Delete the following lines. InsertIntegerValue(ABS(ROUND(pVATEntry.Base,1,'<')*100),12); InsertIntegerValue(ABS(ROUND(pVATEntry.Amount,1,'<')*100),12); END; IF (pVATAnnexSetup.SubSection = 'b') OR (pVATAnnexSetup.SubSection = 'B') THEN BEGIN InsertIntegerValue(ABS(ROUND(pVATEntry.Base,1,'<')*100),12); InsertIntegerValue(ABS(ROUND(pVATEntry.Amount,1,'<')*100),12);// End of the deleted lines. END; END;...
Asendamine kood 2
...IF pVATAnnexSetup.Frame = pVATAnnexSetup.Frame::"3" THEN BEGIN IF (pVATAnnexSetup.SubSection = 'a') OR (pVATAnnexSetup.SubSection = 'A') THEN BEGIN// Add the following lines. //PT355807,o InsertIntegerValue(ABS(ROUND(pVATEntry.Base,1,'<')*100),12); //PT355807,o InsertIntegerValue(ABS(ROUND(pVATEntry.Amount,1,'<')*100),12); //PT355807,sn IF (LineNo=1) THEN BEGIN NewLine; InsertTextValue (pVATAnnexSetup."Record Type",2,Blank);InsertIntegerValue(0,24); END;InsertIntegerValue(ABS(ROUND(pVATEntry.Base*100,1,'<')),12);InsertIntegerValue(ABS(ROUND(pVATEntry.Amount*100,1,'<')),12); //PT355807,en END; IF (pVATAnnexSetup.SubSection = 'b') OR (pVATAnnexSetup.SubSection = 'B') THEN BEGIN //PT355807,o InsertIntegerValue(ABS(ROUND(pVATEntry.Base,1,'<')*100),12); //PT355807,o InsertIntegerValue(ABS(ROUND(pVATEntry.Amount,1,'<')*100),12);//PT355807,sn IF (LineNo=1) THEN BEGIN NewLine; InsertTextValue (pVATAnnexSetup."Record Type",2,Blank); InsertIntegerValue(0,48); END; InsertIntegerValue(ABS(ROUND(pVATEntry.Base*100,1,'<')),12); InsertIntegerValue(ABS(ROUND(pVATEntry.Amount*100,1,'<')),12); //PT355807,en// End of the added lines. END; END;...
Kood 3
...END; END;// Delete the following lines. InsertTextValue (Blank,48,Blank);; END; PROCEDURE LastVATAnnex40Line@1000000006(pVATregNo@1000000000 : Text[9];pResumes@1000000001 : ARRAY [10] OF Integer); BEGIN// End of the deleted lines. NewLine; InsertTextValue ('96',2,Blank); InsertIntegerValue (1, 5);...
Asendamine kood 3
...END; END;// Add the following lines. //PT355807,o InsertTextValue (Blank,48,Blank);END; PROCEDURE LastVATAnnex40Line@1000000006(pTotalAmount@1000000002 : Decimal;pVATregNo@1000000000 : Text[9];pResumes@1000000001 : ARRAY [10] OF Integer); BEGIN //PT355807,o NewLine; InsertIntegerValue(ABS(ROUND(pTotalAmount*100,1,'<')),12); InsertTextValue (Blank,48,Blank); InsertVAT40LastLine(24);// End of the added lines. NewLine; InsertTextValue ('96',2,Blank); InsertIntegerValue (1, 5);...
-
Muuta koodi LastVATAnnex40Line funktsiooni tabelis KM aruande faili puhver (13380) järgmiselt:Kood 1
...InsertTextValue (Blank,118,Blank); NewLine; InsertTextValue ('69',2,Blank);// Delete the following line. InsertIntegerValue (pResumes[1], 5); InsertIntegerValue (pResumes[2], 5); InsertIntegerValue (pResumes[3], 5); InsertIntegerValue (pResumes[4], 5);...
Kood 1
...InsertTextValue (Blank,118,Blank); NewLine; InsertTextValue ('69',2,Blank);// Add the following line. //PT355807,o InsertIntegerValue (pResumes[1], 5); InsertIntegerValue (pResumes[2], 5); InsertIntegerValue (pResumes[3], 5); InsertIntegerValue (pResumes[4], 5);...
Kood 2
...InsertIntegerValue (pResumes[7], 5); InsertIntegerValue (pResumes[8], 5); InsertIntegerValue (1, 5); END; PROCEDURE LastVATAnnex41Line@1000000004(pVATAnnexSetup@1000000001 : Record 13386;pTotalAmount@1000000000 : Decimal;pResumes@1000000002 : ARRAY [10] OF Integer);...
Asendamine kood 2
...InsertIntegerValue (pResumes[7], 5); InsertIntegerValue (pResumes[8], 5); InsertIntegerValue (1, 5);// Add the following line. InsertTextValue (Blank,94,Blank); //PT355807,n END; PROCEDURE LastVATAnnex41Line@1000000004(pVATAnnexSetup@1000000001 : Record 13386;pTotalAmount@1000000000 : Decimal;pResumes@1000000002 : ARRAY [10] OF Integer);...
-
Muuta koodi LastVATAnnex41Line funktsiooni tabelis KM aruande faili puhver (13380) järgmiselt:Kood 1
...PROCEDURE LastVATAnnex41Line@1000000004(pVATAnnexSetup@1000000001 : Record 13386;pTotalAmount@1000000000 : Decimal;pResumes@1000000002 : ARRAY [10] OF Integer); BEGIN// Delete the following lines. NewLine; InsertTextValue (pVATAnnexSetup."Record Type",2,Blank); InsertIntegerValue(ABS(ROUND(pTotalAmount,1,'<')*100),12); NewLine; InsertTextValue ('89',2,Blank); InsertIntegerValue (pResumes[1], 5);// End of the deleted lines. InsertIntegerValue (pResumes[2], 5); InsertIntegerValue (pResumes[3], 5); InsertIntegerValue (pResumes[4], 5);...
Kood 1
...PROCEDURE LastVATAnnex41Line@1000000004(pVATAnnexSetup@1000000001 : Record 13386;pTotalAmount@1000000000 : Decimal;pResumes@1000000002 : ARRAY [10] OF Integer); BEGIN// Add the following lines. //PT355807,o NewLine; //PT355807,o InsertTextValue (pVATAnnexSetup."Record Type",2,Blank); InsertIntegerValue(ABS(ROUND(pTotalAmount*100,1,'<')),12); InsertTextValue (Blank,72,Blank); InsertVAT41LastLine(24); NewLine; InsertTextValue ('89',2,Blank); //PT355807,o InsertIntegerValue (pResumes[1], 5);// End of the added lines. InsertIntegerValue (pResumes[2], 5); InsertIntegerValue (pResumes[3], 5); InsertIntegerValue (pResumes[4], 5);...
Kood 2
...InsertIntegerValue (pResumes[4], 5); InsertIntegerValue (pResumes[5], 5); InsertIntegerValue (pResumes[6], 5); END; BEGIN...
Asendamine kood 2
...InsertIntegerValue (pResumes[4], 5); InsertIntegerValue (pResumes[5], 5); InsertIntegerValue (pResumes[6], 5);// Add the following lines. InsertIntegerValue (pResumes[7], 5); //PT355807,n InsertTextValue (Blank,104,Blank); //PT355807,n END; PROCEDURE InsertVAT40LastLine@1000000005(Size@1000000000 : Integer); BEGIN //PT355807,sn FIND('+'); IF STRLEN("Line Value") <> 134 THEN BEGIN "Line Value" := COPYSTR("Line Value",1,50) + CONVERTSTR (FORMAT (0, Size, 0), Blank, HeadingZero) + COPYSTR("Line Value",51); MODIFY; END; //PT355807,en END; PROCEDURE InsertVAT41LastLine@1000000007(Size@1000000000 : Integer); BEGIN //PT355807,sn FIND('+'); IF STRLEN("Line Value") <> 134 THEN BEGIN "Line Value" := COPYSTR("Line Value",1,26) + CONVERTSTR (FORMAT (0, Size, 0), Blank, HeadingZero) + COPYSTR("Line Value",27); MODIFY; END; //PT355807,en END; PROCEDURE LastVATAnnex40Line2@1000000009(pVATAnnexSetup@1000000003 : Record 13386;pTotalAmount@1000000002 : Decimal;pVATregNo@1000000000 : Text[9];pResumes@1000000001 : ARRAY [10] OF Integer); BEGIN //PT355807,sn NewLine; InsertTextValue (pVATAnnexSetup."Record Type",2,Blank); InsertIntegerValue(0,72); InsertIntegerValue(ABS(ROUND(pTotalAmount*100,1,'<')),12); InsertTextValue (Blank,48,Blank); NewLine; InsertTextValue ('96',2,Blank); InsertIntegerValue (1, 5); InsertTextValue(pVATregNo,9,Blank); InsertTextValue (Blank,118,Blank); NewLine; InsertTextValue ('69',2,Blank); InsertIntegerValue (pResumes[2], 5); InsertIntegerValue (pResumes[3], 5); InsertIntegerValue (pResumes[4], 5); InsertIntegerValue (pResumes[5], 5); InsertIntegerValue (pResumes[6], 5); InsertIntegerValue (pResumes[7], 5); InsertIntegerValue (pResumes[8], 5); InsertIntegerValue (1, 5); InsertTextValue (Blank,92,Blank); //PT355807,en END; PROCEDURE LastVATAnnex41Line2@1000000008(pVATAnnexSetup@1000000001 : Record 13386;pTotalAmount@1000000000 : Decimal;pResumes@1000000002 : ARRAY [10] OF Integer); BEGIN //PT355807,sn NewLine; InsertTextValue (pVATAnnexSetup."Record Type",2,Blank); InsertIntegerValue(0,48); InsertIntegerValue(ABS(ROUND(pTotalAmount*100,1,'<')),12); InsertTextValue (Blank,72,Blank); NewLine; InsertTextValue ('89',2,Blank); InsertIntegerValue (pResumes[2], 5); InsertIntegerValue (pResumes[3], 5); InsertIntegerValue (pResumes[4], 5); InsertIntegerValue (pResumes[5], 5); InsertIntegerValue (pResumes[6], 5); InsertIntegerValue (pResumes[7], 5); InsertTextValue (Blank,102,Blank); //NAVPTL005.002,en// End of the added lines. END; BEGIN...
-
KM aruande (PT) aruande (13398) koodi muuta järgmiselt:Kood 1
...IF recVATAnnexSetup."Record Type" = LastRecordType THEN LineNo += 1 ELSE BEGIN//Delete the following lines. IndiceArray += 1; ResumeLines[IndiceArray] := LineNo; LastRecordType := recVATAnnexSetup."Record Type"; LineNo := 1;// End of the deleted lines. END; VATRepBuffer.InsertAnnex4041CustomerLine(recVATAnnexSetup,LineNo,"VAT Registration No.","VAT Entry Customer");...
Kood 1
...IF recVATAnnexSetup."Record Type" = LastRecordType THEN LineNo += 1 ELSE BEGIN// Add the following lines. //PT355807,o IndiceArray += 1; //PT355807,sn EVALUATE(recType,recVATAnnexSetup."Record Type"); IF AnnexFilter = 40 THEN IndiceArray := recType - 60 ELSE IndiceArray := recType - 80; //PT355807,en ResumeLines[IndiceArray] := LineNo; LastRecordType := recVATAnnexSetup."Record Type"; LineNo := 1;// End of the added lines. END; VATRepBuffer.InsertAnnex4041CustomerLine(recVATAnnexSetup,LineNo,"VAT Registration No.","VAT Entry Customer");...
Kood 2
...IF recVATAnnexSetup."Record Type" = LastRecordType THEN LineNo += 1 ELSE BEGIN// Delete the following lines. IndiceArray += 1; ResumeLines[IndiceArray] := LineNo; LastRecordType := recVATAnnexSetup."Record Type"; LineNo := 1;// End of the deleted lines. END; VATRepBuffer.InsertAnnex4041DocumentLine(recVATAnnexSetup,LineNo,"External Document No.","VAT Entry Document No.");...
Asendamine kood 2
...IF recVATAnnexSetup."Record Type" = LastRecordType THEN LineNo += 1 ELSE BEGIN// Add the following lines. //PT355807,o IndiceArray += 1; //PT355807,sn EVALUATE(recType,recVATAnnexSetup."Record Type"); IF AnnexFilter = 40 THEN IndiceArray := recType - 60 ELSE IndiceArray := recType - 80; //PT355807,en ResumeLines[IndiceArray] := LineNo; LastRecordType := recVATAnnexSetup."Record Type"; LineNo := 1;// End of the added lines. END; VATRepBuffer.InsertAnnex4041DocumentLine(recVATAnnexSetup,LineNo,"External Document No.","VAT Entry Document No.");...
Kood 3
...OnPostDataItem=BEGIN CLEAR(recVATAnnexSetup);// Delete the following lines. recVATAnnexSetup.SETRANGE("Reason Code", "Reason Code"); IF recVATAnnexSetup.FINDFIRST THEN IF AnnexFilter = 41 THEN VATRepBuffer.LastVATAnnex41Line(recVATAnnexSetup,TotalVATAnnexAmount,ResumeLines);// End of the deleted lines. END; TotalFields=Base,Amount;...
Asendamine kood 3
...OnPostDataItem=BEGIN CLEAR(recVATAnnexSetup);// Add the following lines. booTotal := FALSE; //PT355807,n recVATAnnexSetup.SETRANGE("Reason Code", "Reason Code"); //PT355807,o IF recVATAnnexSetup.FINDFIRST THEN //PT355807,o IF AnnexFilter = 41 THEN //PT355807,o VATRepBuffer.LastVATAnnex41Line(recVATAnnexSetup,TotalVATAnnexAmount,ResumeLines); //PT355807,sn IF recVATAnnexSetup.FINDFIRST THEN BEGIN IF AnnexFilter = 41 THEN BEGIN booTotal := TRUE; VATRepBuffer.LastVATAnnex41Line(recVATAnnexSetup,TotalVATAnnexAmount,ResumeLines); END; IF AnnexFilter = 40 THEN BEGIN booTotal := TRUE; VATRepBuffer.LastVATAnnex40Line(TotalVATAnnexAmount,FORMAT(FiscalNo),ResumeLines); END; END; //PT355807,en// End of the added lines. END; TotalFields=Base,Amount;...
Kood 4
...IF recVATAnnexSetup."Record Type" = LastRecordType THEN LineNo += 1 ELSE BEGIN// Delete the following lines. IndiceArray += 1; ResumeLines[IndiceArray] := LineNo; LastRecordType := recVATAnnexSetup."Record Type"; LineNo := 1;// End of the deleted lines. END; TotalVATAnnexBase += Base;...
Asendamine kood 4
...IF recVATAnnexSetup."Record Type" = LastRecordType THEN LineNo += 1 ELSE BEGIN// Add the following lines. //PT355807,o IndiceArray += 1; //PT355807,sn EVALUATE(recType,recVATAnnexSetup."Record Type"); IF AnnexFilter = 40 THEN IndiceArray := recType - 60 ELSE IndiceArray := recType - 80; //PT355807,en ResumeLines[IndiceArray] := LineNo; LastRecordType := recVATAnnexSetup."Record Type"; LineNo := 1;// End of the added lines. END; TotalVATAnnexBase += Base;...
Olemasolevat koodi 5
...RegistersNumber += 1;// Delete the following line. VATRepBuffer.InsertAnnex4041ReasonLine(recVATAnnexSetup,"VAT Entry Reason Code"); END; }...
Eemaldamise teave 5
...RegistersNumber += 1;+ //PT355807,o VATRepBuffer.InsertAnnex4041ReasonLine(recVATAnnexSetup,"VAT Entry Reason Code");+ VATRepBuffer.InsertAnnex4041ReasonLine(recVATAnnexSetup,"VAT Entry Reason Code",LineNo); //PT355807,n END; }
Kood 6
...WHERE(Number=CONST(1)); DataItemVarName=TotalInteger; OnAfterGetRecord=BEGIN// Delete the following lines. IF AnnexFilter = 40 THEN VATRepBuffer.LastVATAnnex40Line(FORMAT(FiscalNo),ResumeLines);// End of the deleted lines. END; }...
Eemaldamise teave 6
...WHERE(Number=CONST(1)); DataItemVarName=TotalInteger; OnAfterGetRecord=BEGIN// Add the following lines. //PT355807,o IF AnnexFilter = 40 THEN //PT355807,o VATRepBuffer.LastVATAnnex40Line(FORMAT(FiscalNo),ResumeLines); //PT355807,sn IF NOT booTotal THEN BEGIN recVATAnnexSetup2.RESET; recVATAnnexSetup2.SETFILTER(Annex, FORMAT(AnnexFilter)); IF recVATAnnexSetup2.FINDLAST THEN BEGIN IF AnnexFilter = 40 THEN VATRepBuffer.LastVATAnnex40Line2(recVATAnnexSetup2,TotalVATAnnexAmount,FORMAT(FiscalNo),ResumeLines); IF AnnexFilter = 41 THEN VATRepBuffer.LastVATAnnex41Line2(recVATAnnexSetup2,TotalVATAnnexAmount,ResumeLines); END; END; //PT355807,en// End of the added lines. END; }...
Kood 7
...LastRecordType@1000000009 : Text[2]; TotalVATAnnexBase@1000000005 : Decimal; TotalVATAnnexAmount@1000000006 : Decimal; PROCEDURE CalcLineTotal2C@1110001(VATStmtLine2@1110000 : Record 256;Level@1110001 : Integer) : Boolean; BEGIN...
Asendamine kood 7
...LastRecordType@1000000009 : Text[2]; TotalVATAnnexBase@1000000005 : Decimal; TotalVATAnnexAmount@1000000006 : Decimal;// Add the following lines. booTotal@1000000013 : Boolean; recVATAnnexSetup2@1000000014 : Record 13386; recType@1000000015 : Integer;// End of the added lines. PROCEDURE CalcLineTotal2C@1110001(VATStmtLine2@1110000 : Record 256;Level@1110001 : Integer) : Boolean; BEGIN...
Eeltingimused
Teil peab olema üks selle kiirparanduse installinud järgmisi tooteid:
-
Portugali versioonis Microsoft Dynamics nav-i 2009 R2
-
Portugali versioonis Microsoft Dynamics nav-i 2009 SP1
Eemaldamise teave
See käigultparandus ei saa eemaldada.
Olek
Microsoft on kinnitanud, et see probleem esineb jaotises "Kehtib järgmiste toodete kohta" loetletud Microsofti toodetel.
Märkus. See on "Kiire avaldamise" artikli loonud otse Microsofti tugiteenuse pakkujalt. Siintoodud teave on esitatud lähtudes-olemasoleval kujul vastusena ilmnenud probleemidele. Kiire avaldamise materjalides esineda trükivigu ja võidakse muuta ette teatamata. Vt Kasutustingimusedmuid kaalutlusi.