Lead pipeline not tally with list, duplicate states on pipeline

Hi all,

I have the following issue on Sage CRM Lead page.

  1. the lead pipeline is not tally with the list.
  2. the state "Approved" is duplicated on the pipeline. 

which view table can I check for the pipeline?

thank you.

Parents Reply Children
  • 0 in reply to murni

    HI Murni.

    Not really, as far I know this is hard coded. 

    I know that changing oppo_stages could be a nightmare, as the oppo_stage could be referenced in a lot of places.

    This query would show in what rules action is used the field oppo_stage, so you can easily check:

    select * from vWorkflowActions where WkAc_Field = 'oppo_stage'

    This query also would show you in wich rules the field oppo_stage is used in the javsscript condition (transition rules) or where clause (escalation rules):

    select * from vWorkflowRules where WkRl_JavaScript like '%oppo_stage%' or WkRl_WhereClause like '%oppo_stage%'

    Hope this help if you decide change one of the oppo_stage codes.