Editor: Annoying pop-up for choosing main programs when searching for text

Hi,
We're upgrading to ECC60 and are getting frustrated when searching for text in a source code within the ABAP editor.
For every include contained in the main program you are searching in there is a pop-up asking to choose the main program for that include.
This can get crazy when searching in a standard SAP program such as SAPMV45A. You'll have to process through 30-40 of these pop-up windows before your search results appear. I each pop-up you have to scroll though dozens of main programs to find the one you are doing the search in.
Can this be turned of somehow to have the search functionality work as it did in previous version, where the Editor knows that the program you are launching the search from is the main program you want the results from?
Thanks,
Peter

HI Peter
Please check if program: <b>RPR_ABAP_SOURCE_SCAN</b> can help you...
Regards
Eswar

Similar Messages

  • Shutdown of itunes program when searching for music. How to fix this proble

    I have a problem with itunes. When I go into the itunes store and search for music it shows the loading bar at the top that shows its progess and when it is finished a screen pops up that says "iTunes has encountered a problem and needs to close. We are sorry for the inconvenience" and itunes closes. I have tried to change settings but nothing works.

    ^ I did everything you said except download the new itunes (I have dialup and can't tie up my phone line for 4 hours) and nothing is different.
    When I send the error report it "says" that apple has a solution for the problem and it provides a link provided by apple (which by the way is crap and just sends you to the store which has 0 solutions to this problem). I try to look through the help files but it is extreemly anti-helpful.
    If no one can help me then can someone please post the phone number to the support line for apple products (another thing they forgot to put anywhere in my ipod manuals which is stupid).
    Thanks
    (sorry if I sound ****** off but I am cus I baught an Ipod but I can't even use itunes)

  • Infopath form for sharepoint 2013 lags when searching for person or group.

    Dear all,
    After implementing a infopath form on sharepoint, the search for person or group column lags when I search for someone the second time. (The first time won't lag). Is there a fix to this? And is there a way to modify the search for person or group function
    to sharepoint OOTB person or group search? I think the OOTB one is a lot better. Thanks all.
    Timothy Liu

    Have a look at this thread which discussed a same question:
    http://social.msdn.microsoft.com/forums/sharepoint/en-US/c55f4245-b2b0-410b-94fc-2afd1ef80da8/preventing-users-from-editing-other-users-infopath-forms
    thanks,
    Flynn

  • Why do we need to point at main program when activating include?

    Hi There Abapers,
    Just a quick question, because I faced such issue when implementing OSS notes.
    When activating objects I am asked to point out the main program for one of includes changed.
    This inclde is used in ~30 programs.
    As far as OSS note doesn't say a word about main program in fact I am not able to check it, I need to pick random program from a list up.
    The question is...
    Why do we need to point at main program when activating include as we are only changing the sub-object (include)?
    Will this 'random main program selection' bring some negative effects in the future?
    Will be thankful for some expert opinion
    Kind Regards,
    P.

    You should check all main programs when activating an include, to make sure that all main programs are still syntactically correct even with the changed include.
    Thomas

  • During installation of Adobe Photoshop Lightroom 4 the program is searching for msvr100.dll which is not available in windows 7 files. What to do?

    During installation from DVD of Adobe Photoshop Lightroom 4 the program is searching for msvr100.dll which is not available in my Windows 7 files. What to do?

    This provides those files Error "Unable to start correctly - 0Xc00007b"

  • Can we know buffers used for a particular program?(not for the instance)

    Can we know buffers used for a particular program?(not for the instance)

    You can do a runtime trace using ST01 but you won´t find out how much buffer a program "uses" since the buffer is shared for all workprocesses.
    Markus

  • My group box is causing problems when searching for a text line in a text file.

    I am developing a booking system, so for this I need to ensure that no two clients can book the same appointment slot. So, on testing my code which prevents double booking, the system doesn't seem to find the text line being searched for in the text file
    when it (purposefully) should.
    I have tried isolating the problem using breakpoints, and I've found that when the 'SearchLine' (referring to my code below) does not include the 'TimeComboBox.text' piece and instead this value is written into the code, the system is able to find the SearchLine
    without any problems. But, when assigning the group box's value to a variable and using this in the SearchLine instead, or without even using a loop and just doing a simple line by line search, the program can't find this line of text in the file.
    I'm lost for ideas. I have tried everything I can think of. Could anyone make any suggestions as for what is the problem with my group box? (I'll explain the code beneath it).
    'Setting the value of the SearchLine (which is a String)
    SearchLine = String.Concat(DateTimePicker1.Value.Date & " " & TimeComboBox.text)
    Dim FoundApp As Boolean
    Dim objReader As New System.IO.StreamReader(basicfilepath & "Text Files\Client Booked Appointment DatesTimes.txt")
    FoundApp = False
    'Reading the file's contents and checking for the SearchLine
    Do While (objReader.Peek() <> -1) or (FoundApp = True)
    If (TextLine = SearchLine) Then
    'Line contains SearchLine. Appointment already exists.
    FoundApp = True
    Else
    'Line doesn't contain SearchLine. Carry on searching.
    Msgbox("Line not found.")
    End if
    Loop
    Explanation
    When the line is searched for, the 'FoundApp' value must be set to 'True' when it is found. If it is not found, it remains false.
    To isolate the problem, I've displayed the SearchLine in a message box in the past to make sure that the correct line of text is being searched for.
    In basic terms, my program is searching for the exact line of text which exists in the text file, but for some reason it is not coming up as 'Found'. The error occurs when the group box's value is used. The text file which is being read is
    definitely correct. Please help, any suggestions would be appreciated.
    Thank you

    Hi
    It would appear that your snippet doesn't actually read the file at all.
    Here is my test which works fine.
    Option Strict On
    Option Infer Off
    Option Explicit On
    Public Class Form1
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles Me.Load
    Dim SearchLine As String = "18:09:38 : XTaskSettings.Load PARAMS: begin"
    Dim FoundApp As Boolean = False
    Dim TextLine As String = Nothing
    Dim objReader As New IO.StreamReader(Application.StartupPath & "\Data\Report Q1.txt")
    FoundApp = False
    Do While (objReader.Peek() <> -1) Or (FoundApp = True)
    ' this was missing
    TextLine = objReader.ReadLine
    If (TextLine = SearchLine) Then
    'Line contains SearchLine. Appointment already exists.
    FoundApp = True
    MsgBox("Line found.")
    Else
    'Line doesn't contain SearchLine. Carry on searching.
    MsgBox("Line not found.")
    End If
    Loop
    End Sub
    End Class
    Regards Les, Livingston, Scotland

  • The following error occured when searching for on-premises exchange server

    I look after a company where I installed a new DELL server last year, The server is running Windows Small Business Server 2011 which we installed. Exchange 2010 was installed as part of the Windows Small Business Server 2011 installation. At the time we
    did not configure Exchange because they use external POP accounts for email. Eventually they wanted to move over to Exchange
    When we created the user accounts using Windows SBS Console, it created a local mailbox for each user
    No problems - [email protected]
    Since late last year every time I create a new user within SBS Console, it errors creating the mailbox
    Add a user account and assign a user role
    Getting "Unexpected error occurred" when Setting up an e-mail account for user
    Looking at the error "Unexpected error occurred" & MessagingManagement "Unexpected error occured"
    The user account is created ok just no e-mail address is created for the user
    I never thought much about this at the time as we weren't using Exchange email accounts. I decided to have a look at this issue over weekend
    When I try to open Microsoft Exchange Management Console I'm getting "Initialization failed"
    The following error occurred when searching for the On-Premises Exchange server
    When I try to open Microsoft Exchange Management Shell, I get a similar error
    I've download & run EMTShooter which just identifies there is an error & gives me the same error
    I've installed & re-installed WinRM IIS Extensions
    I've checked all the settings in IIS, Default Web Site, PowerShell, Modules & Paths...
    Still cannot connect to Exchange
    I've trawled through the internet for two days checking & testing every solution but no luck
    I've checked every setting against another Windows SBS 2011 Server we've installed & works
    I cannot find a difference
    Can someone help me or point me in the right direction?
    Peter Ralphs

    Thanks for the reply Cara
    Here's the original error I was getting when opening Exchange Management Console
    Initialization failed
    The following error ocurred while searching for the on-premises Exchange server:
    [server.myd.local] Connecting to remote server failed with the following error message : The WinRM client cannot process the request. It cannot determine the content type of the HTTP response from the destination computer. The content type is absent or invalid.
    For more information, see the about_Remote_Troubleshooting Help topic. It was running the command 'Discover-ExchangeServer -UseWIA $true -SuppressError $true -CurrentVersion 'Version 14.1 (Build 218.15)
    I got similar error when trying to access the Exchange Management Shell
    VERBOSE: Connecting to SERVER.myd.local
    [server.myd.local] Connecting to remote server failed with the following error message : The WinRM client cannot process the request. It cannot determine the content type of the HTTP response from the destination computer. The content type is absent or invalid.
    For more information, see the about_Remote_Troubleshooting Help topic.
        + CategoryInfo : OpenError: (System.Manageme....RemoteRunspace:RemoteRunspace) [],                          
    PSRemotingTransportException
        + FullyQualifiedErrorId : PSSessionOpenFailed
    When I opened the Exchange Management Console this week, the error had changed slightly
    Initialization failed
    The following error ocurred while searching for the on-premises Exchange server:
    [server.myd.local] Connecting to remote server failed with the following error message : The WinRM client received an HTTP server error status (500), but the remote service did not include any other information about the cause of the failure. For more information,
    see the about_Remote_Troubleshooting Help topic. It was running the command 'Discover-ExchangeServer -UseWIA $true -SuppressError $true -CurrentVersion 'Version 14.1 (Build 218.15)
    I could only run Exbpa from a command prompt (obviously no access from Exchange Management Console)
    This is the result of the Health Check Scan
    Organization: First Organization
    Default Global Address List Changed
    The 'msExchQueryFilter' attribute of the default Global Address List 'Default Global Address List' has been changed. Default: '(Alias -ne $null -and (ObjectClass -eq 'user' -or ObjectClass -eq 'contact' -or ObjectClass -eq 'msExchSystemMailbox' -or ObjectClass
    -eq 'msExchDynamicDistributionList' -or ObjectClass -eq 'group' -or ObjectClass - eq 'publicFolder'))'. Current: '((Alias -ne $null) -and (((ObjectClass -eq 'user') -or (ObjectClass -eq 'contact') -or (ObjectClass -eq 'msExchSystemMailbox') -or (ObjectClass
    -eq 'msExchDynamicDistributionList') -or (ObjectClass -eq 'group') -or (ObjectClass -eq 'publicFolder'))))'.
    Admin Group: Exchange Administrative Group (FYDIBOHF23SPDLT)
    The default public folder database is remote
    The default public folder database for mailbox database 'Mailbox Database' on server SERVER isn't local. Public folder database: CN=Public Folder Database 1529293969,CN=Databases,CN=Exchange Administrative Group (FYDIBOHF23SPDLT),CN=Administrative Groups,CN=First
    Organization,CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=myd,DC=local.
    Server: SERVER
    Disk timeout changed
    Disk timeout on server SERVER.myd.local is not set at the default of 10 seconds. This is normal if third-party storage software is installed. Current timeout value is 160 seconds.
    Client RPC binding found
    The 'Rpc_Binding_Order' is set on server SERVER.myd.local. It is possible that either the Exchange or Outlook client is installed on the server. Current registry value: ncalrpc,ncacn_ip_tcp.
    One thing I've noticed from the start is that the error occurs when it is "searching" for the Exchange Server, it then goes on to name the server [server.myd.local] it knows it's there but cannot access it ?
    Another thing I've noticed is that it always refers to the "remote server" this server is Windows SBS 2011, it's the Domain Controller, DHCP Server, DNS Server & Exchange Server all in the same box
    I also noticed that the Health Check stated that "The default public folder database is remote"
    Has this something to do with it ?
    Regards
    Peter

  • Can't find my iweb domain file when searching for it in iweb seo tool

    I am trying to get my iweb website recognized by Google. Can't seem to get the google html code to work in html snippet. So am now trying to use the iweb seo tool but can't find my iweb domain file when searching for it in iweb seo tool. My file is in user/library/applicationsupport/iweb/name.sites2
    It shows in the folder but is not active, so I can't choose it.

    The SEO ftp client is not what I'd recommend using. Once you add the metadata to a local copy of the files use a 3rd party ftp client like the free Cyberduck to upload the files. Much more reliable.
    Google does not use keywords for it's searches although other search engines do. Create a test page on your site (leave it out of the navbar) and try adding Google Analytics to it with Wyodor's instructions. If you get it to work then all you need to do is copy and paste the HTML snippet from the test page into your site pages.
    For information on visitors to your site you can also use StatCounter. It records the number of visitors and a lot more: where they are from, what browser used, which page visited and what site/page then came from for just a few. SC is easy to add to the pages as you get the code for your account, put it in an HTML snippet add the snippet to each page. Old Toad's Tutorial #13 - Adding a StatCounter as an HTML Snippet describes how to do it.
    Again use a test page or a separate test site to work out the details before adding to your site pages.

  • Is it just me, or is this NOT how the new iTunes store is supposed to look when searching for a song, TV show, or app?

    Take a look...that's just weird! When searching movies it looks fine, but when searching for songs, TV shows, or apps, this is what you get. Notice all the DI6 and SF6? I mean I know iTunes 11 just came out and all, but THIS kind of surprised me. Wanted to see if I'm the only one seeing this or if others see it too.

    Ok, Apple has fixed it now

  • Authorization check when searching for transactions

    Hi all,
    We have a requirement to show only those activities for which a user is authorized. A custom authorization object has been maintained and the check in CRMD_ORDER has been extended accordingly. When opening an activity, the check is executed correctly, but when searching for activities, ALL activities are still shown, so the check is not performed at that particular moment. I have tested with standard authorization objects as well, but none of them are taken into account. Does anyone of you know how we can have the authorization check executed before or during the search, so that only those activities are shown, that the user may maintain as well.
    Thanks in advance!
    Regards,
    Joost

    Hello Joost,
    Check if BADI CRM_ORDER_INDEX_BADI could not map your requirement.
    Regards,
    Frédéric

  • Error when searching for entries in secure store

    Hi All,
      I need to assign the certificate in the sender agreement  for signature verification and decrpting. So when i search for entries, i am getting the error as " Error when searching for entries in Secure Store".
    Details of the Error is showing as:
    Service call exception; nested exception is: com.sap.engine.services.webservices.jaxrpc.exceptions.InvalidResponseCodeException: Invalid Response Code: (401) Unauthorized.
    What is the reason for the above error and how to rectify it..?
    Suggest some useful solution
    Regards
    Prakash

    Hi All,
      Can anyone suggest some ways to rectify the error, as i am not able to  find solution for the error in the
    forum.
    Regards
    Prakash

  • TS4147 contact address not visible although data is present when searched for

    I'm trying to view address information on an existing contact record but it is not showing,  When searched for, it returns the relevant record but the data is still not visible.   All contact info has been reduced to just phone no, email and notes.Help!

    Hi Vetsrini,
    Many thanks for offering to help. It has just been solved. It was a typo in the XML of the name of the column.
    Doh! Obvious now that I know!
    - Jenny

  • Creating new selection criteria when searching for PR

    Hi,
    Need help. i want to add selection criteria when searching for a Purchase Requisition (PR).
    Currently, when u go to ME52N/ME53N, and you click on 'Other Purchase Request' then you click on F4 the following option are only available when searching for some criteria of PR.
    Purchase Requisition per Asset
    Purchase Requisition per Requirement Tracking Number
    Purchase Requisition per Services
    Purchase Requisition per Purchasing Group
    Purchase Requisition per Order
    Purchase Requisition per Cost Center
    Purchase Requisition per Material
    Purchase Requisition per Network
    Purchase Requisition per Project
    Purchase Requisition per Sales Document
    my intention to add option perhaps like :
    Purchase Requisition per Requestor (the one who created the PR)
    Purchase Requition per Short Text
    How can i achieve this? Thanks in advance.
    She

    Hi ,
    Goto OS52. Press F4.
    Enter thedevelopment class as ME.
    Select MBAN, then Enter .
    Click on Included Search Helps.
    You need add your search.
    Explain your requirement to ABAP team . They will help u in updating the search help.
    Regards
    Ramesh Ch

  • On iOS 8.3 there is no keyboard shown when searching for contacts on Contacts tab

    I've updated my iPhone 5C to 8.3 and now I can't use the keyboard when searching for a contact from the Phone app. Using the Contacts app the keyboards works well. No 3rd party keyboards were installed. Anybody else having this issue?
    Cheers,
    Tamas.

    Okay, several reboots solved the problem

Maybe you are looking for