Login / Register  search  syndication  about

          Kris Halsrud's Blog

Kris Halsrud on development and Integration with CRM and Development

Error when trying to save a Closed – Won Opportunity in the SalesLogix Web Client

 

If you have ever ran into a popup error in the SalesLogix web client, trying to save an Opportunity that has its status set to “Closed – Won” that looks like:

Object reference not set to an instance of an object.

 

The issue is likely due to data issues that are causing the standard Sage business rule MoveOppProductsToAssets to fail.  This rule is invoked on the Opportunity entity’s OnBeforeUpdate event.  The actual code within this business rule is compiled in the Sage.SalesLogix.BusinessRules.dll assembly so it can not be modified, but here is a screen shot of the code:

SalesLogix Opportunity MoveOppProductToAssets Business Rule

 

 

As you can see there are two assumptions made within this code:

 

  • Each Asset at the Opportunity's Account must have a product.  Meaning a valid PRODUCTID in ACCOUNTPRODUCT.PRODUCTID
  • Each Opportunity product must have a valid product

If either of these conditions is not met then you will receive the error.

These queries should find any records where this is going to be a problem:

select * from ACCOUNTPRODUCT where PRODUCTID is null or PRODUCTID not in (select PRODUCTID from PRODUCT)
select * from OPPORTUNITY_PRODUCT where PRODUCTID is null or PRODUCTID not in (select PRODUCTID from PRODUCT)

Fixing the data problems is a little more complicated because you must either update the rows containing invalid PRODUCTIDs to some valid value, or delete them.

What's This?
  
Bookmark and Share

About Kris Halsrud

   Kris Halsrud is a Senior Analyst / Developer for Customer FX Corporation.


Related Content
   Unicode data from SalesLogix not exporting from the web Crystal Report viewer to PDF correctly.
The later version of SalesLogix allow the storage of Unicode data in the database.  This allows for
Posted on Jun 07, 2013 by Kris Halsrud to Kris Halsrud's Blog
 
   Problems managing team membership in the SalesLogix web client
In the Web Client's Administration area under teams (In both v7.5x and 8.0x versions):1) When addin
Posted on Jun 03, 2013 by Kris Halsrud to Kris Halsrud's Blog
 
   Demystifying SalesLogix Web: Dashboards and Analytics Tools
Join us for a free webinar, Wednesday, May 15th at 2pm CDT. The SalesLogix Web dashboards and analytics
Posted on May 08, 2013 by Brianna Tinjum to The Inbox
 
   How can I make sure I am logging into the correct SalesLogix web client database?
I just recently did a updated conversion of our production database (which is 6.2x) and I'm trying to
Posted on Apr 15, 2013 by SalesLogix Support to SalesLogix Questions & Answers
 
   The SLXOLEDB.1 provider is not registered on the local machine
Ever seen this error before when logging into the SalesLogix web client?  Ofter this is a result of
Posted on Apr 04, 2013 by Kris Halsrud to Kris Halsrud's Blog
 
Comments

 

Kris Halsrud's Blog said:

Yesterday I posted information here about how, in order to set an Opportunity status to “Closed – Won

March 7, 2012 1:22 PM

Leave a Comment

(required)  
(optional)
(required)  
Add
All contents Copyright © 2013 Customer FX Corporation
Customer FX Corporation
2324 University Avenue West, Suite 115
Saint Paul, Minnesota 55114
Tel: 800.728.5783

  Follow @CustomerFX on twitter
Follow the best news, tips, and articles
  Subscribe to Customer FX on youtube
Watch SalesLogix tutorial videos from Customer FX
Login / Register