人気ブログランキング | 話題のタグを見る

How to Solve:

Summary: When you run the "LSV Suggest Collection" report (3010831) in the Swiss version of Microsoft Dynamics NAV, the collection amount is incorrect. You may notice that the calculation of the amount does not use the remaining payment discount possible amount in customer ledger entries.

This problem occurs if the following conditions are true:


  • A customer ledger entry from an invoice has a payment discount possible value.
  • The invoice was applied to a credit memo that also has a payment discount possible value.

  • The remaining payment discount possible of the invoice was reduced.
  • The problem also occurs if you manually change the value in the Remaining Payment Discount Possible field for the customer ledger entry.

    Resolution: Repairing The "LSV Suggest Collection" report (3010831) displays an incorrect collection amount in the Swiss version of Microsoft Dynamics NAV problem can not be that easy. In order to fix your errors and speed up PC, it is recommended that your download the 'The "LSV Suggest Collection" report (3010831) displays an incorrect collection amount in the Swiss version of Microsoft Dynamics NAV Repair Tool'. This is an advanced optimizing tool the can repair all those problems that are slowing your computer down.

    Install The "LSV Suggest Collection" report (3010831) displays an incorrect collection amount in the Swiss version of Microsoft Dynamics NAV Error Fixer Now

    In order to repair The "LSV Suggest Collection" report (3010831) displays an incorrect collection amount in the Swiss version of Microsoft Dynamics NAV issue, use the SmartPCFixer software program. This system optimizer software is already proven to locate, identify, and fix The "LSV Suggest Collection" report (3010831) displays an incorrect collection amount in the Swiss version of Microsoft Dynamics NAV errors. Speed up your PC with SmartPCFixer at once


    Manual Solutions

    Hotfix information

    A supported hotfix is now available from Microsoft. However, it is only intended to correct the problem that is described in this article. Apply it only to systems that are experiencing this specific problem. This hotfix may receive additional testing. Therefore, if you are not severely affected by this problem, we recommend that you wait for the next Microsoft Dynamics NAV service pack or the next version that contains this hotfix.

    Note In special cases, charges that are ordinarily incurred for support calls may be canceled if a Technical Support Professional for Microsoft Dynamics and related products determines that a specific update will resolve your problem. The usual support costs will apply to additional support questions and issues that do not qualify for the specific update in question.

    Installation information

    Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements.

    Note Before you install this hotfix, verify that all Microsoft Navision client users are logged off the system. This includes Microsoft Navision Application Services (NAS) client users. You should be the only client user who is logged on when you implement this hotfix.

    To implement this hotfix, you must have a developer license.

    We recommend that the user account in the Windows Logins window or in the Database Logins window be assigned the "SUPER" role ID. If the user account cannot be assigned the "SUPER" role ID, you must verify that the user account has the following permissions:
  • The Modify permission for the object that you will be changing.
  • The Execute permission for the System Object ID 5210 object and for the System Object ID 9015 object.


  • Note You do not have to have rights to the data stores unless you have to perform data repair.

    Code changes

    Note Always test code fixes in a controlled environment before you apply the fixes to your production computers.

    To install this hotfix, change the code in the LSV Journal Line table (3010834), in the LSV Suggest Collection report (3010831), in the LSV Collection Journal report (3010832), in the Write LSV File report (3010834) and in the LSV Collection Advice report (3010838).
    To do this, follow these steps:
    In the LSV Journal Line table (3010834)
  • Change the code in the CompletePmtSuggestLines function as follows:
    Existing code
    … ActCustLedgEntry.CALCFIELDS("Remaining Amount"); ActLSVJournalLine."Remaining Amount" := ActCustLedgEntry."Remaining Amount"; ActLSVJournalLine."Pmt. Discount" := ActCustLedgEntry."Original Pmt. Disc. Possible"; ActLSVJournalLine."Collection Amount" := ActCustLedgEntry."Remaining Amount" - CustLedgEntry."Original Pmt. Disc. Possible"; "Customer No." := CustLedgEntry."Customer No."; Customer.GET("Customer No.");…
    Replacement code
    … ActCustLedgEntry.CALCFIELDS("Remaining Amount"); ActLSVJournalLine."Remaining Amount" := ActCustLedgEntry."Remaining Amount"; ActLSVJournalLine."Pmt. Discount" := ActCustLedgEntry."Remaining Pmt. Disc. Possible"; ActLSVJournalLine."Collection Amount" := ActCustLedgEntry."Remaining Amount" - CustLedgEntry."Remaining Pmt. Disc. Possible"; "Customer No." := CustLedgEntry."Customer No."; Customer.GET("Customer No.");…
  • In the LSV Suggest Collection report (3010831)
  • Change the code in the WritePmtSuggestLines trigger as follows:
    Existing code
    … VALIDATE("Currency Code",ActCustLedgEntry."Currency Code"); ActCustLedgEntry.CALCFIELDS("Remaining Amount"); "Remaining Amount" := ActCustLedgEntry."Remaining Amount"; "Pmt. Discount" := ActCustLedgEntry."Original Pmt. Disc. Possible"; "Collection Amount" := ActCustLedgEntry."Remaining Amount" - CustLedgEntry."Original Pmt. Disc. Possible"; "Applies-to Doc. No." := ActCustLedgEntry."Document No."; "Cust. Ledg. Entry No." := ActCustLedgEntry."Entry No."; Name := Customer.Name;…
    Replacement code
    … VALIDATE("Currency Code",ActCustLedgEntry."Currency Code"); ActCustLedgEntry.CALCFIELDS("Remaining Amount"); "Remaining Amount" := ActCustLedgEntry."Remaining Amount"; "Pmt. Discount" := ActCustLedgEntry."Remaining Pmt. Disc. Possible"; "Collection Amount" := ActCustLedgEntry."Remaining Amount" - CustLedgEntry."Remaining Pmt. Disc. Possible"; "Applies-to Doc. No." := ActCustLedgEntry."Document No."; "Cust. Ledg. Entry No." := ActCustLedgEntry."Entry No."; Name := Customer.Name;…
  • In the LSV Collection Journal report (3010832)
  • Change the code in the Data Item Number 1: LSV Journal Line - OnAfterGetRecord() trigger as follows:
    Existing code
    … xTxt := Text003; CustLedgEntry.CALCFIELDS(Amount,"Remaining Amount"); IF "Collection Amount" <> CustLedgEntry."Remaining Amount" - CustLedgEntry."Original Pmt. Disc. Possible" THEN xTxt := Text004; END;…
    Replacement code
    … xTxt := Text003; CustLedgEntry.CALCFIELDS(Amount,"Remaining Amount"); IF "Collection Amount" <> CustLedgEntry."Remaining Amount" - CustLedgEntry."Remaining Pmt. Disc. Possible" THEN xTxt := Text004; END;…
  • Change the LSV Journal Line, Body (2) section as follows:
    Existing code
    Control23 - 23 ;TextBox ;15000;0 ;1050 ;423 ;BlankZero=Yes;SourceExpr=CustLedgEntry."Original Pmt. Disc. Possible"
    Replacement code
    Control23 - 23 ;TextBox ;15000;0 ;1050 ;423 ;BlankZero=Yes;SourceExpr=CustLedgEntry."Remaining Pmt. Disc. Possible"
  • In the Write LSV File report (3010834)
  • Change the code in the WriteFile function as follows:
    Existing code
    … ERROR(Text039,CustLedgEntry.TABLECAPTION, CustLedgEntry."Entry No.",CustLedgEntry."Customer No.",CustLedgEntry."Document No."); // CH2820.END CollectionAmt := CollectionAmt + CustLedgEntry."Remaining Amount" - CustLedgEntry."Original Pmt. Disc. Possible"; PrepareMessage; NoOfLines := NoOfLines + 1; WriteCollectionRecord( CustLedgEntry."Customer No.", CustLedgEntry."Remaining Amount" - CustLedgEntry."Original Pmt. Disc. Possible", LsvJour."Credit Date", LsvJour."Collection Completed On");…
    Replacement code
    … ERROR(Text039,CustLedgEntry.TABLECAPTION, CustLedgEntry."Entry No.",CustLedgEntry."Customer No.",CustLedgEntry."Document No."); // CH2820.END CollectionAmt := CollectionAmt + CustLedgEntry."Remaining Amount" - CustLedgEntry."Remaining Pmt. Disc. Possible"; PrepareMessage; NoOfLines := NoOfLines + 1; WriteCollectionRecord( CustLedgEntry."Customer No.", CustLedgEntry."Remaining Amount" - CustLedgEntry."Remaining Pmt. Disc. Possible", LsvJour."Credit Date", LsvJour."Collection Completed On");…
  • In the LSV Collection Advice report (3010838)
  • Change the code in the Data Item Number 2 - Cust. Ledger Entry - OnAfterGetRecord trigger as follows:
    Existing code
    Pos := Pos + 1; NoOfEntries := NoOfEntries + 1; "Cust. Ledger Entry".CALCFIELDS("Remaining Amount"); CollectionAmt := "Cust. Ledger Entry"."Remaining Amount" - "Original Pmt. Disc. Possible";
    Replacement code
    Pos := Pos + 1; NoOfEntries := NoOfEntries + 1; "Cust. Ledger Entry".CALCFIELDS("Remaining Amount"); CollectionAmt := "Cust. Ledger Entry"."Remaining Amount" - "Remaining Pmt. Disc. Possible";
  • Change the Cust. Ledger Entry, Body (1) section as follows:
    Existing code
    Control 7, 7 ;TextBox ;14550;0 ;1500 ;423 ;FontSize=9;SourceExpr=CustLedgEntry."Original Pmt. Disc. Possible"
    Replacement code
    Control 7, 7 ;TextBox ;14550;0 ;1500 ;423 ;FontSize=9;SourceExpr=CustLedgEntry."Remaining Pmt. Disc. Possible"
  • Prerequisites

    You must have one of the following products installed to apply this hotfix:
  • The Swiss version of Microsoft Dynamics NAV 4.0
  • The Swiss version of Microsoft Dynamics NAV 5.0
  • Removal information

    You cannot remove this hotfix.

    What Else Does SmartPCFixer Offer You?

    Apart from fixing The "LSV Suggest Collection" report (3010831) displays an incorrect collection amount in the Swiss version of Microsoft Dynamics NAV problems, SmartPCFixer is designed to provide the user's computer system with better optimization, which helps you manage startup items, desktop, browser objects, Internet, system service, Windows optimization, file extensions and so on. With these sophisticated utilities your system is tuned up to run at the optimal state.

    SmartPCFixer provides you with Registry Backup, System Backup, Favorites Backup and Folder Backup. In addition, the new built-in function of Restore Point enables you to create a system store point so you can recover your system to a previous state if you do not like the changes you have made. This ensures the safety of your system when you run the registry repair process.



    Related: OL97: Error When Closing Message With File Attached,Logon Script Window Switches To Full Screen Under Windows 95,OL97: Removing Microsoft Exchange Deletes Some Outlook DLLs,OL2000: ErrMsg: A Field On This Form Requires A Value,OL97: Microsoft Outlook Forms Help Available
    Read More: ,How To Display a WFC Form in a Visual J++ Applet,How to manage Internet Information Services Web IP bindings by using third-party load balancing devices,How AWFAX Initializes a Class 1 or Class 2 Fax Modem,FIX: Windows Media Player 9 Series may ignore a fractional STARTTIME value and a fractional DURATION value for a non-English locale,FIX: The SH4 compiler may generate an incorrect return value for a function in Windows CE .NET 4.2
    # by meiquena | 2016-05-31 10:16

    Summary:

    Solution: Fixing Intro to Microsoft OLE Custom Control Architecture & Tools errors is a really difficult task for most computer users. In order to fix your errors and speed up PC, it is recommended that your download the 'Intro to Microsoft OLE Custom Control Architecture & Tools Repair Tool'. It's an amazing software which is designed for users to troubleshoot Intro to Microsoft OLE Custom Control Architecture & Tools errors efficiently..

    Download Intro to Microsoft OLE Custom Control Architecture & Tools Problems Fixer Now

    In order to repair Intro to Microsoft OLE Custom Control Architecture & Tools error, use the SmartPCFixer software program. This optimization tool is already proven to locate, identify, and remove Intro to Microsoft OLE Custom Control Architecture & Tools errors. Speed up your PC with SmartPCFixer at once


    Manual Resolutions

    What Else Does SmartPCFixer Offer You?

    Apart from fixing Intro to Microsoft OLE Custom Control Architecture & Tools problems, SmartPCFixer is designed to provide the user's computer system with better optimization, which helps you manage startup items, desktop, browser objects, Internet, system service, Windows optimization, file extensions and so on. With these sophisticated utilities your system is tuned up to run at the optimal state.

    SmartPCFixer is designed to scan, diagnose and repair your operating system. Using it results in better optimization, manages startup and desktop, assists you with maintaining browser objects, internet options, system service, and repairs file extensions. With this arsenal of powerful, sophisticated utilities your system is tuned to run at its optimal state. Included are Easy Repair Wizard, Error Utilities, File Association fixer, Register ActiveX, Shortcuts Fixer, Winsock2 Repair toolkit, Dll Fixer and more.



    Related: DriverTuner,DriverTuner,Driver Tuner,DriverTuner
    Read More: ,www explorer,msvcp80 dll,Hotfix rollup 926355 is available for Microsoft Dynamics GP 9.0,FIX: Error message when you try to use the Catalog Manager client to export a catalog to an XML file in Commerce Server 2007: "The number of elements in the select list exceeds the maximum allowed number of 4096 elements",FP2000: "FRONTPG.EXE Caused an Invalid Page Fault in Mso9.dll" Error Message When You Try to Save Changes to a Web
    # by meiquena | 2016-05-27 10:55

    Summary:

    Solution: Repairing Mac Form: Versions of HyperCard Required by the Form Designer problem can not be that easy. To solve Mac Form: Versions of HyperCard Required by the Form Designer problems effectively and efficiently, install a good Mac Form: Versions of HyperCard Required by the Form Designer Error Removal Tool is a smart solution. It's an amazing software which is designed for users to troubleshoot Mac Form: Versions of HyperCard Required by the Form Designer errors efficiently..

    Try Mac Form: Versions of HyperCard Required by the Form Designer Removal Program Now

    In order to repair Mac Form: Versions of HyperCard Required by the Form Designer error, install SmartPCFixer immediately. This optimization tool is already proven to locate, identify, and repair Mac Form: Versions of HyperCard Required by the Form Designer errors. Your computer should run faster and smoother after using this software.


    Manual Resolutions

    What Else Does SmartPCFixer Offer You?

    Apart from fixing Mac Form: Versions of HyperCard Required by the Form Designer problems, SmartPCFixer is designed to provide the user's computer system with better optimization, which helps you manage startup items, desktop, browser objects, Internet, system service, Windows optimization, file extensions and so on. With these sophisticated utilities your system is tuned up to run at the optimal state.

    SmartPCFixer is designed to scan, diagnose and repair your operating system. Using it results in better optimization, manages startup and desktop, assists you with maintaining browser objects, internet options, system service, and repairs file extensions. With this arsenal of powerful, sophisticated utilities your system is tuned to run at its optimal state. Included are Easy Repair Wizard, Error Utilities, File Association fixer, Register ActiveX, Shortcuts Fixer, Winsock2 Repair toolkit, Dll Fixer and more.



    Related: Driver Tuner,Driver Tuner,DriverTuner,Driver Tuner
    Read More: ,chkdsk command,flash player update download,How to display only the customers for the salesperson who is logged on to Business Portal in Microsoft Dynamics GP 9.0,FIX: Message delivery may be delayed until 11:59 PM in BizTalk Server 2006,How To Create a New Contact in Schedule Plus from Visual Basic
    # by meiquena | 2016-05-27 10:28

    Summary:

    Resolution: Fixing How To Create a Transparent Picture For Office CommandBar Buttons errors is a really difficult task for most computer users. To solve How To Create a Transparent Picture For Office CommandBar Buttons problems effectively and efficiently, install a good How To Create a Transparent Picture For Office CommandBar Buttons Error Removal Tool is a smart solution. This is definitely your ideal tool to solve How To Create a Transparent Picture For Office CommandBar Buttons problem in the shortest time.

    Try How To Create a Transparent Picture For Office CommandBar Buttons Removal Program Now

    In order to repair How To Create a Transparent Picture For Office CommandBar Buttons problem, use the SmartPCFixer software program. This optimization tool is already proven to locate, identify, and fix How To Create a Transparent Picture For Office CommandBar Buttons errors. Your computer should run faster and smoother after using this software.


    Manual Resolutions

    What Else Does SmartPCFixer Offer You?

    SmartPCFixer™ is not only able to troubleshoot How To Create a Transparent Picture For Office CommandBar Buttons error, but also help identify and fix Windows' invalid registry entries. By running Scan & Cleaner as part of scheduled maintenance, it will keep your PC from freezing or frequent crashes . Using it will reduce the probability of you getting a "blue screen", program not responding or lock up.

    SmartPCFixer is designed to scan, diagnose and repair your operating system. Using it results in better optimization, manages startup and desktop, assists you with maintaining browser objects, internet options, system service, and repairs file extensions. With this arsenal of powerful, sophisticated utilities your system is tuned to run at its optimal state. Included are Easy Repair Wizard, Error Utilities, File Association fixer, Register ActiveX, Shortcuts Fixer, Winsock2 Repair toolkit, Dll Fixer and more.



    Related: Error Code 0x80070643 When You Try To Add A Wi-Fi Network Device To A Windows 7 Based Computer,File Listing For Internet Explorer 5 (1 Of 2),Error Message When You Run The "Import Rabobank Mut.asc" Dataport In The Netherlands Version Of Microsoft Dynamics NAV: "Could Not Find A Bank Account With Bank Account No",File: Paste Command Is Dimmed After A Copy,Date Does Not Fall Within A Valid Posting Year. Invalid Date For Transaction.
    Read More: ,dns lookup error,windows free update,sqlite3 dll error,window help,system restore xp
    # by meiquena | 2016-05-25 17:23

    Summary: When using INSERT SELECT or SELECT INTO inside of a transaction, sharedintent locks that are acquired on the source data tables may not becompletely released.

    Resolution: If you fix FIX: INSERT SELECT Statement Does Not Release Shared Intent Lock error in time, your PC will run like brand new. In order to fix your errors and speed up PC, it is recommended that your download the 'FIX: INSERT SELECT Statement Does Not Release Shared Intent Lock Repair Tool'. This is definitely your ideal tool to solve FIX: INSERT SELECT Statement Does Not Release Shared Intent Lock problem in the shortest time.

    Download the FIX: INSERT SELECT Statement Does Not Release Shared Intent Lock repair tool

    In order to repair FIX: INSERT SELECT Statement Does Not Release Shared Intent Lock issue, use the SmartPCFixer software program. This optimization tool is already proven to locate, identify, and fix FIX: INSERT SELECT Statement Does Not Release Shared Intent Lock errors. Your computer should run faster and smoother after using this software.


    Manual Solutions

    What Else Does SmartPCFixer Offer You?

    SmartPCFixer™ is not only able to troubleshoot FIX: INSERT SELECT Statement Does Not Release Shared Intent Lock error, but also help identify and fix Windows' invalid registry entries. By running Scan & Cleaner as part of scheduled maintenance, it will keep your PC from freezing or frequent crashes . Using it will reduce the probability of you getting a "blue screen", program not responding or lock up.

    SmartPCFixer provides you with Registry Backup, System Backup, Favorites Backup and Folder Backup. In addition, the new built-in function of Restore Point enables you to create a system store point so you can recover your system to a previous state if you do not like the changes you have made. This ensures the safety of your system when you run the registry repair process.



    Related: Error Posting Recurring Intercompany Batch - "Syntax Error Converting Varchar The Value Ty To A Column Of Data Type Int.",FIX: A Memory Leak Occurs In The Regsvc.exe File When You Add ASP.NET Counters From A Remote Server In Your Performance Monitor In The .NET Framework 2.0,Description Of Group Policy Settings That Are Associated With RIS In Windows Server 2008,Earlier Version Of Word Document Doesn’t Open In Word 2008 For Mac,Domain User Cannot Add A Local Printer
    Read More: ,error code 0x8007005,low memory computer,install internet explorer 7,free computer clean up,low disk space warning
    # by meiquena | 2016-05-25 17:19