CRM 5.0 - IC WebClient - BP Search Term 1 - Method

Hi Gurus
Does anyone know of a SAP Standard Method to retrieve Search Term 1 for the Business Partner (Customer). I want to display the value in the Identify Account View
Thanks
Panduranga

Here Are the steps which I did and tested the new QUERY in transcation GENIL_BOL_BROWSER, it is working fine. I am yet to change BSP level.
I followed the instructions in the IMG(CRM> CRM Cross applicationComponents>GenIL > Component Specific> Extend Object model for business partner) to extend the search.
To implement your own search, for example, new search parameters, or to filter the search results by your own criteria:
1. Create a new structure ZCRMST_HEADER_SEARCH_BUIL   as copy of CRMST_HEADER_SEARCH_BUIL and add the new fields to the new structure.
2. In Object Definition, define a name(ZBuilHeaderSearch) for the new search query and assign the new structure(ZCRMST_HEADER_SEARCH_BUIL) name to the new object, also enter ROOT object "BuilHeader".
3. Create a class ZCL_BUIL_HEADER as subclass of CL_BUIL_HEADER.
4. in IMG again assign this class to the external object name.
5. Implement GET_RESULT_TABLE method in ZCL_BUIL_HEADER class with the following extra code apart from existing code in the super class.
  Data:   lv_sort1  type bu_sort1,
          lv_sort2  type bu_sort2.
  lv_sort1 = ls_header_search-search1.
  lv_sort2 = ls_header_search-search2.
pass above two parameters to 'TREX_BUPA_SEARCH' Function module which is present in the GET_RESULE_TABLE method.
6. Test your query in the GENIL_BOL_BROWSER.
I am getting correct result.
regards,
Laxman

Similar Messages

  • Duplicate check on search term for BP creation in CRM

    HI,
    I want to do a duplicate check on search term for BP creation in CRM.
    i found one BADI ADDRESS_SEARCH. But the method address_search is not getting called.
    Is there any other BADI available? how can I handle this issue?

    hello,
    BP is BDT (Business Data toolset) enabled (you can check it by adding break point in FM BUS_PBO and executing BP transaction). You can add your check directly to standard view (the check will be executed each time when user pushes enter) or you could add you check to appropriate action (during saving etc.) there are number of actions which you could use it depends on your requirements. You can find a lot of info about BDT (if you are not familiar) in Wiki.
    br,
    dez_

  • BAPI to search for customer in CRM based on search terms

    Hi,
    Could anyone please tell me if there is a function module in CRM to search for BP's based on search terms. ( Just as we could enter '*' in search terms in transaction BP and get a list of customers ).
    Thanks in advance,
    Sahil

    Hi Sahil,
    You can make use of BAPI_BUPA_SEARCH.
    In the import parameter CENTRALDATA you can pass the
    search terms.
    Ranjit

  • CRM - transaction BP - length of search term 1/2 (adress)

    Hey,
    I'm working on CRM, transaction BP. I've 2 roles for customer : person and organisation.
    Search term 1/2 is 20 caracters long.
    But, it seems to be possible to do customizing on search term. For example, in my environnemnent, customer person may have 20 caracters long search term ; but customer organisation must have less than 10 caracters (there is an error message if I put a more than 10 caracters search term).
    Could you tell me how in customizing I can control length of search term ?
    Thanks
    Baptiste

    Hi,
    I dont think there is any customizing for this change in length. You can instead to achcek of length in dchck event of BDT.
    Smita.

  • "Search Term" fields in SU01

    Hi experts,
    Issue concerns my CRM 6.0 back end system. Here, I have a requirement to pull out a list of all users created without any value in field "Search Term 1"  under Adress tabI found an old thread from some years back which says this field is not part of any user tables as it fell under address management back then:
    SU01 Search Terms
    Does anyone have knowledge on how I can run this query? SUIM, change history etc has no option to do a user search on this field. I checked out most of the user tables (USR*) and none of them also have this field "Search term 1" in them.
    Also for some users on the same system this field is not visible alltogether (No header in SU01 --> Address which shows "Search terms" at all).
    I am a little confused. Any help would be great....
    Edited by: Soumya-Thomas on Mar 3, 2011 9:56 AM

    Hi Julius,
    Just noticed your answer to my thread, this is what I did:
    Table ADRP - got a list of all users (on field PERNR) with field value Search term1 (SORT1) against eahc user.
    Table USR21 - mapped the above PERNR value to user name here.
    Thus got a list of all usernames + Search Term1 (SORT1).
    Also, i didnt really use authority checks against the field Search Term.. may be it is used soemwhere, but i didnt get into that; since my mission was only to make sure that a set of users (as per our policy) were all created with specific reasons entered in "SU01 --> Search Term1" during user creation. For me it was a user master data updation task.
    Soumya

  • CRM 4.0 IC webclient to CRM 2007

    Hi
    Currently we are on CRM 4.0 using IC Webclient for our call centre. Around 30% of development done in BOL layer programming to suit the business requirements.
    Now we are planning to upgrade to CRM 7.0 with IC Webclient
    Can anybody help us in providing information and precautionary measures to be considered for upgrade.
    Regards
    Satish Kumar

    Hi,
    just wanted to stress that even than BOL/ genIL is still compatible it has been significantly increased especially around the advanced and saved searches and some more new features like a generic "text-for-key" support service to facilitate UI development.
    The biggest change however that you might experience in the BOL layer is, however, the complete BOL support of all CRM objects including all sub objects, relations and attributes. So the enhancements that you have done in your 4.0 project might not even be necessary anymore unless you've introduced completely new objects. Also fields you added via EEW will be available in the respective BOL objects without manual code effort.
    On the UI layer itself you have to be aware that even though the whole CRM 2007 UI is based on the same UI framework as CRM 4.0 IC WebClient, this framweork has been significantly enhanced and supports now also concepts as components (to organize, structure and manage different areas of the CRM application), reuse via components and windows etc. Also there are two new sets of tags: THTMLB (Low level UI controls such as input fields, tables and trees) and CHTMLB. The latter one contains eta tags for configuable views that allow the adjustment of views via the configuration tool, which allows defining fields and arrangement on a form or a table as well as re-labelling.
    Also the toolset in general has been heavily enhanced and there's also the concept of modification-free enhancements on the UI layer based on inheritance.
    The upgrade will be "technical" meaning that all your stuff will survive but due to the componentization of the UI framework will not run out of the box in the new environment. You will have to "re-do" investments you've done on the UI side - however this should be much easier compared to 4.0 due to configurability of the UI and the improved toolset.
    I hope this information helps to get an idea what you can expect.
    Edited by: Peter Conrad on Apr 23, 2008 5:09 PM

  • I am having a big problem with entering search terms in Google

    Here is the problem. I enter several search terms and do a search. So far, so good.
    After I am finished clicking on one or more links I return to the Google search page to do a new search.
    Since most of the words are the same, except the last one or two, I backspace over the old words and start entering the new ones.
    Then very strange things happen much of the time.
    1. It may restore the old words (the ones I already backspaced over and erased) and put my new words behind the old ones.
    2. It may just restore the old words, that had been backspaced over, completely removing the new words I had just typed in.
    Any ideas why this keeps happening? Is it Google or Firefox causing the problem?
    It seems very strange that words that had been backspaced over (erased) magically reappear as if I hadn't removed them.
    Thank you.

    What is the problem?
    Does send work?
    Receive?
    Error messages?
    Does the account work on other devices?
    DId it ever work on an iOS device?
    Did yo Google for the setting to use?
    DId you delete the account on the iPod and tried again?

  • Is there a way to block inappropiate search terms in Safari on an iphone or ipad?

    I want to block certain search terms on the iphone and ipad that my son uses. Is it possible to do this in Safari on these devices?

    Hi there Heather NY,
    You may find that the Parental Controls in iOS accomplish what you are looking to do. See the article below for more information.
    iOS: Understanding Restrictions (Parental Controls)
    http://support.apple.com/kb/HT4213
    -Griff W.

  • How do I link to a HelpID or a Search Term without any programming, through a URL?

    I have looked through the documentation, and it seems that every "possibility" to call either a search term or a HelpID/CHSID for my documentation is to use some sort of API.
    Is there a way to call the search function and CHSIDs directly by only typing a URL in a browser (or link from another page, or from an email, etc etc)?
    I'd actually like to know for all 3 outputs I am potentially going to be using: WebHelp, WebHelp Pro (RoboHelp Server 9) and HTML5, as I'm not sure yet which form it will take at the software release.
    Thanks!

    Hi OL-Lachance
    A couple of items I would add to Willam and Colum's comments.
    At the present time, WebHelp Pro (the Rh Server 9) does not support HTML5 output. WebHelp on a conventional web server is fine.
    In terms of the odd terminology for CSH, the term MAP Number or Map ID, generally refers to a unique number that is assigned to a topic so that it can be referred to in the application calling the help. The Topic ID is generally an alphanumeric string which is often the name of the topic title connected by underscores. Depending on the language of the application, sometimes only the Map number or sometimes only the Topic ID is used. Or, as you have learned, sometimes neither one is used and a URL is used instead!
    You and your developers may also find these topics helpful in the RoboHelp online help which can be downloaded here:
    http://help.adobe.com/en_US/robohelp/robohtml/robohelp_11_help.pdf
    Look at Chapter 11 for some interesting specifics on the many ways to call CSH. Of course the links mentioned in Willam's and Colum's posts are excellent as well.
    John Daigle
    Adobe Certified RoboHelp and Captivate Instructor
    Evergreen, Colorado
    www.showmethedemo.com

  • In a Google search, clicking on a search result causes the new page to open with the search terms highlighted in yellow -- how can I turn off th

    In a Google search within a Firefox session, clicking on a search result causes the new page to open with the search terms highlighted in yellow -- how can I turn off this highlighting?

    Try to clear the Google cookies and redo those Google options.
    * "Remove the Cookies" from sites causing problems: Tools > Options > Privacy > Cookies: "Show Cookies"

  • The boxes where I would type in search terms and URL are GONE! So is the BACK BUTTON. HELP!

    I downloaded software to convert jpg files to pdf's, and it worked. however, I think it installed Incredimail, and I suspect that it installed Ask.com - neither of which I wanted. It was just after that that my back arrow and my boxes where i type in search terms and urls DISAPPEARED! Firefox is compatible with some important websites and has features that i need. NEED.

    Make sure that you do not run Firefox in Full Screen mode with all toolbars hidden.
    * Press F11 to toggle full screen mode (Firefox/File > Full Screen)
    If the menu bar is hidden then press the F10 key or hold down the Alt key, that should make the menu bar appear.
    Make sure that toolbars like the "Navigation Toolbar" and the "Bookmarks Toolbar" are visible: "View > Toolbars"
    * If items are missing then open the Customize window via "View > Toolbars > Customize" or via "Firefox > Options > Toolbar Layout" (Linux, Windows)
    * If a missing item is in the toolbar palette then drag it back from the Customize window on the toolbar
    * If you do not see an item on a toolbar and in the toolbar palette then click the "Restore Default Set" button to restore the default toolbar set up.
    See also:
    * http://kb.mozillazine.org/Toolbar_customization
    * https://support.mozilla.com/kb/Back+and+forward+or+other+toolbar+items+are+missing

  • Search Term in Search Help for SAP Users - su01

    Hello ,
    we want to use the search Term fields in the user data. (T-Code SU01)
    As I read in the F1 help, these Fields should be available in the F4 Matchcode for Users?
    But there is no field available? Any Ideas?
    SAP ECC6.0
    SP Stack 13
    Regards
    Tobias Werner

    When you open the User data with t-code su01 , there are 2 fields named "Search Term 1/ 2".
    huh?.... not really following you. when you open user data in SU01 you see well... the user data.
    Regards
    Juan

  • Search Term Issues when passed as Parameters in Opening a PDF file in Browser (Updated)

    Hi everyone,
    I am wondering if there is a solution to the following issue.
    We are working with PDF files that have been OCRed (invisible text layer). We use a search engine to search the PDFs for terms. We then pass the search terms as a parameter to the PDF when we are opening it in Acrobat or Reader in the browser. It brings up a list of instances and the context in which it is found -- much like the native search function -- but it is not possible to only search for the exact phrase when it is passed as a variable..
    In some cases, what we see are two lists -- so it has the filename with a list underneath that is expanded showing search results, and then a second instance of the file name after that list, but it is collapsed.
    Is there a way to just have one list or both lists expanded at the same time?
    Also, is there a way to ensure that it shows instances where more search keywords are found at the top of the list.
    For example, if we pass the search phrase "wanted to buy a car" it might show instances of "to" at the top of the list, but later on in the collapsed list it might show instances of "buy a car".  Again, is it possible to prioritize the results, or at the very least, expand everything? I am not sure what else we can try.
    thank you,
    Jeremy
    Follow up: I should note that some times the two lists appear to be the same or similar terms found twice. At the top it would say 2 documents with n instances (where n is the number of instances). I have noticed this when the search keyword count goes up.
    Follow up #2: It appears that this occurs more often when using more than 2 keywords, but I have seen it happen with only 2 words.

    There were documents available in the knowledgeable that I no longer have the urls for. I have had communication with Adobe Acrobat support personnel that have made the same statements. I do not have the habit  of asking official Adobe tech support people to prove their statements by providing documentation. I have also seen Adobe employees give presentations on computers that have had both installed. When they were asked about the incompatibility, they did say the equivalent of phooey. However, enough people on this forum have had their problems disappear when they have removed one of the two programs that I feel comfortable giving that advice. Yes some people have no problems running both until one of the programs or a system component gets updated and then things stop working. My advice is not to have both on the same computer. When two programs share system calls and can fight over who gets to handle the call it makes sense that it can cause a problem. It doesn't make a difference if it is Reader and Acrobat or any two other programs you run. If you are not having a problem with running both GREAT. However, if you are running both and have a problem, it is a simple step to eliminate one and see if the problem disappears.

  • Error when submitting a search term

    Hi,
    I use SAP EP6 SP6 together KM SP6 and WebAS 6.40 and TREX 6.01.
    I'm implementing a repository manager for a CMS, and everthing works fine within the KM browser.
    When I enter a search term and press the submit button, the following error message is displayed
    com.sapportals.wdf.WdfError
         at com.sapportals.wdf.WdfCompositeController.buildComposition(WdfCompositeController.java:678)
         at com.sapportals.htmlb.AbstractCompositeComponent.preRender(AbstractCompositeComponent.java:32)
         at com.sapportals.htmlb.Container.preRender(Container.java:118)
         at com.sapportals.htmlb.Container.preRender(Container.java:118)
         at com.sapportals.htmlb.Container.preRender(Container.java:118)
         at com.sapportals.htmlb.rendering.PageContext.render(PageContext.java:924)
    --- Nested WDF Error -
    java.lang.NullPointerException
         at com.sapportals.wcm.control.search.SearchDialogControl.readConfiguration(SearchDialogControl.java:831)
         at com.sapportals.wcm.control.search.SearchDialogControl.createNestedControls(SearchDialogControl.java:270)
         at com.sapportals.wdf.stack.Control.create(Control.java:274)
         at com.sapportals.wdf.stack.Pane.createControls(Pane.java:464)
         at com.sapportals.wdf.stack.PaneStack.createControls(PaneStack.java:479)
         at com.sapportals.wdf.stack.Pane.createControls(Pane.java:458)
         at com.sapportals.wdf.stack.PaneStack.createControls(PaneStack.java:479)
         at com.sapportals.wdf.WdfCompositeController.doInitialization(WdfCompositeController.java:268)
         at com.sapportals.wdf.WdfCompositeController.buildComposition(WdfCompositeController.java:659)
         at com.sapportals.htmlb.AbstractCompositeComponent.preRender(AbstractCompositeComponent.java:32)
         at com.sapportals.htmlb.Container.preRender(Container.java:118)
         at com.sapportals.htmlb.Container.preRender(Container.java:118)
         at com.sapportals.htmlb.Container.preRender(Container.java:118)
         at com.sapportals.htmlb.rendering.PageContext.render(PageContext.java:924)
         at com.sapportals.htmlb.page.DynPage.doOutput(DynPage.java:237)
         at com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:109)
    This also happens when I undeploy my repository manager application, so I don't think that this has something to do with my code. Also I'm not really sure if the search ever worked, since I tried it the first time to test if my repository manager content is indexed and found in the portal's search.
    But when looking at the stack trace it seems to me that only standard rendering and configuration components belonging to the search iView are involved.
    Does anyone have an idea where that error comes from and what might be done to get it working?
    Thanks for any hint!
    Regards
    Torsten

    Hi Torsten,
    this seems to be a real standard problem. Could you open an OSS to this error and put the Java StackTrace on it. This would be very helpful.
    Thanks and regards,
    Thilo

  • Vendor master data-sensitive field search term 1

    Hi
    Incase of Vendor master data ,i have defined search term 1 AS SENSITIVE FIELD.
    When i change the master data i.e  search term 1 sometimes it asks for change confirmation and sometime it doesnt.
    Can you pls let me know why does this happen..that too for few vendors any logic.

    resolved

Maybe you are looking for

  • Suddenly Cannot Connect to the Internet - ASA 5505

    Hi there I have a test network after my firewall at home Firewall -> ASA5505 -> My test network I have internet from my Main firewall I can ping 8.8.8.8 and 139.130.4.5 (NSL.telstra.net) from my console interface but from rest of my ports (Vlan 2) I

  • Receiving Duplicate emails on shared Mailbox

    We are using Exchange Server 2007 and outlook client is Outlook 2010. We are not using PST concepts(that is mails downloaded to local copy and remove from the Server). one of the shared mailbox is accessed by many people and they are receiving duplic

  • Is Silverlight supported by OS X Mavericks

    I am trying to use the Odnance Survey Getamap web based mapping software.  It is written in Silverlight and it works fine under Mountain Lion.  However under Mavericks it fails to print or import or export routes.  I get an error message telling me i

  • Process chain gives error when activating

    Hi, I created a process chain, nothing spectacular. I am going to fill a Cube using an infopackage, this is a delta update infopackage. Anyway, so my process chain is done and I activate it, and I get the following error message: "InfoPackage ZPAK_EY

  • Unable to deploy BPEL from JDeveloper 10g in Vista

    Dear Experts, When deploying bpel process from JDeveloper I am getting the following errors. Note: I am using Vista. Both Application server & JDeveloper versions are synchronized . My versions are Oracle Application Server SOA suite 10.1.3.1 & JDeve