Lead Status "In Progress" Code

Hello,

Does anyone know the proper syntax to reference the "In Progress" value in the leads table under leads status? When referenced as "In Progress"; how it appears, it does not function properly within setting the filter defaults nor within other written code.

Perhaps it's "In_Progress"? 

Thanks,

Jacob

Parents
  • 0

    Hi Jacob

    <span id="_Datalead_status" class="VIEWBOX">
    <select class="EDIT" size="0" name="lead_status" id="lead_status">
    <option value="In Progress" selected="">In Progress</option>
    <option value="Opportunity">Opportunity</option>
    <option value="Closed">Closed</option>
    <option value="">--None--</option>
    </select>
    <input type="hidden" name="_HIDDENlead_status" id="_HIDDENlead_status" value="In Progress" entrytype="21">
    </span>

    The value is "In Progress" in the default system.  What code is giving you issues?

  • 0 in reply to Sage CRM

    Hi,

    Anything that references the code as "In Progress". For instance, DefaultValue = "In Progress";

    Where can I view the file that you just pasted? I'd like to look and see if my value is the same.

  • 0 in reply to Jacob04

    The value isn't in a file. It's in translations. The core CRM application is a single DLL and not a series of ASP pages. To find the entries go into Administration -> Customisation -> Translations and in the caption family, look up lead_status which will give you the entries in that drop down list.

  • 0 in reply to Vega

    Looks as expected I suppose. I just don't understand why attempts to reference In Progress don't work at all. 

Reply Children