CRM PC UI how to access simple search on the top of applications

Hi,
     I need to change the simple search option available on top of Opportunity, Account, Activity applications.
Can somebody guide me on how can I access the simple search content in crm PC UI.
Thanks,

Hi,
I actually already tried things that you suggested.
There are two drop down fields available on simple search in Activities.
1) Show : with "blank", "My Favorites", "My activities for today" and a lot of other options.
2) Get : with "Description","partner", "transaction number" and so on.
I want to know where this drop down field values "My Favorites", "My activities for today" and so on are coming from?
Any Ideas?

Similar Messages

  • How to use glob search with the wildcard in command find?

    How to use glob search with the wildcard in command find?
    I want to find any file its names begin with "readme" string using command find. Why the following command cannot work?
    $find /usr/share/doc -name readme*
    However, the following commands can work?
    $find /usr/share/doc -name readme\* or
    $find /usr/share/doc -name readme'*'
    I want to know: After using the “\” or ' ', why the wildcard do not become a character "*"?(still a metacharacter).
    Another question:
    I want to find any file its names begin with "readme*" string using the command find.What command should I use?

    I want to know: After using the “\” or ' ', why the
    wildcard do not become a character "*"?(still a
    metacharacter). The backslash is known as an escape character. It means 'use the character value of the next character, not the special meaning' It is used in a lot of places such as command line, global regular expression patterns, and editors such as vi.
    In a typical shell, the splat (*) expands to all file names before passing the file names to the current command. So a \* sequence tells the shell to pass a *, not a list of file names, to the command.
    Demo - OpenSuSE Linux 10.3
    - I have a bunch of files. Let's list those that end in grid. Create one called *grid, and list again
    pops@fuzzyVM:~/pops> ls 
    a  b  c  startgrid  stopgrid
    pops@fuzzyVM:~> ls *grid
    startgrid  stopgrid
    pops@fuzzyVM:~> ls \*grid
    ls: cannot access *grid: No such file or directory
    pops@fuzzyVM:~> touch '*grid'
    pops@fuzzyVM:~/pops> ls
    a  b  c  *grid  startgrid  stopgrid
    pops@fuzzyVM:~/pops> ls *grid
    *grid  startgrid  stopgrid
    pops@fuzzyVM:~/pops> ls \*grid
    *grid
    pops@fuzzyVM:~/pops>In the above, how would I remove the file *grid, and only that file?
    Another question:
    I want to find any file its names begin with
    "readme*" string using the command find.What command
    should I use?What were the results of the two versions you tried? And why?

  • HT4993 my iphone4 says searching in the top left corner how do i get it to stop and get my service back?

    my iphone4 says searching in the top left corner and i can not make calls or get calls how do i fix it so i have my service back

    you can try a reset, hold down the home/sleep button until you see the apple logo and then release, then wait fro the phone to boot back up.
    if that doesn't work contact your cell provider

  • How do you "power search"on the new  itunes?

    How does one power search on the new itunes? Is it still possible?

    In addition, since that search window is part of the iTunes' Main Page, I have to wait for that page to load before I can do my search. Before, I could click on the Power Search link, and it would abandon the load and bring me to the Power Search page. Now, since the Main Page takes so long to load, I have to wait for that to finish before I can search.
    In other words, I have to wait for iTunes to show me what it wants me to buy, before I can tell it what I want to buy.
    Kinda like going into a record store and getting a saleman who tries to sell me the latest hits before he will listen to what it is I came in to buy. The attitude is completely wrong.

  • How to hide Saved Searches in the header area of web ui

    Hi All,
    My Query Is how to hide Saved Searches in the header area of web ui.
    For This is there any configuration or we have do through the code.
    Thanks & Regards,
    Venkat

    Another approach:
    Open view CRM_WORKAREAHDR/WorkAreaHeader and change the configuration. There is a button in the bar named "Attributes" (probably hidden under MORE).
    Once in there in edit mode substitute the content of attribute "UI_COMPONENT_3". It should be
    Window=CRM_ALLSEARCHES.CRM_ALLSEARCHES/LauncherWindow;horizontalAlignment=right;
    put there a
    Width=0px;
    The other way using business role is fine as well.
    cheers Carsten

  • Can someone tell me how to access Illustrator CC on the cloud. I currently have CC 2014 but I do not want to use it since it is extremely slow for me.

    Can someone tell me how to access Illustrator CC on the cloud. I currently have CC 2014 but I do not want to use it since it is extremely slow for me.

    The Cloud is a delivery process... you still install the program(s) on your computer, and then pay a subscription fee to use the program(s)
    Cloud Plans https://creative.adobe.com/plans
    -and subscription terms http://www.adobe.com/misc/subscription_terms.html
    -Cloud status check 30-or-99 days https://forums.adobe.com/thread/1549838
    OR buy the 3 year old version which is a one time payment Creative Suite 6

  • How to sending simple text in the mail body

    Hi friends,
                 How to send simple text in the mail body through ABAP code
       plz send me the related code and setting for that mail.
      Thanks&Regards,
      Srinivas

    try this...
    FORM send_file_as_email_attachment .
      DATA: objtxt LIKE solisti1 OCCURS 10 WITH HEADER LINE.
      DATA: objpack LIKE sopcklsti1 OCCURS 2 WITH HEADER LINE.
      DATA: objhead LIKE solisti1 OCCURS 1 WITH HEADER LINE.
      DATA: reclist LIKE somlreci1 OCCURS 5 WITH HEADER LINE.
      DATA: objbin LIKE solisti1 OCCURS 10 WITH HEADER LINE.
      DATA : i_body TYPE soli_tab WITH HEADER LINE.
    DATA: it_attach LIKE it_display1 OCCURS 0 WITH HEADER LINE.
      DATA: doc_chng LIKE sodocchgi1.
      DATA: tab_lines LIKE sy-tabix.
      DATA: att_lines TYPE i.
    DATA: lv_lines TYPE i.
      DATA: file TYPE string.
      data: g_datum like sy-datum.
      data: g_datum1(10) type c.
      DATA: len TYPE n.
      LOOP AT it_email.
        CLEAR : objpack,
                objhead,
                objbin,
                objtxt,
                reclist.
        REFRESH: objpack,
                 objhead,
                 objbin,
                 objtxt,
                 reclist.
        g_datum =     sy-datum - 1.
        concatenate g_datum6(2) '.' g_datum4(2) '.' g_datum+0(4) into
        g_datum1.
    doc_chng-obj_descr = 'Aged Stock more than 45 Days'.
        CONCATENATE 'Aged Stock more than 45 Days' '-' it_email-vkbur INTO
        doc_chng-obj_descr.
        CONCATENATE 'Please find enclosed Aged Stock Details ( >45days ) report as on'
        g_datum1
        INTO objtxt-line SEPARATED BY space.
        APPEND objtxt.
        objtxt-line = ' '.
        APPEND objtxt.
        objtxt-line = 'Regards'.
        APPEND objtxt.
        objtxt-line = 'LIS SAP Projects'.
        APPEND objtxt.
        objtxt-line =
        'PS: Pls send feedback for futher improvements to SAP office.'.
        APPEND objtxt.
        DESCRIBE TABLE objtxt LINES tab_lines.
        READ TABLE objtxt INDEX tab_lines.
        doc_chng-doc_size = ( tab_lines - 1 ) * 255 + STRLEN( objtxt ).
       CLEAR objpack-transf_bin.
        objpack-head_start = 1.
        objpack-head_num = 1.
        objpack-body_start = 1.
        objpack-body_num = tab_lines.
        objpack-doc_type = 'TXT'.
       objpack-obj_name = 'Run_prog'.
       objpack-obj_descr = 'Agestock.txt'.
       lv_lines = tab_lines.
        APPEND objpack.
    *CONCATENATE 'Plant'   'Material Number' 'Qty(More than 45days)'
    *'Amount' INTO
           it_display SEPARATED BY space.
           append objbin.
           clear: objbin.
        CLEAR:it_display2.
        REFRESH it_display2.
        it_display2-werks = 'Plant|'.
        it_display2-matnr = 'Material Number'.
        it_display2-qty = '|Qty > 45 days'.
        it_display2-amount = '      |Amount'.
        APPEND it_display2.
        it_display2-werks = ''.
        it_display2-matnr = ''.
        it_display2-qty = ''.
        it_display2-amount = ''.
        APPEND it_display2.
        CLEAR : it_display2.
        sort it_display1 by amount descending.
        LOOP AT it_display1 WHERE werks = it_email-vkbur.
         AT FIRST.
    *CONCATENATE 'Plant    '   'Material Number' 'Qty(More than 45days)'
    *'Amount' INTO
           objbin-line SEPARATED BY space.
           append objbin.
           clear: objbin.
         ENDAT.
          CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT'
            EXPORTING
              input  = it_display1-matnr
            IMPORTING
              output = it_display1-matnr.
          it_display1-qty = TRUNC( it_display1-qty ).
          MOVE-CORRESPONDING it_display1 TO it_display2.
          APPEND it_display2.
          CLEAR:it_display1,it_display2,objbin.
          CLEAR:it_display1.
        ENDLOOP.
        objbin[] = it_display2[].
        DESCRIBE TABLE objbin LINES tab_lines.
        objhead = 'Suug'.
        APPEND objhead.
        objpack-transf_bin = 'X'.
        objpack-head_start = 3.
        objpack-head_num = 1.
        objpack-body_start = 1.
        objpack-body_num = tab_lines.
        objpack-doc_type = 'RAW'.
        objpack-obj_name = 'Run_prog'.
        objpack-obj_descr = 'Agestock.txt'.
        APPEND objpack.
        reclist-receiver = '[email protected]'.
        reclist-rec_type = 'U'.
        APPEND reclist.
    =====================================================================
        CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
          EXPORTING
            document_data              = doc_chng
            commit_work                = 'X'
          TABLES
            packing_list               = objpack
            object_header              = objhead
            contents_bin               = objbin
            contents_txt               = objtxt
            receivers                  = reclist
          EXCEPTIONS
            too_many_receivers         = 1
            document_not_sent          = 2
            operation_no_authorization = 4
            OTHERS                     = 99.
        CLEAR : it_email.
      ENDLOOP.
    ENDFORM.                    "send_mail
    Message was edited by:
            Sugumar Ganesan

  • HT201263 MY I 4S  CUTS OFF IN THE MIDDLE OF THE DAY FOR NO REASON. IT WON'T TURN ON UNLESS I PLUG THE USB INTO COMPUTER. THEN THE PHONE HAS "SEARCHING " AT THE TOP LEFT SCREEN.BATTERY IS 64% NOW AND SOFWAER IS UP TO DATEN

    MY I4S PHONE CUTS OFF IN THE MIDDLE OF DAY FOR NO REASON. IT WILL NOT TURN BACK ON UNTILL I PLUG THE USB INTO THE COMPUTER. THEN IT HAS "SEARCHING "  AT THE TOP LEFT PART OF THE SCREEN. BATTERY IS 64% RIGHT NOW.   IT DID THE SAME THING YESTERDAY SO I DOWNLOADED THE IOS61.1  AND IT SAYS IPHONE SOFTWARE IS UP TO DATE.  ANY IDEAS

    Nothing happened, i managed to get my computer to recognise it and now restoring... but it says 3 hours remaining?! Will i lose everything?

  • My iPhone says Searching in the top right hand side and has been like this for 2 days. Already had a replacement sim yesterday, still not working. Apple advised me to restore my phone by connecting to iTunes. When trying to do this it's not allowing

    My iPhone says Searching in the top right hand side and has been like this for 2 days. Already had a replacement sim yesterday, still not working. Apple advised me to restore my phone by connecting to iTunes. When trying to do this it's not allow

    Are you on a Windows PC? Do you have anti-virus software running on it? Here are some help articles for you to troubleshoot with:
    Resolve iOS update and restore errors
    Resolve iOS update and restore errors in iTunes

  • Hello guys i trust you are well .my phone keeps saying searching in the top left hand corner where my cellphone providers name is supposed to be ,this has happened before but i just connected it to the pc to restore but this time it hung up half way.help

    hey guys i trust you are well .my phone has a problem where it says searching in the top left corner where my service providers name is supposed to be ,it has done this before i fix it by connecting to itune on my pc this time it got stuck in setup mode and cannot find a activation server.and itunes says it cannot fix the problem and i should contact support hence this message please help .thank you in advance

    Hey jay_bek,
    Thanks for using Apple Support Communities.
    If you encounter no signal or searching on your iPhone, follow these steps to try to resolve the issue.
    iPhone: Troubleshooting No Service
    http://support.apple.com/kb/ts4429
    Turn your iPhone off, then on again.
    Remove the SIM card and verify that it's a valid, carrier-manufactured SIM. Also verify that it isn't damaged, worn, or modified. Then reinsert it.
    Have a nice day,
    Mario

  • I installed LR CC , but when i try launching it flashes & it is gone. I tried the solution in the Adobe Site - which says search for the folder Library/Application Support/ Adobe/ Sl Store ...., but i can't seem to find the SL Store or SLCache folders ( i

    I installed LR CC , but when i try launching it flashes & it is gone. I tried the solution in the Adobe Site - which says search for the folder Library/Application Support/ Adobe/ Sl Store ...., but i can't seem to find the SL Store or SLCache folders ( i use the Mac). Only then can i apply the solution. I just cant seem to find the folder in the first place

    That did not work for me & as per adobe site help if signing out does not help- we are supposed to go the above folders & do some additional steps, but i could not find the folders & hence the question

  • Could you please tell me how to delete a bookmark on the top of page (it has a space for four bookmarks). Thanks

    Could you please tell me how to delete a bookmark on the top of page (it has a space for four bookmarks). Thanks

    To delete a bookmark from your bookmark toolbar, point at the bookmark with your mouse or trackpad, then right-click on it (press the right-hand button on your mouse or trackpad) and choose "Delete" from the pop-up menu.
    For other ways of deleting bookmarks, see '''[[Deleting Bookmarks]]'''.

  • How to get Drafts Mailbox at the top rather than in ON MY MAC

    My wife is switching from Entourage to Mail and I can't get her set up the same as I have been in Mail for years. At the top of the left panel I have Inbox, Drafts, Sent and Trash, with sub listings for each of my mail accounts, followed by SMART MAILBOXES and ON MY MAC. My wife has the same except for the Drafts and its sub listings. Instead, she has several Drafts Mailboxes (1 for each email account) under ON MY MAC. How do I get Drafts at the top as I have it?

    Then it may be that by some action, some existing Drafts mailboxes were found, and Mail moved them to the On My Mac section.
    Has she yet in Mail composed a message, clicked on Save as Draft before sending, and checked to see if that has been saved in newly created Draft mailbox in the location you expected?
    Ernie

  • PSE 11 won't fit screen can't access slider bar at the side of application

    PSE 11 won't fit screen can't access slider bar at the side of application.

    What OS?
    What screen display settings do you have?
    Try changing the screen display settings in Windows or OSX to increase the resolution?
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children
    If this post or another user's post resolves the original issue, please mark the posts as correct and/or helpful accordingly. This helps other users with similar trouble get answers to their questions quicker. Thanks.

  • Why does my iphone steady say "searching"...i erased everything and now it wont activate because it says "Searching" in the top left corner

    Why does my iphone steady say "searching"...i erased everything and now it wont activate because it says "Searching" in the top left corner..PLEASE HELP ASAP!!!

    1. Close all inactive apps in the Task Bar. Double-click the Home button and hold apps down for a second or two. Tap the minus sign to close app.
    2. Hold the Sleep and Home button down for about 10 seconds until you see the Apple Logo.

Maybe you are looking for

  • Problem with code: reading a string

    Hi, I am very new to java so excuse my naivety. i need to write some code which will decode an encrypted message. the message is stored as a string which is a series of integers which. Eg. Nick in this code is 1409030110 where a = 1, b = 2,... and th

  • Oracle 9.2.0.8 Binary Data Problem

    Hi Folks, need some advice from the experts here about an error I got yesterday while installing a (Java-based) Software at a customer using Oracle 9.2.0.8. While being able to work with the database most of the time, I get an error when trying to sa

  • HDMI to VGA output possible (or will I get HDCP errors)?

    Hello. Does anyone know if it's possible to use an HDMI-to-VGA cable with the ATV (gen2)? I purchased an ATV for my parents and they can't use it as every time they go to play a movie rental or stream Netflix, they get an HDCP error saying "the conne

  • Employee as like vendor?

    Hi to all, i have 2 questions 1) where we can assign employee as an vendor and how vendor number mapped with emp pernr? 2) what are the info types shold be delimited while doing leaving action? Thanks i

  • In GarageBand how can I record a mono source into both stereo channels?

    I am working on a project that has only 1 track (Casio keyboard plugged into my Mac's audio input). This obviously, results in a mono recording using the left channel only. Is there any way to copy that track into the right channel, so at least the r