8/24/2025 5:39:36 PM
|
|
slxdeveloper.com Community Forums |
|
|
|
The Forums on slxdeveloper.com are now retired. The forum archive will remain available for the time being. Thank you for your participation on slxdeveloper.com!
Forum to discuss writing script in Architect plugins for SalesLogix & general SalesLogix customization topics (for Windows client only). View the code of conduct for posting guidelines.
|
|
|
| |
|
Re: Opportunity Pipline all grey? 
Posted: 09 Aug 08 3:37 AM
|
This is because all your stage's are blank/unknown. You need to create sales processes in order to be able to set the stage. Or, at least you need to update the stage manually based upon the current status. That will fix the grey issue. If you don't want to use sales processes then you can remove the grey by doing this:
To override the stage color order you can change the following VB script plug-in "Sales Dashboard:Pipeline Support" and exit out of the SetColorAndOrder sub routine. Sub SetColorAndOrder(objRS) --> Exit Sub Dim i Dim stageNumber If objRS.RecordCount > 0 then objRS.MoveFirst End If For i = 0 to objRS.RecordCount-1 stageNumber = GetStageNumber(objRS.Fields("NAME").Value) 'DNL objRS.Fields("Order").Value = stageNumber 'DNL objRS.Fields("Color").Value = GetStageColor(stageNumber) 'DNL objRS.MoveNext Next objRS.Sort = "Order Asc, Name Desc" 'DNL End Sub |
|
|
|
You can
subscribe to receive a daily forum digest in your
user profile. View the site code
of conduct for posting guidelines.
Forum RSS Feed - Subscribe to the forum RSS feed to keep on top of the latest forum activity!
|
|
|
|
|
|
|
|