Activity Search Enhancement

Hi All,
I know that class CL_CRM_QACT_RUN_BTIL is triggered for activity search.
I want to know where in SPRO config is this class assigned to query object BTQAct so that it is fetched in runtime.
I wish replace this with a Z* class with custom search logic.
Thanks in advance.
Naveen

Dear Naveen,
You can refer to Maintenance View CRMV_OBJ_BTIL and mention the name of the Custom Class here against the Object BTQAct
Hope this hlps.
Thanks
Vishal

Similar Messages

  • 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

  • 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

  • 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

  • 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/

  • Full Text Search Enhancements in 2012 / 2014

    We are currently using SQL IFTS 2008 but are considering upgrading to either SQL 2012 or SQL 2014 (leaning towards SQL 2012 as it has a longer track record and more service packs).  What are the sql full text enhancements from:
    2008 to 2012?
    2012 to 2014?
    thanks

    Hi scott_m,
    Please refer to the following articles:
    SQL Server 2012 - Full Text Search Enhancements - Ability to search and filter within document properties:
    http://beyondrelational.com/modules/4/whatisnew/361/features/7090/sql-server-2012-full-text-search-enhancements-ability-to-search-and-filter-within-document-propertie.aspx
    Programmability Enhancements:
    http://technet.microsoft.com/en-us/library/cc645577.aspx
    If you have any feedback on our support, please click
    here.
    Regards,
    Elvis Long
    TechNet Community Support
    Elvis, thanks for the info on SQL 2012 full text enhancements.  I didn't see any info for SQL 2014 Full-Text Search.  Do you have any info on SQL 2014 full text enhancements?
    thanks
    scott_m

  • 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.

  • 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.

  • I do not view NPD BU under Category Tab in Activity search page

    Hi there,
    I'm using Agile PLM 6.1.1.0_Release_12
    I'm not able to view NPD BU under Category Tab in Activity search page.
    1) I created 2 NPD BU
    - Italy
    - International
    2) I created some Activity template with Italy and International as BU.
    The issue is that when I search Activity Template by Category system does not display any results.
    Moreover I'm not able to add an activity template in a project template.
    Could you kindly explain me why? I hope my question is clear.
    Thank you very much.
    Best regards,
    Stefano

    I tried this on my local 6.1.1 build and it appears to work.   Go ahead and submit an SR so support can investigate. 

  • BADI for Activity Search Results

    Hi,
    I am in position to restrict the Activity search results. Please let me know the BADI does this job. I have tried already with BADI
    CRM_BADI_RF_Q1O_SEARCH and didn't work.
    Thanks,
    Bobby

    Hi Bobby,
    Need to implement the badi CRM_BADI_RF_Q1O_SEARCH and assign the filter BTQACT for activity search.
    You need to implement the note 1232008 to get the parameters for FM CRM_BSP_OIC_1O_SEARCH_FROM_RF.
    Inside the BADI implementation use this FM CRM_BSP_OIC_1O_SEARCH_FROM_RF to get all the activities and then restrict it.
    Thanx,
    Siva.

  • 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

  • EIC- Activity search

    Hello EIC gurus,
    We are having issue on Activity search eg: , you created case(ativity) and saved it( noted activity number) then again i am trying to  search for the same activity(case) but it is not pulling in search however if we clear  system cache memeory then it is coming - Any idea? will it be indexing issue on table.
    Thanks,
    Ravi

    This is not standard behavior as we have not encountered this issues at other ERP EIC customers.  I would double check all your configuration and if you are still encountering the issue put in a customer message.
    Hope this helps.

  • Microsoft Search Enhancement Pack update error 8024000B

    I KEEP GETTING AN ERROR MESSAGE WHILE TRYING TO USE WINDOWS UPDATE ERROR 8024000B MICROSOFT SEARCH ENHANCEMENT PACK FAILED TO DOWNLOAD NOT SURE WHAT THIS IS OR IF I EVEN NEED IT.
    IN THE LIST OF INSTALLED PROGRAMS FROM WINDOWS THERE IS NOTHING LISTED FOR IT TRIED TO FOLLOW THE ADVICE ON WINDOWS WEB BUT TO NO AVAIL

    Hi
    Check this Microsoft page:
    http://windows.microsoft.com/en-IE/windows-vista/Windows-Update-error-8024000B
    Microsoft says:
    +1. Click Start, and then click Run.+
    +2. Copy the following text, and paste it into the Run text box:+
    *+Cmd /c ren %systemroot%\System32\Spupdsvc.exe Spupdsvc.old+*
    +3. Click OK.+
    +4. Run Windows Update again.+
    Good luck... hopefully this helps

Maybe you are looking for

  • Can I transfer my verizon.ne​t email address to another Verizon account?

    I currently have Verizon DSL at my home and an established Verizon email address. I am moving in with someone who has Verizon DSL service. Is there some way to transfer my email account to be a sub account of someone else?

  • Recording with iSight???

    Hello! I was wondering if it is possible to record off of my television with iSight/iMovie? Simply pointing the iSight at the TV really isn't what I'm looking for. I was hoping that there is a way I could get iSight/iMovie to work as a capture card.

  • *** Where can I buy the iPhone in Maui?

    I have a friend that's in Maui right now and wants to buy an iPhone. Does anyone know where they can get one there? No AT&T store locations though please, just an authorized reseller. Thanks in advance!

  • No Factory Layouts were found.

    I keep seeing this message in the console log from Aperture. I can't find it referenced anywhere, and I don't know what it means. it's been happening since the 2.0 days....maybe earlier...but I didn't notice it. any ideas?????

  • Aggregated Spatial Network Model

    Hi, everyone The paper posted is intended for audiences specializing in GIS and Utility Engineering. Please contact me if interested http://matchlogics.dyndns.org/MatchLogicsNew/Articles/Aggregated%20Spatial%20Network%20Model.pdf