Amplification Activity Search (BT126S_APPT) - Dropdown missing

Hi Experts,
in component BT126S_APPT I enhanced the structure CRMST_QUERY_ACT_BTIL  with three new atributes.
Field                          Name Atribute                    Component/Context Node                                                                      Objeto                          STRUCT.OBJECTIVE     BT126H_APPT/BTACTIVITYH
Motivo                          STRUCT.CONC_KEY     BT126H_APPT/BTSUBJECTF
Representación/Zona     SALES_ORG_DESC     BTORGSET/OrgSetData
Then I configured the design layer and the fields appeared in my configuration.
Then I made the coding so that the program calculates the correct amount of activities and everything is working very good but i dont see the the dropdown values.
I have read in SDN that I have to look at method GET_DQUERY_DEFINITION. Anybody has experience with that kind of problem to tell me where exactly i have to change coding?
Best Regards
Oliver

Hi Masood,
thank you for your answer but we found out what we have to do.
The most simple solution is to change method get_dquery_definitions and make a select to get the values you need to see in the search. In this example we have added the attribute ZZOBJECTIVE to the structure: CRMST_QUERY_ACT_BTIL. After that we have amplified changed the BAdI: CRM_BADI_RF_Q1O_SEARCH to get the search logic done.
For the search help for the field (in this example ZZOBJECTIVE) we have redefined the Method get_dquery_definitions to get the values into <rt_result>-ddlb_options.
METHOD get_dquery_definitions.
  CALL METHOD super->get_dquery_definitions
    RECEIVING
      rt_result = rt_result.
  TYPES:  BEGIN OF lty_ddlb,
          key      TYPE char40,
          value    TYPE text80,
          END OF lty_ddlb.
  DATA:   iv_fieldname  TYPE name_komp,
          lt_ddlb       TYPE bsp_wd_dropdown_table,
          ls_ddlb1      TYPE lty_ddlb,
          ls_ddlb2      TYPE crms_thtmlb_search_ddlb_nvp.
  FIELD-SYMBOLS: <rt_result>   TYPE crms_thtmlb_search_field_info.
*----F4-help for field 'ZZOBJECTIVE-----------------------------------------------
  READ TABLE rt_result WITH KEY field = 'ZZOBJECTIVE' ASSIGNING <rt_result>.
  IF sy-subrc = 0.
    CALL METHOD cl_crm_uiu_cust_get=>get_values_for_field
      EXPORTING
        iv_fieldname      = 'OBJECTIVE'
        iv_add_empty_line = ''
      RECEIVING
        rt_value          = lt_ddlb
      EXCEPTIONS
        error_occurred    = 1
        OTHERS            = 2.
    IF sy-subrc <> 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                 WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
   INSERT INITIAL LINE INTO lt_ddlb INDEX 1.
    LOOP AT lt_ddlb INTO ls_ddlb1.
      ls_ddlb2-key   = ls_ddlb1-key.
      ls_ddlb2-value = ls_ddlb1-value .
      APPEND ls_ddlb2 TO <rt_result>-ddlb_options.
    ENDLOOP.
CLEAR lt_ddlb.
CLEAR ls_ddlb1.
CLEAR ls_ddlb2.

Similar Messages

  • BT126S_APPT- Addition ObjecID field in Activity Search Result View

    Hello,
    In Activity Search result page, I want to show Object ID of the transaction as well. Below are the component details.
    Component : BT126S_APPT
    View: ApptSR
    In the available fields of the this view, Object ID is not available.
    Appreciate if some one can let me know step by step procedure for achieving the same
    Regards
    Yashodhan

    1) Enhance the component BT126S_APPT
    2) Enhance the view BT126S_APPT/ApptSR
    3) Add the attribute to the context node BTQRACT via the following method
    Simply add the object_id field from the BTQRact node by right clicking on the BTQRACT atttributes folder and choosing create
    attribute.
    In the wizard choose add model attribute.
    Attribute Name OBJECT_ID
    BOL Entity:  BTQRAct
    BOL Attribute:  OBJECT_ID
    Hit continue and you are done.  Now the field should be available for view configuration and you would perform that step as normal.
    No need for the complicated coding suggested above as it already exists in the BTQRAct genil/bol entity structure and just needed to be exposed.  I have done this before and is working fine in my production system with no errors on CRM 2007 SPS01.
    Take care,
    Stephen

  • HREIC Enhancement: Addition of SLA column to activity search result page

    Hi Experts,
    I am currently assigned in enhancing the activity search of transaction code HREIC_VP by adding SLA column in the output table. I debugged this BSP application and haven't found any class where the selection of data happens.
    Does anybody know what class is responsible of selecting the data to be displayed in activity search and how this is being transferred to the output table.
    Many thanks in advance,
    Larissa

    1) Enhance the component BT126S_APPT
    2) Enhance the view BT126S_APPT/ApptSR
    3) Add the attribute to the context node BTQRACT via the following method
    Simply add the object_id field from the BTQRact node by right clicking on the BTQRACT atttributes folder and choosing create
    attribute.
    In the wizard choose add model attribute.
    Attribute Name OBJECT_ID
    BOL Entity:  BTQRAct
    BOL Attribute:  OBJECT_ID
    Hit continue and you are done.  Now the field should be available for view configuration and you would perform that step as normal.
    No need for the complicated coding suggested above as it already exists in the BTQRAct genil/bol entity structure and just needed to be exposed.  I have done this before and is working fine in my production system with no errors on CRM 2007 SPS01.
    Take care,
    Stephen

  • How to sort based on my priority in Activity search view.

    Hi,
    In Activity Search category ddlb should show based on my priority order but its showing default based on ascending order based on alphabetical order. How can I assign the values based on my priority how can I archive this? I want to sort based on my values.
    Component : BT126S_APPT
    View : BT126S_APPT/ApptSQ
    CN : BTQACT
    Attribute : CATEGORY
    can redefine get_v_category in search view please guide me.
    Regards,
    Jemmi.

    method GET_DQUERY_DEFINITIONS.
    *CALL METHOD SUPER->GET_DQUERY_DEFINITIONS
    RECEIVING
       RT_RESULT =
    Method returns value help definitions of advanced search
    The method is called from the advanced search tag as a base of its operation
    Take value help definitions from cache if possible
    NO adjustments are done! - Take the operators as set in vrmc_dq
      FIELD-SYMBOLS: <rt_result> TYPE crms_thtmlb_search_field_info.
      DATA: lv_getter TYPE string,
            lv_cnode  TYPE REF TO cl_bsp_wd_context_node_asp,
            lv_operator TYPE crm_thtmlb_search_operator.
           category  TYPE REF TO cl_bsp_wd_context_node_asp.
      lv_cnode = me->get_dquery_cnode( ).
      IF lv_cnode IS BOUND.
        Delegate operation to advanced search context node
        me->dquery_valuehelps = lv_cnode->get_dquery_valuehelps( ).
        rt_result = me->dquery_valuehelps.
      ENDIF.
      LOOP AT rt_result ASSIGNING <rt_result>.
            IF <RT_RESULT>-FIELD = <category>
            DELETE <RT_RESULT>-DDLB_OPTIONS WHERE KEY '001' OR
            KEY '003' OR
            KEY '005' OR
            KEY '006' OR
            KEY '201' OR
            KEY '401'.
            ENDIF.
        LOOP AT <rt_result>-operators  INTO lv_operator.
          CASE lv_operator.
            WHEN 'NM'. "'EM' OR  'NM' OR 'SW'.
              DELETE <rt_result>-operators INDEX sy-tabix.
            WHEN 'EQ'.
              IF sy-tabix > 1.
                DELETE <rt_result>-operators INDEX sy-tabix.
                INSERT 'EQ' INTO <rt_result>-operators INDEX 1.
              ENDIF.
          ENDCASE.
        ENDLOOP.
        CONCATENATE 'GET_V_' <rt_result>-field INTO lv_getter.
        TRANSLATE lv_getter TO UPPER CASE.                    "#EC SYNTCHAR
        TRY.
            CALL METHOD me->(lv_getter)
              CHANGING
                cs_result = <rt_result>.
          CATCH cx_sy_dyn_call_illegal_method.
        no V-Getter found
        ENDTRY.
      ENDLOOP.
    ENDMETHOD.
    it's showing error Field "<CATEGORY>" is unknown. It is not contained in one of the specified tables nor is it defined by a "DATA" statement. "DATA" statement.

  • How to add Distribution channel in Activity search result

    Hi All,
    As i am new in BSP area need your help.
    My requirment is to add a ditribution Channel in activity Search criteria as well as in search result.i am done with adding a DC in search critaria but not able to understand how to add a DC in Search result.
    Component     : BT126S_APPT
    View              :  BT126S_APPT/ApptSR
    Context Node :  BTQRACT  - Under this CN there is no attribute called DC.
    To add i DC in above context node:
    1. Need to create a Z attribute in Context Node.
    2. In get method of attribute need to read the DC's attribute which entred in search criteria.how to get this value.
    Please help me to solve this issue.
    DC = Disttribution channel.
    CN = Context Node.
    Thanks,
    Shweta.

    The cleaner approach in my view could be to provide a hyperlink and when the user presses the link option you can show the partner data in the key field.So for example some body wants to see the partners for a particular Sold to Party just do allow him/her a hyperlink access.For this the end user must be aware of the functionality.
    Alternatively make this view a part of the Viewset which will contain the search & result view.When you select a particular opportunity row from the result row , you can show the partners involved in this opportunity.When no opportunity is selected you can leave the partner field blank.
    Regards
    Kavindra

  • Fill a defaults activity search criterias by user in WEBUI

    Dear all,
    I would like to limit the acces of sales managers to documents of their teams. Regarding their assigned territory:
    Re: Restrict the visualization of activities depending on territory on WEBUI
    As an alternative solution for this, I am wondering if it's possible to create a default variant (saved search for activities) by user (manager)
    Someone could help me to manage this please?
    Thank you for your time.
    Regards,

    Ahmed,
    A Web UI technical consultant should be able to do this.
    1) Create the custom field TERR_ID and add it to search criteria in Activity search through a role config key. This custom field would be called only for that role config key through some coding in DO_CONFIG_DETERMINATION of BT126S_APPT/ApptSQ.
    2) In GET_DQUERY_DEFINITIONS method of BT126S_APPT/ApptSQ, code on these lines -
          IF <RT_RESULT>-FIELD = 'TERR_ID'.
            DELETE <RT_RESULT>-DDLB_OPTIONS WHERE KEY <> <XXX>
            DELETE <RT_RESULT>-OPERATORS WHERE TABLE_LINE <> 'EQ'.
          ENDIF.
    This will default search value
    Edited by: Amar Nath on Oct 6, 2010 3:47 PM
    Edited by: Amar Nath on Oct 6, 2010 3:49 PM

  • Active Hardware Key is missing in ECC 6.0

    Hi All,
    I have an issues with my ECC 6.0 system. Once I restart my application server due to hardware maintenance. Since that time, I can't logon to my ECC 6.0 except in client 001 with user SAP*. I found in transaction SLICENSE that my active hardware key is missing...
    Could anyone help me with this problem ??
    Rewards points will be give to you who could solve this problem.
    Thank you..

    Dear,
    Do you have a license installed ? (check the slicense status)
    You may request a new license in SAP Service Marketplace at http://service.sap.com/licensekey
    Please note that as of Web Application Server ABAP 7.0 the license keys are digitally encrypted. Therefore you must request a new license key for your existing or new system if you are using a SAP product based on Web AS 7.0. Request your digital encrypted license key with license type standard and install it as described in SAP note 870871.
    I hope this helps,
    Lucio Rodrigues

  • I cant get the program to stop searching for a missing file

    i cant get the program to stop searching for a missing file

    You can uncheck the option that says automatically search for missing files in the prefernces window of Organizer.

  • Activity search page in BAM portal

    Hi All,
    How we can change the back ground color of the report in activity search page in BAM portal?
    For example :
    If i select ALL in Business Data drop down list  or
    items to show list box in activity search page of BAM portal (Like Started ,in progress,Completed and Exception of the messages in biz talk)
    Each message information in report should generate with different colors .

    Hi Vittalaranga,
    You can do that by customizing the .css file associated with the portal, for more information have a look  at Customizing the BAM Portal Configuration
    Maheshkumar S. Tiwari| http://tech-findings.blogspot.in/

  • When calling or receiving calls, after a minute or so, is the call, give notice "call failed, THEN RUNS OUT OF SERVICE, then activated" SEARCHING "and then restoring the coverage. THIS FOR THE 100% of calls

    When calling or receiving calls, after a minute or so, is the call, give notice "call failed, THEN RUNS OUT OF SERVICE, then activated" SEARCHING "and then restoring the coverage. THIS FOR THE 100% of calls

    You may have a bad sim, contact your phone carrier and see if you can get a new one.

  • Additional field on activity search view

    Hi,
    I need to add territory id on activity search view. is there any badi which i can use for this purpose to filter the result and additing the search parameter?
    Regards,
    Kamesh Bathla

    Hi,
    You can add fields to Product master using Set types morever to make this fields available to webui you have to do some more configuration. please use following tcode in seqence to achieve your requirment.
    1) COMM_ATTRSET - Maintain Set Types and Attributes
    2) CRMM_UIU_PROD_GEN - Assign Set Types to Overview Pages
    3) CRMM_UIU_PROD_CONFIG - Create UI Configuration for Set Type
    Regards,
    Dipesh.

  • Spotlight and Find search criteria is missing

    When I try to do a "find" from the finder or "show search criteria" when using spotlight most of the search criteria is missing. Nothing is listed under "other". A minimal amount of options are available is I choose "date" or "kind".
    Where is the list of search criteria stored and how can I get it back into the find feature?

    Most like a component of the Spotlight.app which resides in /System/FInder/CoreServices/. Where? I don't know. Maybe the simplest thing to do is retrieve it from your Time Machine backup or bootable backup/clone. Barring that, download Pacifist and extract it from your install disk and replace the faulty one. Once, you've done that and solved the problem, reinstall the latest COMBO update.

  • 3113: Activity 'XXPONIT/233480' is missing a function reference.

    Hello All,
    I have designed a workflow in which i have to call workflow for n number of times.
    In this workflow i have taken one notification and one function . when user submits workflow, its reached to user's parent level(1). If it approves then forwarded to function. it will check whether for that parent level(1) parent is found or not. if parent is found then it will identify the parent level(2) and sets into Attribute level(1) .
    and forwarded back to notification.
    when i am trying to run this workflow am getting the *(3113: Activity 'XXPONIT/233480' is missing a function reference.) error.
    Eg. ____________Yes_______
    | |
    v Approve | No
    Start---> Notification ------------------> function ------------------> End
    | ^
    |_____________________________________|
    Reject
    I am pasting pl/sql code here: Suggest me where i am wrong:
    create or replace package body XXPO_WF_NIT_APPROVAL_PKG is
    v_user_id number;
    v_user_name VARCHAR2(15);
    v_flag_parent_exist varchar2(1);
    v_item_key NUMBER;
    PROCEDURE WF_START_PROCESS(p_user_id NUMBER) IS
    v_initiator varchar2(15);
    BEGIN
    /*To generate Unique Value for item key*/
    SELECT XXPO_NIT_SEQ.nextval INTO v_item_key FROM dual;
    dbms_output.put_line('item key ' ||v_item_key);
    /* To create Workflow Process*/
    wf_engine.CreateProcess(itemtype => 'XXPONIT',
    itemkey => v_item_key,
    process => 'NIT_PROC');
    /* For Getting Initiator name who has initiated workflow*/
    SELECT fu.user_name INTO v_initiator
    FROM fnd_user fu
    where user_id = p_user_id;
    /*for getting next approver level user name and user Id*/
    SELECT fu1.user_name,fu1.user_id INTO v_user_name,v_user_id
    FROM per_all_assignments_f paaf1,
    fnd_user fu1
    WHERE paaf1.person_id = fu1.employee_id
    AND paaf1.position_id IN (SELECT ppse.parent_position_id
    FROM per_position_structures pps,
    per_pos_structure_elements ppse
    WHERE pps.position_structure_id = ppse.pos_structure_version_id
    AND pps.position_structure_id = 4061 /*PO Test NIT Heirarchy*/
    AND ppse.subordinate_position_id IN (SELECT DISTINCT paaf.position_id
    FROM Per_All_Assignments_f paaf
    WHERE paaf.position_id IS NOT NULL
    AND paaf.person_id IN (SELECT papf.person_id
    FROM per_all_people_f papf,
    fnd_user fu
    WHERE fu.employee_id = papf.person_id
    AND papf.current_employee_flag = 'Y'
    AND trunc(SYSDATE) BETWEEN papf.effective_start_date
    AND papf.EFFECTIVE_END_DATE
    AND fu.user_id = p_user_id/*1547*/ )));
    wf_engine.SetItemAttrText(itemtype => 'XXPONIT',
    itemkey => v_item_key,
    aname => 'INITIATOR',
    avalue => v_initiator);
    dbms_output.put_line(v_initiator);
    wf_engine.SetItemAttrText(itemtype => 'XXPONIT',
    itemkey => v_item_key,
    aname => 'ATR_LEVEL1',
    avalue => v_user_name);
    dbms_output.put_line('6');
    wf_engine.StartProcess(itemtype => 'XXPONIT',
    itemkey => v_item_key);
    COMMIT;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    dbms_output.put_line('In WF_START_PROCESS' ||SQLCODE || ':No data found' || SQLERRM);
    WHEN DUP_VAL_ON_INDEX THEN
    dbms_output.put_line('In WF_START_PROCESS' ||SQLCODE || ':Duplicate values found' || SQLERRM);
    WHEN OTHERS THEN
    dbms_output.put_line('In WF_START_PROCESS' ||SQLCODE || ':Other Exception' || SQLERRM);
    END WF_START_PROCESS;
    --====================End of WF_Start procedure================
    procedure is_comment_null(itemtype IN VARCHAR2,
    itemkey IN VARCHAR2,
    actid IN NUMBER,
    funcmode IN VARCHAR2,
    resultout OUT VARCHAR2) is
    v_comments_fst_level varchar2(200);
    v_result_fst varchar2(100);
    v_count number;
    BEGIN
    v_comments_fst_level := WF_NOTIFICATION.GetAttrText(WF_ENGINE.CONTEXT_NID,
    'COMMENT_FST');
    v_result_fst := WF_NOTIFICATION.GETATTRTEXT(WF_ENGINE.CONTEXT_NID,
    'RESULT');
    dbms_output.put_line(v_result_fst);
    IF( FUNCMODE = 'RESPOND') THEN
    IF (v_result_fst = 'REJECTED') THEN
    IF v_comments_fst_level IS NULL THEN
    RESULTOUT :='ERROR: Comment is required while rejecting the request';
    RETURN;
    END IF;
    END IF;
    END IF;
    dbms_output.put_line(SQLCODE || ':No data found' || SQLERRM);
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    dbms_output.put_line('is_comment_null'|| SQLCODE || ':No data found' || SQLERRM);
    WHEN DUP_VAL_ON_INDEX THEN
    dbms_output.put_line('is_comment_null' || SQLCODE || ':Duplicate values found' || SQLERRM);
    WHEN OTHERS THEN
    dbms_output.put_line('is_comment_null'|| SQLCODE || ':Other Exception' || SQLERRM);
    END is_comment_null;
    --===================================
    PROCEDURE Next_approver(ITEMTYPE IN VARCHAR2,
    ITEMKEY IN VARCHAR2,
    ACTID IN NUMBER,
    FUNCMODE IN VARCHAR2,
    RESULTOUT OUT NOCOPY VARCHAR2)
    IS
    v_count number;
    BEGIN
    --==============To initiate next approval workflow================
    IF( FUNCMODE = 'RUN') THEN
    SELECT count(fu1.user_name) INTO v_count
    FROM per_all_assignments_f paaf1,
    fnd_user fu1
    WHERE paaf1.person_id = fu1.employee_id
    AND paaf1.position_id IN (SELECT ppse.parent_position_id
    FROM per_position_structures pps,
    per_pos_structure_elements ppse
    WHERE pps.position_structure_id = ppse.pos_structure_version_id
    AND pps.position_structure_id = 4061
    AND ppse.subordinate_position_id IN (SELECT DISTINCT paaf.position_id
    FROM Per_All_Assignments_f paaf
    WHERE paaf.position_id IS NOT NULL
    AND paaf.person_id IN (SELECT papf.person_id
    FROM per_all_people_f papf,
    fnd_user fu
    WHERE fu.employee_id = papf.person_id
    AND papf.current_employee_flag = 'Y'
    AND trunc(SYSDATE) BETWEEN papf.effective_start_date
    AND papf.EFFECTIVE_END_DATE
    AND fu.user_id = v_user_id)));
    IF v_count > 0 THEN
    v_flag_parent_exist := 'Y';
    /* To get next approver name */
    SELECT fu1.user_name INTO v_user_name
    FROM per_all_assignments_f paaf1,
    fnd_user fu1
    WHERE paaf1.person_id = fu1.employee_id
    AND paaf1.position_id IN (SELECT ppse.parent_position_id
    FROM per_position_structures pps,
    per_pos_structure_elements ppse
    WHERE pps.position_structure_id = ppse.pos_structure_version_id
    AND pps.position_structure_id = 4061
    AND ppse.subordinate_position_id IN (SELECT DISTINCT paaf.position_id
    FROM Per_All_Assignments_f paaf
    WHERE paaf.position_id IS NOT NULL
    AND paaf.person_id IN (SELECT papf.person_id
    FROM per_all_people_f papf,
    fnd_user fu
    WHERE fu.employee_id = papf.person_id
    AND papf.current_employee_flag = 'Y'
    AND trunc(SYSDATE) BETWEEN papf.effective_start_date
    AND papf.EFFECTIVE_END_DATE
    AND fu.user_id = v_user_id)));
    --WF_START_PROCESS(v_user_id);
    wf_engine.SetItemAttrText(itemtype => 'XXPONIT',
    itemkey => v_item_key,
    aname => 'ATR_LEVEL1',
    avalue => v_user_name);
    ELSE
    v_flag_parent_exist := 'N';
    END IF;
    END IF;
    IF v_flag_parent_exist = 'Y' THEN
    RESULTOUT := 'Y';
    ELSE IF v_flag_parent_exist = 'N' THEN
    RESULTOUT := 'N';
    END IF;
    END IF;
    END Next_approver;
    end XXPO_WF_NIT_APPROVAL_PKG;
    Thanks,
    sheetal Mittal

    HI
    I believe the document that you are looking for can be found in the following location. This help file describes the NI-DAQmx Library functions, which you can use with National Instruments data acquisition and switch devices to develop instrumentation, acquisition, and control applications.
    Message Edited by jaced on 11-05-2007 12:18 PM
    JaceD
    Signal Sources Product Support Engineer
    National Instruments
    Attachments:
    NI-DAQmx C help.jpg ‏98 KB

  • Activity search display system status

    Hi,
    I want to display the system status column in the activity search results list in the WEB UI in crm 2007. This will help the users to see the activities in a particular system status when they display the activities in the results list.
    The component is CUBT126SAPPT and the view name is ApptSR.
    Any ideas,
    Dan

    Step  5:  Change the attribute methods :
                 Get_system_status : 
    try.
        try.
            dref = current->get_property( 'STATUS_SYSTEM' ). "#EC NOTEXT
          catch cx_crm_cic_parameter_error.
        endtry.
        catch cx_sy_ref_is_initial cx_sy_move_cast_error
              cx_crm_genil_model_error.
          return.
      endtry.
        if dref is not bound.
          value = 'BTQRAct/STATUS_SYSTEM not bound'."#EC NOTEXT
          return.
        endif.
        try.
            value = if_bsp_model_util~convert_to_string( data_ref = dref
                                        attribute_path = attribute_path ).
          catch cx_bsp_conv_illegal_ref.
            field-symbols: <l_data> type data.
            assign dref->* to <l_data>.
            concatenate <l_data> '-CURR/QUANT CONV FAILED-' into value
                        separated by space.                 "#EC NOTEXT
          catch cx_root.
            value = '-CONVERSION FAILED-'.                  "#EC NOTEXT
        endtry.
    * Modify in case of mass changes happened
      if gr_appt_cuco->gt_guid_name_val is not initial.
        data: lv_desc          type crmt_description,
              lv_guid_name_val type crmt_guid_name_val_comb,
              lv_guid          type crmt_object_guid.
        current->get_property_as_value( exporting iv_attr_name = 'GUID'"#EC NOTEXT
                                        importing ev_result = lv_guid ).
        read table gr_appt_cuco->gt_guid_name_val
                   with key guid = lv_guid
                            name = 'STATUS_SYSTEM'                   "#EC NOTEXT
                   into lv_guid_name_val.
        if lv_guid_name_val is not initial.
          value = lv_guid_name_val-value.
          call method cl_crm_uiu_cust_get=>get_text_for_field_value
            exporting
              iv_fieldname   = 'STATUS_SYSTEM'                       "#EC NOTEXT
              iv_value       = value
            receiving
              rv_text        = lv_desc
            exceptions
              error_occurred = 1
              others         = 2.
          if sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          endif.
          value = lv_desc.
        endif.
      endif.

  • Autocomplete in search box dropdown list fails in new version

    autocomplete in search box dropdown list fails in new version

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    Try to disable hardware acceleration.
    *Edit > Preferences > Advanced > General > Browsing: "Use hardware acceleration when available"

Maybe you are looking for

  • ITunes asking for reinstall and still won't work with win 7?

    Just installed Windows 7 Ultimate on new unwritten hard drive, when I try and open iTunes I get the message that some registry files are not available, the ones that itunes uses for CD burning/playing, please reinstall iTunes. I have done this over a

  • Creative Cloud Subscription not showing in "My Account"

    My creative Cloud Subscription is not showing up in my account. Why is this? I am being billed for it. I am moving from the USA to Vietnam next year? Will there be any issues with using my Creative Cloud subscription over there? Will there be a bette

  • Creation of product group

    hi i am creating product group using transaction code mc84 while creating product group it gives error as "The field  is defined as a required field; it does not contain an entry" I have entered Product group   PP_TEST             PP test Plant      

  • Can a Pie Chart have a variable number of slices?

    Is there a way to dynamically limit the NUMBER of slices that a pie chart shows? For instance, sometimes there might be 10 elements, sometimes 6 (last 4 are 'blank') or maybe 5 (last 5 are blank). Yes I know I can keep on reducing/increasing the Exce

  • Bizarre Cover Flow behavior

    I downloaded all the available cover art last night and this is what I woke up to: That's right -the "cover flow" display shows a screenshot of my iMac. Even weirder is that the display updates dynamically. That is, as the iMac screen changes, so doe