Applies ToDynamics NAV 2009

Pazīmes

Pēc instalēšanas jaunāko klientu rēķinu saraksta atskaite rēķins attiecas uz saistīto maksājumu darbību un pēc tam nosūtiet to itāliešu valodas versijā Microsoft Dynamics NAV 2009 atskaiti nevar parādīt maksājumu. Tiek parādīts tikai rēķina tuvāk. Izpildiet darbības sadaļā koda izmaiņas , lai atrisinātu šo problēmu. Šī problēma rodas ar šādiem produktiem:

  • Microsoft Dynamics NAV 2009 R2 itāliešu versija

  • Microsoft Dynamics NAV 2009 SP1 itāliešu versija

Risinājums

Informācija par labojumfailu

Pašlaik korporācija Microsoft piedāvā atbalstītu labojumfailu. Tomēr tas ir paredzēts tikai šajā rakstā aprakstītās problēmas novēršanai. Izmantojiet to tikai tām sistēmām, kurām ir radusies tieši šī problēma. Iespējams, tiks veikta šī labojumfaila papildu testēšana. Tādēļ, ja jums ir šī problēma nerada nopietnus traucējumus, ieteicams nogaidīt, līdz tiks izlaista nākamā servisa pakotne Microsoft Dynamics NAV 2009 vai nākamo Microsoft Dynamics NAV versiju, kurā ir iekļauts šis labojumfails.Piezīme. Īpašos gadījumos standarta izmaksas par atbalsta zvaniem nav jāsedz, ja tehniskā atbalsta speciālists Microsoft Dynamics un saistītiem produktiem nosaka, ka šo problēmu novērsīs noteikts atjauninājums. Parasti atbalsta izmaksas tiek piemērotas jautājumiem par papildu atbalstu un problēmām, kas neskar specifisko atjauninājumu apspriešanu.

Informācija par instalēšanu

Microsoft piedāvā programmēšanas piemērus tikai uzskatāmībai, nesniedzot nekādas tiešas vai netiešas garantijas. Tas ietver, bet neaprobežojas ar netiešām garantijām par piemērotību pārdošanai vai atbilstību noteiktam mērķim. Šajā rakstā tiek pieņemts, ka pārzināt programmēšanas valodu, kas tiek aprakstīta, un rīkus, kas tiek izmantoti, lai izveidotu un atkļūdotu procedūras. Microsoft atbalsta inženieri var palīdzēt izskaidrot kādas noteiktas procedūras funkcionalitāti. Taču viņi nemainīs šos piemērus, lai sniegtu skaidrākus, un neveidos jaunas procedūras, kas atbilstu īpašām prasībām.Piezīme. Pirms šī labojumfaila instalēšanas pārliecinieties, vai, ka visi Microsoft Dynamics NAV klienta lietotāji ir atteikušies sistēmu. Tas ietver Microsoft Dynamics NAV lietojumprogrammu serveris (NAS) pakalpojumus. Jums ir jābūt tikai klienta lietotājam, kurš ir pieteicies datorā, kad izmantojat šo labojumfailu.Lai ieviestu šo labojumfailu, datorā jābūt instalētai izstrādātāja licenci.Ieteicams, ka lietotāja konts tiek atvērts logs Windows lietotājvārdi vai logā datu bāzes lietotājvārdi piešķirt "SUPER" lomas ID. Ja lietotāja kontam nevar piešķirt "SUPER" lomas ID, ir jāpārbauda lietotāja konts ir šādas atļaujas:

  • Objektu, kad tiks mainīts modificēt atļaujas.

  • Izpildes atļauja objekta objekta ID 5210 sistēmas un sistēmas objekta ID 9015objektu.

Piezīme. Jums nav tiesības datu krātuvju vien veikt datu labošana.

Koda izmaiņas

Piezīme. Vienmēr pārbaudes kods novērš kontrolētā vidē pirms lietojat datoru ražošanas labojumus.Lai novērstu šo problēmu, rīkojieties šādi:

  1. Nomainiet šo kodu klienta rēķinu saraksta pārskatā (12117) šādi:Kods 1

    ...DataItemTableView=SORTING(Cust. Ledger Entry No.,Entry Type,Posting Date)                          WHERE(Entry Type=CONST(Application));        OnPreDataItem=BEGIN// Delete the following line.CustLedgEntry1.COPYFILTER("Posting Date", "Detailed Cust. Ledg. Entry"."Posting Date"); // IT0004// End of the deleted line.                      END;        OnAfterGetRecord=BEGIN...

    Aizstāšanas kods = 1

    ...DataItemTableView=SORTING(Cust. Ledger Entry No.,Entry Type,Posting Date)                          WHERE(Entry Type=CONST(Application));        OnPreDataItem=BEGIN// Add the following line.FindAppliedDtldCustLedgEntry(CustLedgEntry1."Entry No.");// End of the added line.                      END;        OnAfterGetRecord=BEGIN...

    Kods 2.

    ...     {   END;        OnAfterGetRecord=BEGIN// Delete the following lines.IF ("Entry No." = 0) OR ("Unapplied by Entry No." <> 0) OR("Document Type" IN["Document Type"::Payment,"Document Type"::Refund,"Document Type"::Dishonored,"Document Type"::" "])THENShowDetailedCustLedgerEntry := TRUEELSEShowDetailedCustLedgerEntry := FALSE;// IT0015.begin//VSTF275923 begin// VSTF305887.begin//IF PrintCustLedgEntry2 THENIF PrintCustLedgEntry2 AND ("Document Type" <> "Document Type"::Payment) THENCurrReport.SKIP;// VSTF305887.end//CurrReport.SKIP;//VSTF275923 end// IT0015.endCustLedgEntry3.GET("Applied Cust. Ledger Entry No.");CustLedgEntry3.CALCFIELDS("Original Amt. (LCY)");// IT0004.beginClosedByAmountLCY := "Amount (LCY)";TotalForCustomer += "Amount (LCY)";// IT0004.endTotalClosedByAmntLCY += "Amount (LCY)"; // IT0005// End of the deleted lines.                         END;        DataItemLink=Cust. Ledger Entry No.=FIELD(Entry No.);...

    Aizstāšanas kods 2.

    ...END;        OnAfterGetRecord=BEGIN// Add the following lines.IF NOT TempDetailedCustLedgEntryApp.GET("Entry No.") THENCurrReport.SKIP;CustLedgEntry3.GET("Cust. Ledger Entry No.");CustLedgEntry3.CALCFIELDS("Original Amt. (LCY)");AppliedDocumentTypeText := FORMAT(CustLedgEntry3."Document Type");ClosedByAmountLCY := "Amount (LCY)";TotalForCustomer -= "Amount (LCY)";TotalClosedByAmntLCY -= "Amount (LCY)";// End of the added lines.                         END;        DataItemLink=Cust. Ledger Entry No.=FIELD(Entry No.);...

    Kods 3

    ... SectionWidth=24450;            SectionHeight=846;            OnPreSection=BEGIN// Delete the following line.CurrReport.SHOWOUTPUT(ShowDetailedCustLedgerEntry)// End of the deleted line.                         END;          }...

    Aizstāšanas kodu 3.

    ...SectionWidth=24450;            SectionHeight=846;            OnPreSection=BEGIN// Add the following lines.IF ("Unapplied by Entry No." <> 0) THENCurrReport.SHOWOUTPUT(FALSE);// End of the added lines.                         END;          }...

    Kods 4

    ...ForeColor=65535;                                                         SourceExpr="Document Type" = "Document Type"::Dishonored;                                                         DataSetFieldName=Document_Type_____Document_Type___Dishonored }// Delete the following lines.{ 1130123;TextBox   ;24000;0    ;150  ;423  ;Visible=No;SourceExpr=ShowDetailedCustLedgerEntry;DataSetFieldName=ShowDetailedCustLedgerEntry }// End of the deleted lines.          }           }        { PROPERTIES...

    Aizstāšanas kodu 4

    ... ForeColor=65535;                                                         SourceExpr="Document Type" = "Document Type"::Dishonored;                                                         DataSetFieldName=Document_Type_____Document_Type___Dishonored }          }           }        { PROPERTIES...
  2. Nomainiet šo kodu, globālo mainīgo klientu rēķinu saraksta pārskatā (12117) šādi:Kods 1

    ...Text000@1130000 : TextConst 'ENU=Please specify the Ending Date';      Text001@1130001 : TextConst 'ENU=The Bank Receipts Risk Period Value must not be blank in Sales Setup';      SalesSetup@1130002 : Record 311;      EndingDate@1130003 : Date;      ExposureDate@1130004 : Date;      OnlyOpened@1130005 : Boolean;...

    Aizstāšanas kods = 1

    ...  Text000@1130000 : TextConst 'ENU=Please specify the Ending Date';      Text001@1130001 : TextConst 'ENU=The Bank Receipts Risk Period Value must not be blank in Sales Setup';      SalesSetup@1130002 : Record 311;// Add the following lines.CustLedgEntry3@1130130 : Record 21;TempDetailedCustLedgEntryApp@1130131 : TEMPORARY Record 379;// End of the added lines.      EndingDate@1130003 : Date;      ExposureDate@1130004 : Date;      OnlyOpened@1130005 : Boolean;...

    Kods 2.

    ... TotExpAmntForCust@1130011 : Decimal;      BalanceDue@1130012 : Decimal;      NULL@1130013 : DateFormula;// Delete the following lines.CustLedgEntry3@1130130 : Record 21;PrintCustLedgEntry2@1130014 : Boolean;ShowDetailedCustLedgerEntry@1130015 : Boolean INDATASET;// End of the deleted lines.    BEGIN    {...

    Aizstāšanas kods 2.

    ...  TotExpAmntForCust@1130011 : Decimal;      BalanceDue@1130012 : Decimal;      NULL@1130013 : DateFormula;// Add the following lines.PrintCustLedgEntry2@1130014 : Boolean;AppliedDocumentTypeText@1130132 : Text[30];LOCAL PROCEDURE FindAppliedDtldCustLedgEntry@1130007(CustLedgerEntryNo@1130000 : Integer);VARDetailedCustLedgEntry@1130001 : Record 379;DetailedCustLedgEntryApplied@1130003 : Record 379;BEGINTempDetailedCustLedgEntryApp.RESET;TempDetailedCustLedgEntryApp.DELETEALL;DetailedCustLedgEntry.SETRANGE("Cust. Ledger Entry No.",CustLedgerEntryNo);DetailedCustLedgEntry.SETRANGE("Entry Type",DetailedCustLedgEntry."Entry Type"::Application);DetailedCustLedgEntry.SETRANGE(Unapplied,FALSE);DetailedCustLedgEntryApplied.SETRANGE("Entry Type",DetailedCustLedgEntryApplied."Entry Type"::Application);IF DetailedCustLedgEntry.FINDSET THENREPEATDetailedCustLedgEntryApplied.SETRANGE("Applied Cust. Ledger Entry No.",DetailedCustLedgEntry."Applied Cust. Ledger Entry No.");DetailedCustLedgEntryApplied.SETFILTER("Cust. Ledger Entry No.",'<>%1',CustLedgerEntryNo);DetailedCustLedgEntryApplied.SETRANGE("Customer No.",DetailedCustLedgEntry."Customer No.");DetailedCustLedgEntryApplied.SETRANGE("Transaction No.",DetailedCustLedgEntry."Transaction No.");IF DetailedCustLedgEntryApplied.FINDSET THENREPEATTempDetailedCustLedgEntryApp := DetailedCustLedgEntryApplied;IF TempDetailedCustLedgEntryApp.INSERT THEN;UNTIL DetailedCustLedgEntryApplied.NEXT = 0;UNTIL DetailedCustLedgEntry.NEXT = 0;END;// End of the added lines.    BEGIN    {...
  3. Nomainiet šo kodu pārskatā kreditoru rēķinu sarakstu (12116) šādi:Kods 1

    ... </TableRow>                  </TableRows>                </Header>               <Visibility>                 <Hidden>=IIF(Fields!ShowDetailedCustLedgerEntry.Value,TRUE,FALSE)</Hidden>               </Visibility>              </TableGroup>            </TableGroups>            <Top>2.22222cm</Top>...

    Aizstāšanas kods = 1

    ... </TableRow>                  </TableRows>                </Header>// Delete the following lines.<Visibility><Hidden>=IIF(Fields!ShowDetailedCustLedgerEntry.Value,TRUE,FALSE)</Hidden></Visibility>// End of the deleted lines.              </TableGroup>            </TableGroups>            <Top>2.22222cm</Top>...

    Kods 2.

    ...Field Name="Detailed_Cust__Ledg__Entry_Cust__Ledger_Entry_No_">          <DataField>Detailed_Cust__Ledg__Entry_Cust__Ledger_Entry_No_</DataField>        </Field>       <Field Name="ShowDetailedCustLedgerEntry">         <DataField>ShowDetailedCustomerLedgerEntry</DataField>       </Field>      </Fields>      <Query>        <CommandText />...

    Aizstāšanas kods 2.

    ...<Field Name="Detailed_Cust__Ledg__Entry_Cust__Ledger_Entry_No_">          <DataField>Detailed_Cust__Ledg__Entry_Cust__Ledger_Entry_No_</DataField>        </Field>// Delete the following lines.<Field Name="ShowDetailedCustLedgerEntry"><DataField>ShowDetailedCustomerLedgerEntry</DataField></Field>// End of the deleted lines.      </Fields>      <Query>        <CommandText />...

Priekšnosacījumi

Datorā ir jābūt instalētai kādai no lai lietotu šo labojumfailu šādiem produktiem:

  • Microsoft Dynamics NAV 2009 R2 itāliešu versija

  • Microsoft Dynamics NAV 2009 SP1 itāliešu versija

Informācija par noņemšanu

Nevar noņemt šo labojumfailu.

Statuss

Korporācija Microsoft ir apstiprinājusi, ka šī problēma pastāv Microsoft produktos, kas ir minēti sadaļā "Attiecas uz".

Piezīme. Šis ir STEIDZAMI PUBLICĒJAMS raksts, kas izveidots tieši Microsoft atbalsta organizācijā. Šajā rakstā ietvertā informācija ir sniegta, reaģējot uz nesen konstatētām problēmām. Tā kā šis raksts ir tapis pieejams neilgā laikā, materiālos var būt pareizrakstības kļūdas un tās var tikt labotas jebkurā laikā bez paziņojuma. Skatīt Lietošanasciti apsvērumi.

Nepieciešama papildu palīdzība?

Vēlaties vairāk opciju?

Izpētiet abonementa priekšrocības, pārlūkojiet apmācības kursus, uzziniet, kā aizsargāt ierīci un veikt citas darbības.