Regarding picklist

I have two picklists on opportunity page 1)Lead Source and 2) Advisory/Partner Name
The Lead Source is Automatically populated from the Lead page and my requirement is if at all Lead Source is Advisory/Partner/Analyst from the dropdown it should be automatically populated as mandatory in the Advisory/partner name or otherwise it is not necessary to be mandatory. Could you guys please help me on this. Its very urgent......:)
Edited by: Subbu on Jun 23, 2010 1:14 AM
Is this the below query is correct when in the Advisory/Partner consists of A&B Values
IIf([<Source>] ="Advisor", [<[<plAdvisoryPartner_Name_ITAG>]>] IS NOT NULL,"") OR IIf([<Source>] ="Partner", [<[<plAdvisoryPartner_Name_ITAG>]>] IS NOT NULL,"") OR IIf([<Source>] ="Analyst", [<[<plAdvisoryPartner_Name_ITAG>]>] IS NOT NULL,"")
Edited by: Subbu on Jun 23, 2010 1:29 AM

Hello Amit,
Could you please help me regarding the above

Similar Messages

  • Regarding picklist values

    Hello all,
    Its have a nice discussion over phone, I have some urgent requirement in OCOD. I need to change the Lead Status to Custom values as per the client requirement, but Lead status itself is a Seededpicklist, we cannot do any modifications on that(I guess so?). So I have create 1 custom picklist with the Client requirement, when I trying to trigger an event by using workflow it throws an error meesgae.
    For Ex: Client requirement for the Status field is “Open”( Please find it in Custom picklist in Lead Entity(Status1) as in Seeded picklist is Qualyfying
    When I tried to write an event on this like “IIf( FieldValue(Staus1)='Open') AND PRE([<plStatus1_ITAG>])<>[Status1],FiledValue([<Status>])='Qualified',FiledValue([<Status>])='Converted'” it throws an error.
    Could you please help with a query, i guess my query was wrong? Need help ASAP

    I am assuming that 'Status1' is the original satus field and 'Status' is the custom field. Use this syntax to update 'Staus' field-
    IIf([Status1>]='open','abcd','xyz')
    You can use nested IIf() statement,if required.
    rgds,
    Amit

  • Regarding changes in picklist values

    My requirement is like below:
    Client Requirement(Custom picklist (status))------- Lead status filed (Seeded Picklist(Lead Status))
    Open ----- Converted
    Contacted--------------------------------------------------------- Qualyfying
    Qualified------------------------------------------------------------- qualified
    Closed--------------------------------------------------------------- Archived
    Not approved------------------------------------------------------ rejected
    There is no possibility to change the value of Seeded picklist, because it is a read only one, so that i created one custom picklist as per the client requirement and when the field value changes in the client picklist it automaticaly captured the seeded picklist(because of the mapping & conversion of leads is mapped with seeded one only). So my understanding is i created custom one when the workflow triggers on the custom there is not much effect on the Mapping conversion of the lead status if at all i mapped like in the same way. Could you please suggest the solution on this.

    sha_2008 wrote:
    Sorry,
    Could you give me some more solutions to the query.I dint understand your answer.Not really. Have you looked at TreeSet? Have you though about creating your own class that has both a set and an list? Obviously not! Until you have it is a waste of time me responding.

  • Regarding resuability of Picklist VO on same page

    Hi,
    In create page, there are two messageChoice inputs. Depending on the value selected in 1st messageChoice, the values of 2nd messaheChoice are retrieved.
    Now, I have to two more messageChoice inputs in the same page which can use the same picklist as created for previous, but here again the 2nd messageChoice is dependent on value of 1st messageChoice.
    Should i use the same picklist or create a new picklist....?
    or should i add the picklist VO twice to AM...?
    Thanks in advance,
    Mitiksha

    1. There are 2 messageChoice items, of which the 2nd is dependent on the value selected in the 1st item. For this, i have created two picklist VOs.
    2. Further, i have 2 more messageChoice items on the same page which can use the same piclikst VOs that were created for the 1st pair. Here too the 2nd item value is dependent on the value selected in 1st item.
    I wanted to know whether the picklist VO tht was created for the dependent messageChoice in point 1 could be reused for the dependent messageChoice of point 2.
    Thanks,
    Mitiksha

  • How to create a Picklist for a Srch-Field that was added to BP_HEAD_SEARCH?

    Hi experts,
    I've enhanced the BP_HEAD_SEARCH with the field SALES_OFFICE from BP_SALES. For more information about this, please refer to my previous thread where I asked how to do that:
    How to add search field to BP_HEAD_SEARCH from component BP_SALES?
    I can search for SALES_OFFICE but the request now is to use a Picklist instead, just like in BP_SALES in View CorpAccountOrgEF.
    To add the field SALES_OFFICE to the BP_HEAD_SEARCH I had to add it to the structure CRMT_BUPA_IL_HEADER_SEARCH.
    There it is in include CI_EEW_BUT000 as ZZSALES_OFFICE with the same Data Element as its original (CRMT_SALES_OFFICE).
    So when I look at BP_HEAD_SEARCH/MainSearch in the Component Workbench - ZZSALES_OFFICE is in the SEARCH Context Node as attribute STRUCT.ZZSALES_OFFICE.
    For that attribute I've generated the GET_P and GET_V methods and added below coding.
    method get_p_zzsales_office.
      case iv_property.
        when if_bsp_wd_model_setter_getter~fp_fieldtype.
          rv_value = cl_bsp_dlc_view_descriptor=>field_type_picklist.
      endcase.
    endmethod.
    method get_v_zzsales_office.
      data: lt_ddlb          type bsp_wd_dropdown_table,
            ls_sales_area    type crmt_bus_sales_area,
            lt_partner_crm   type table of crmmspl_bp_l0011,
            ls_partner_crm   type          crmmspl_bp_l0011,
            lr_ddlb_type     type ref to   cl_crm_uiu_ddlb.
    * get sales area
      select distinct sales_org channel division from crmmspl_bp_l0011
             into corresponding fields of table lt_partner_crm.
      read table lt_partner_crm into ls_partner_crm index 1.
      move-corresponding ls_partner_crm to ls_sales_area.
      if lr_ddlb_type is not bound.
        create object lr_ddlb_type
          exporting
            iv_source_type = 'T'.
    *   Get values for SALES_OFFICE
    *   provide sales area
        call method cl_crm_uiu_bp_cust_get=>get_val_for_sales_office
          exporting
            is_sales_area  = ls_sales_area
          receiving
            rt_value       = lt_ddlb
          exceptions
            error_occurred = 1
            others         = 2.
        append initial line to lt_ddlb.
        if sy-subrc = 0.
          lr_ddlb_type->set_selection_table( it_selection_table = lt_ddlb ).
        endif.
      endif.
      rv_valuehelp_descriptor = lr_ddlb_type.
    endmethod.
    But I still don't get a Picklist for my ZZSALES_OFFICE. None of these methods are even called - which I found out through debugging.
    Does anyone have an idea on how to do this?
    Thanks in advance!
    Best regards,
    Melanie
    Edited by: Melanie Lauber on Feb 12, 2009 1:33 PM

    Hi again Stephen!
    Very thanks for your reply. You've solved my problem AGAIN!
    I had to redefine the Method GET_DQUERY_DEFINITIONS, copied the original method and in the loop I added my coding as below (maybe this helps someone else too):
    * local data:
      data:
        lt_classcat          type crmt_bus_clcatt.
      field-symbols: <rs_result> like line of rt_result.
      call method super->get_dquery_definitions
        receiving
          rt_result = rt_result.
      loop at rt_result assigning <rs_result>.
        case <rs_result>-field.
          when 'OWNERLASTNAME'.
            <rs_result>-server_event = 'VHELP_EMPL'.
          when 'CPLASTNAME'.
            <rs_result>-server_event = 'VHELP_CONT'.
          when 'CREATION_USER'.
            <rs_result>-server_event = 'VHELP_CRUSR'.
          when 'CHANGE_USER'.
            <rs_result>-server_event = 'VHELP_CHUSR'.
          when 'MARKETINGATTR'.
            <rs_result>-server_event = 'VHELP_MARKETINGATTR'.
          when 'POST_CODE1' or 'HOUSE_NUM1'.
    *       overrule CL_BSP_WD_CONTEXT_NODE_ASP->ADJUST_DQUERY_VALUEHELPS
            collect gc_operator_bt into <rs_result>-operators.
            collect gc_operator_gt into <rs_result>-operators.
            collect gc_operator_lt into <rs_result>-operators.
    *--> begin - 12/02/09 - Melanie L.
          when 'ZZSALES_OFFICE'.
    *       get sales area
            select distinct sales_org channel division from crmmspl_bp_l0011
              into corresponding fields of table lt_partner_crm.
            read table lt_partner_crm into ls_partner_crm index 1.
            move-corresponding ls_partner_crm to ls_sales_area.
    *       Get values for SALES_OFFICE
    *       provide sales area
            call method cl_crm_uiu_bp_cust_get=>get_val_for_sales_office
              exporting
                is_sales_area  = ls_sales_area
              receiving
                rt_value       = lt_ddlb
              exceptions
                error_occurred = 1
                others         = 2.
            append initial line to lt_ddlb.
            if sy-subrc = 0.
              loop at lt_ddlb into ls_ddlb.
                move-corresponding ls_ddlb to ls_ddlb_opt.
                append ls_ddlb_opt to lt_ddlb_opt.
              endloop.
              <rs_result>-ddlb_options = lt_ddlb_opt.
            endif.
    *--> end   - 12/02/09
    Kind regards,
    Melanie

  • How to query a custom picklist from Opportunity's revenue?

    Hello,
    I would like to query a custom picklist from Opportunity's revenue. I am using Picklist.wsdl:
    myPort.getPicklistValues(myPicklist, Revenue, "");
    With this operation I have the following message: denied acces. (SBL-ODS-50085).
    I have tested with another entity and it works perfectlly:
    myPort.getPicklistValues(myPicklist, Opportunity, "");
    So, I think the problem is in the entity name, so can I access to Opportunity's revenue¿?
    I am very confusing, because in Web Services documentation I have seen:
    NOTE: The Revenue child object of Opportunity is actually called Product.
    I have tested with:
    myPort.getPicklistValues(myPicklist, Product, "");
    But it isn't exists in this entity: SBL-SBL-00000
    The role has access to do the query via Web Service, because it is the administrator and with it I can do any other operation via Web Service...
    What I am doing wrong?
    Thank you and regards.

    I have found the answer:
    Objects Supported with getPicklistValues operation:
    GetPicklistValues is supported for all Web Services v1.0 and v2.0 accessible parent-level objects.
    Revenue is a child object, so I can interact with this operation :(

  • Crystal report link between sales order and picklist

    Hi,
    Good day!
    I am making a picklist document using crysal report. My requirement is to show the sales order number, cardcode, cardname, itemcode, released qty in the picklist. the tables i linked in crystal are the ff:
    RDR1.DocEntry linked to ORDR.DocEntry and ORDR.DocNum linked to PKL1.OrderEntry.
    I have a sales order with 2 items and then I processed picklist for it. When I run the report, my problem is that it shows the items twice.
    Scenario:
    Sales Order 1:
    Item A   2
    Item B   1
    When I run the report, it's like this:
    Item A 2
    Item A 1
    Item B 2
    Item B 1
    I'd already tried adjusting the links but still can't get it.
    Please help me.
    Thanks so much.
    SIncerely,
    Jackilou

    Hi,
    could you please describe how you solve this issue?
    Thank you very much!
    Regards,
    Tobias

  • How to add new fields to picklist of search criteria for opportunities

    Hi Friends,
    Could you please tell me how to add new fields to the picklist of search criteria of Opportunities in WEBCLIENT(CRM 2007).
    Regards,
    Vijay

    Dear Vijay,
    We are facing the same problem over here.
    Have you managed to find a solution? Please share
    BR,
    Rohit

  • Dynamic picklist in a table in oaf

    Hi,
    In my custom page, i need to populate columns based on picklist selected column.
    How to achive this. Picklist contains 2 values. 1.yes 2.no
    if (yes)
    populate the next 2 columns with default values. else it should be blank. Every row should be populated dynamically with picklist selected value.
    Help regard this,
    Thank you

    Hi,
    Please use the following code as mentioned in the DEV guide to enable the poplist column in the table to have different values for each row.
    For example, the first column shows department number and the second column shows a poplist of employees belonging to that department, in this case ,
    for the poplist I will have to pass a bind variable (:deptNo),
    so in the controller ,
    OATableBean table = ...
    OAMessageChoiceBean empPoplist =
    (OAMessageChoiceBean)table.findChildRecursive("EmpName");empPoplist.setListVOBoundContainerColumn(0, /* bind index */
    table,"Deptno");
    '0' indicates that the first index of the poplist query , Deptno indicates the column ID of the Department column.
    Regards,
    Guru Krishnan V.

  • Picklist ID appearing in reports, instead of Picklist Value

    I have changed a Picklist Value for a Product Sales Stage field setup by one word so that the original "Bought" remains in the Picklist Id and the Picklist Value was changed to replace Bought with "Quoted".
    When I run a report on the the Product Sales Stage, the field in the Report displays with the original "Bought", even though the field on the Product Revenue page contains "Quoted".
    Can anyone advise on overcoming this so that the report also displays this field with Quoted in the wording, as per the record?
    Robyn

    Robyn,
    I think reporting uses the ID so you can either disable it and create a new value or write a CASE WHEN statement:
    CASE WHEN "FieldName" = 'Brought' THEN 'Quoted' ELSE "FieldName" END
    regards
    Alex

  • Content Items Sorting based on picklist property fails

    Content Server 6.0
    We have developed a custom presentation template to display a list of all the work items. While displaying the work items, I would like to sort them based on a property and then filter them based on another property. I have a template code similar to below:
    <pcs:foreach var="item" expr="filter(sort(sort(index.folder, 'item.pcs_id', true), 'item.application', true), '(filtered.workflow_status != "Completed")')">
    The content item has two properties: application - a picklist, and workflow_status - a picklist.
    The above code template does not return any results. However if I change the expression so that I am sorting by a text property, then it displays the results correctly.
    For e.g,
    <pcs:foreach var="item" expr="filter(sort(sort(index.folder, 'item.pcs_id', true), 'item.name', true), '(filtered.workflow_status != "Completed")')">
    (name is a text property of the content item).
    Is there another way of accesing a picklist property in sort function to retrieve the desired results? Can somebody point out what am I doing wrong?
    Thanks for your help in advance.
    Thanks
    Jignesh.

    Not currently. We're considering this for a future release.
    Regards,
    Jerry
    null

  • More than 1,000 values in a picklist

    Hello
    Does any one has a solution or a workaround? In release 15 I used to add more than 1000 values to a picklist throught import (csv) but now in release 16 this bug has been corrected, I tried also throught web service and now it is not possible. The problem here is that I need to add more than 1000 values to a picklist (town) and use it in a cascading picklist, I'm not able to use dynamic layouts because they are used for anther field that it is really important too.
    I need this because in Mexico we have state and municipality (city hall, town); each state has certains towns and this field could not be captured by the user because it is a key field.
    Can you help me please? Any suggestion you might have please let me know.
    Regards Catalina Valadez

    This is a helpful answer but I have a doubt, example picklist 1 "country" = Mexico, picklist 2 "state"= DF, NUEVO LEON, CAMPECHE, SONORA, SINALOA ....... but with customobject it wont be possible to filter de Municipality in order to appears just the town's related with Nuevo Leon, or just the town's releated with Campeche.
    Regards Catalina

  • Clarifications in picklist output type EK00 for transaction VL02N

    Hi evryone,
                      Can anyone please help me to generate a smartform for picklist output type EK00 for Tcode VL02N. In application V2 the standard program is  RVADEK01 and the form SD_PICK_SINGLE,
              what is the best way to create smartform and driver program , can I use the Standard Program or write the new driver program..
    with regards,
    Mittu

    I dont think this is the right forum to post such question.  This should have been posted in ABAP forum
    thanks
    G. Lakshmipathi

  • Troubleshooting an 'Invalid picklist value'

    Hello All,
    I'd appreciate if someone can help me resolve this (I don't have the documentation to lookup the error codes and their meanings).
    I am getting the following strack trace trying to send a Lead. It's hard to say which field this is in reference to.
    [exec] 16:13:02,121 ERROR [STDERR] AxisFault
    [exec] faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server
    [exec] faultSubcode:
    [exec] faultString: Method 'SetFieldValue' of business component 'Lead' (in
    tegration component 'Lead') returned the following error:
    [exec] &quot;Invalid multi-select picklist value in bus comp 'Lead', field '
    ZMSPick_2'.(SBL-ODS-50637)&quot;(SBL-EAI-04376)
    Any help would be greatly appreciated!
    Best,
    James

    Hi James,
    To find out which field "ZMSPick_2", you could try going to the Lead field setup page, open the HTML source of the page, and search for "ZMSPick_2". I haven't tried it with multi-select picklists, but I know that it works for plain picklists.
    Regards,
    Alex.

  • How to make Multi Select Picklist Field Required Based on another field

    Hi,
    I want to make one filed which is Multi select Required(mandatory) based on certain value in another filed.
    I tried putting IIf([<FieldNAme>]> 1000 AND [<FiledNAme1>] IS NULL,"Invalid",[<FieldNAme>]) in the Field validatation as but it is not working.
    Please suggest any workaround available.
    Warm Regards
    Pramod
    Edited by: user11361975 on Jun 3, 2011 5:03 AM

    I guess FieldName1 is the multiselect picklist you are referring to?
    Where did you get the ITAG from? I don't see any multiselect picklists available in Expression Builder. I doubt whether you can set validations on multi select picklists at all.
    If anyone has achieved this please let me know as well.
    Regards,
    Udaya

Maybe you are looking for

  • MSI KT3 Ultra ARU PCI/AGP divider

    Hey, I'm using the overclocking features on the board, but i can't find the PCI/AGP adjustment in the BIOS, any body know what i can do?? I'm using the latest BIOS which is 5.6 Cheers

  • Artists won't show up?

    When I go to the artist menu on my iPod classic 80gb, some of the artists don't show up. Their songs are still there though because I can get to them from the album and song menus. Why?

  • How to show workflow in oracle forms

    Hi, i want to use oracle workflow in forms in my inhouse application which is in forms10r2 . could anyone tell me how can i show workflow in forms . oracle apps is using the bean area to show the work flow . any method is there .

  • CJ20N Network creation issue. Short Dump MESSAGE_X; CNPB 011

    Hello, I need your help please. We have an issue on CJ20N. We have a short dump MESSAGE_TYPE_X with error message "CNPB 011" in any way we create network on CJ20N (1/ By right click => Network or 2/ Right click => Copy network or by 3/ drag and drop

  • Order of call in java

    In the following code fragment, what is the order of call, can any of u help me? class JSC201 { static byte m1() { final char c = '\u0001'; return c; // 1 static byte m3(final char c) {return c;} // 2 public static void main(String[] args) { char c =