BSP and ABAP Search Tools

Working through the Recruitment Package that is a BSP application with abap classes I have stumbled on several situations where I need the ability to grep(search) the files in the application.  The where used appears to be buggy and sometimes it will resolve and sometimes it comes up blank.  Has anyone found any ways or tools to search the entire application code for keywords or a way to download all the abap classes and bsp pages to the file system to run grep on them?
Thanks in advance if someone has a solution this would increase my productivity quite a bit.
Thanks,
Stephen

Hi,
My article: https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/abap/finding your code in bsp applications.article
elaborates on the possibilities
Eddy

Similar Messages

  • How to create a Windows 8.1 Desktop icon from the Metro/Start and/or Search Tool?

    I'm a Desktop user, but often find myself needing to go to the Metro/Start and Search Tool to find programs and App(let)s in order to run them.  However, after doing this several times for many programs, I find myself wanting to create
    Desktop icons to run the programs more easily.  Is there a way to do this from the Metro/Start Icon and/or Search Tool results?
    If not, Microsoft, please consider adding the ability to do this.
    It would be very nice if this ability supported all of the icon types shown in the Metro/Start, Search Tool, and Control Panel interfaces, e.g.: Metro Apps, Desktop Programs, Charms, and Control Panel Applets.
    Currently, there is a way to pin the Metro/Start Icon to the Desktop, but the Taskbar will get very cluttered with even only a handful icons.
    It would be very nice if the desktop icon created by this also supported the context options that the program/app(let) now shows as Tasks when the icon is pinned to the Desktop Taskbar.
    Additionally, it would be nice if I could also simply drag a Pinned Taskbar icon onto the Desktop area, again, retaining it's Tasks as context menu options when the Desktop Taskbar icon is right clicked.
    This ability would be very helpful for people needing to get to programs and App(let)s, without having to resort the Metro/Start and Search Tool, because when there are a lot of Metro/Start icons, I have well over a hundred icons, it
    can be very hard to find one simply eye-balling lot.  The Search feature is much better, provided I know the name to look for and can remember it.
    Finally, this ability would be very helpful, because the kinds of desktop shortcut icons that I can create using the New Shortcut option, assuming that can I find the program/App(let)'s name and path information, do not support the context options
    that the icons could in Windows 7 when an icon is created while installing the program.
    Thanks,
    Howard Brown 
    hrb

    Hi Howard Brown,
    Thanks for your suggestions about Windows user experience. Actually, we are glad to hear more feedback
     about Windows operating system so that we can improve Windows to make it be more easier to
     use.
    As a suggestion for your current situation, you can use Windows Charm Bar to search Apps, it is also easy to use.
    Alex Zhao
    TechNet Community Support

  • BSP and ABAP webdynpro

    Hi wizards,
    I am planning to start working on POC (Proof of concept). This requires BSP to be integrated with ABAP webdynpro. Can some throw some light on how this integration can be done. ie sharing the context values between both applications.
    regards
    Vivek Nidhi.

    Well BSP and Web Dynpro ABAP are very different when it comes to internal architecture.  Just because they both run in a browser doesn't mean they can be integrated like you describe.  You could run both a BSP and Web Dynpro ABAP application in separate frames within the browser; however to the backend server these would be two completely separate processes running in their own memory space. 
    First of all you couldn't directly share the context values.  BSP doesn't even have the concept of a context.  You could pass some keys via URL parameters or Server Cookies. You might even be able to pass larger amounts of data.  However the eventing becomes a bit of problem.  The exception here is if you use the NetWeaver Portal.  Then you can use Portal Eventing to pass data and events between the two applications.

  • IF Form region AND report + search tool in same page THEN = problem

    Helllo everybody
    I posted an initial and now the advanced as I received helpful comments but still is unsolved:
    Problem:
    If I have a Form, and a Report With a Search feature on the same page the problem is that when I click on the button of Search to find records in the Report, the page reloads as it goes and returs to the server. Alright, however, that reloading causes the Form to submit data while there is no data because I was not working with the Form. When the report gets the "submission of the Form" it receives all empty data and it complains as it cannot have Null values in its rows.
    Solution:
    The thing would be to tell the form not to submit anything unless expressley pressed the button Create or Save. It seems that these buttons activate when the page is reloaded I mean reloaded by haiving pressed the button Search of the Reports region.
    The helpful comments were in the direction of going to Processes, Automatic Row Processing and then choosing a conditional for processing of the Form, that it, it would only activate (submit itself if that condition is met)
    So I go to PL/SQL Function body Returning a boolean and I paste this: RETURN :REQUEST IN('SAVE','CREATE');
    but the problem continues unsolved, that doesnt help. It must be very close but there is something I am missing
    thank you very much
    Alvaro
    Edited by: user12155340 on 18-Nov-2009 15:04

    Hi,
    I think this is double post.
    BUTTON CLICK ON SEARCH ITEM CAUSES OTHER REGIONS (FORM) IN TABLE TO ERRORS
    Please read my last comment from that link.
    Application express forum might give you better and precise answer.
    You need just figure out how set conditions
    http://download.oracle.com/docs/cd/E14373_01/appdev.32/e11838/concept.htm#sthref149
    http://download.oracle.com/docs/cd/E14373_01/appdev.32/e11838/concept.htm#sthref237
    Br, Jari
    Edited by: jarola on Nov 19, 2009 12:51 PM
    BTW, I remember that there was just few days ago same kind question answered in Application Express forum.
    I post link if I find it. You may try find it also

  • How to call webservices in BSP and ABAP

    I am new to use webservices.Please help me to call a ABAP Webservice in ABAP program and How to call a other Webservice like Java Webservice in ABAP.  Please give me steps to follow.
    Thanks,
    Suneetha.

    May be this prog. will give u the required info.
    Use a free web service in an ABAP program  which validates * an email-id.
    REPORT zvalidate_email.
    PARAMETERS: p_mail(100) LOWER CASE.                 " E-Mail id to be verified
    DATA: http_client TYPE REF TO if_http_client .
    DATA: w_string TYPE string ,
          w_result TYPE string ,
          r_str    TYPE string .
    DATA: result_tab TYPE TABLE OF string.
    START-OF-SELECTION .
      CLEAR w_string .
      CONCATENATE
      'http://www.webservicex.net/ValidateEmail.asmx/IsValidEmail?Email=' p_mail
    INTO
      w_string .
      CALL METHOD cl_http_client=>create_by_url
        EXPORTING
          url                = w_string
        IMPORTING
          client             = http_client
        EXCEPTIONS
          argument_not_found = 1
          plugin_not_active  = 2
          internal_error     = 3
          OTHERS             = 4.
      CALL METHOD http_client->send
        EXCEPTIONS
          http_communication_failure = 1
          http_invalid_state         = 2.
      CALL METHOD http_client->receive
        EXCEPTIONS
          http_communication_failure = 1
          http_invalid_state         = 2
          http_processing_failed     = 3.
      CLEAR w_result .
      w_result = http_client->response->get_cdata( ).
      REFRESH result_tab .
      SPLIT w_result AT cl_abap_char_utilities=>cr_lf INTO TABLE result_tab .
      READ TABLE result_tab INTO r_str INDEX 2.
      IF r_str+44(1) = 't'.
        WRITE:/ 'Valid email address'.
      ELSE.
        WRITE:/ 'Invalid email address'.
      ENDIF.

  • I cant find my imovie anywhere. ive tried finder and the search tool but its literally no where! please help :)

    Please help me find the imovie!

    it may be in the Applications folder, also try pressing  Command+ F and typing it in as
    iMovie, rather than just imovie. there is a "show path bar" option, if that helps. Double click on your hard drive, and try arranging by kind or application
    other than that, maybe stick the dvd into your dvd drive and reinstall
    I have nothing more to say
    JB

  • My search box in the upper right side of the screen changed from Google to Ebay without intentional action on my part and I have been unable to find a way to get rid of the ebay search tool and get google back.

    When I first went to do a search using the search box on the right side of the toolbar I noticed it had a different icon. It was so so small I did not recognize it as Ebay until I hit search and it was then I realized my search tool had somehow been changed. The only use my wife had made of the computer since the prior evening was to view an email from the president of a local charity sending an updated roster of officers. I did look at the user profile file and saw that it showed the profile changed as of 7:46 am which was when my wife looked at the email. I tried deleting the file but firefox would not run without it so I restored the file. Our internet security program is Avast.

    Here's a simple explanation of how to fix the problem:
    https://support.mozilla.com/en-US/kb/Search%20bar
    Worked for me today!! (Even when opening a new browser window.)
    Cheers!
    Shaunalei

  • Norton 360 tool bar and safe search no longer visible. can I get it back?

    I just installed firefox 4 foptimized for AOL and when it came back up my Norton 360 safe search tool bar and password manager were no longer present. How can I get them back?

    Symantec have released updates for Norton 360 and Norton Internet Security to make them compatible with Firefox 4, for details see http://community.norton.com/t5/Norton-Internet-Security-Norton/Firefox-4-compatibility-hotfix-is-now-available/td-p/428894

  • ABAP Query Tool - Advantages and Disadvantages

    Hi guys,
    wich are the main advantages and disadvantages of using ABAP Query Tool?
    Regards,

    Moderator message: Previous answers were rejected because they were copy and pasted from other people's work
    Hi Suresh,
    Thanks for your quick answer.
    Beyond  these advantages and disadvantages are there more that could be considered?
    Regards,
    Edited by: Matt on Mar 23, 2009 10:06 AM

  • Diff between BSP and WEBDYNPRO FOR ABAP?

    Hi All,
    can anyone let me know the Difference between BSP's and WEBDYNPRO FOR ABAP.
    Regards,
    Ravi

    Hi Ravi,
    In truth, Web Dynpro contains many of the enhancements than BSPs....like built-in value-help and select options...... they
    will become standard in Web Dynpro. But these can also be added to BSPs also.
    There are several architectural differences between BSP and WDA. WDA has some advanced features but more restrictive framework compared to BSP.
    WDA is stateful only. While BSP supports both stateful and stateless programming models.
    WDA doesn't aloow us to use our own custom HTML, JavaScript or other controls. To provide compatibility the rendering logic is completely hidden from the developer.
    On the other hand, BSP has no such restrictions and allows an extreme level of custom rendering. This makes BSP a perfect platform for applications that require pixel-perfect layout or specialized UI elements.

  • About JavaDOC view and search tool - JavaAPIHelper.

    I like the tool very much.
    Does anyone know the difference between register and unregister version?
    Thanks.

    I dont know a lot about google search but would it allow me
    to create separate boxes with variables from a drop-down menu? I am
    happy to spend a little time learning PHP etc and designing my own
    search tools but need a little advise about how to go about
    it.

  • Bug Search Tool is out of Beta and Fully Available for your use

    We are excited to announce the release of Bug Search Tool (BST), the online successor to Bug Toolkit, designed to improve our customers’ effectiveness in network risk management and device troubleshooting.
    Bug Search Tool allows partners and customers to search for software bugs based on product, release and keyword– and aggregates key data such as bug details, product, and version. Bug Search Tool reduces the time taken for product/release searches from minutes to seconds over its predecessor Bug Toolkit. The service also has provision to filter bugs based on credentials to provide external and internal bug views for the search input.
    Top New Features
    Enables input of  
    Keywords and problem description
    Product Identification (PID)
    Metadata Framework (MDF) Product Category, Series, Model, Software version and/or version type
    Retrieves customer and partner-relevant bug information with a single Bug ID as input
    Returns relevant bug summary information with a list of up to 10 Bug IDs as input
    Provides access to view the quality ratings provided by customers for the bugs and also add new reviews.
    Available Now
    This service was developed and refined in close consultation with customers and partners through advisory boards, online forums and other direct communications. 
    “I just wanted to compliment you on the new Bug Search Tool. It is fantastic. very quick, easy to use and has a well laid out GUI. Thanks for the great work!”
    Cisco Customer
    Please check out Bug Search Tool on Cisco.com or take the self-guided BST interactive tour and to learn more contact us.
    Bug Search team (Christine Woods, Deepika Vijayakumar, Sam Guemple)

    Hi Sam,
    First off, I wanted to say THANKS to the whole Bug Search team for their
    continued hard work in making BST a great online tool!!
    I wanted to add a couple of further observations on BST in addition to my
    buddy Paolo's initial comments (+5 "P")
    - Version choices in Communications Manager and Unity Connection are not honored.
    For example, if I go through Voice & Unified> IP Telephony> Unified Communications
    Platform> Communications manager> Cisco Unified Communications Manager Version 9.1
    There will be 44,535 results (????) then I have to input 9.1 again in the "Releases" box and
    I then receive the correct 754 results. So BST is not honoring the original choice of
    Cisco Unified Communications Manager Version 9.1. This is the same for all versions as well
    as Unity Connection choices.
    - IP phone 8900 series bugs are actually all listed under the 6900 series (????). If you
    don't know this trick you can never find any bugs related to the 8900 series. These are two distinct
    product lines and the bugs should be sorted accordingly.
    Cheers!
    Rob
    "Your life is worth much more than gold." 
    - Bob Marley

  • After Merging the search tool Area and Mast head ivew its giving error

    Hi Porat Gurus,
                      I have merged the Mast head Ivew with the top level tool area and  added all  the components that is required for tool area search in mast head Ivew in the lightheader page and deploying its giving error
    Portal Runtime Error
    An exception occurred while processing your request
    Exception id: 11:50_14/10/08_0008_7205750
    See the details for the exception ID in the log file.
    plz tell where do i search for this exception
    i could nt find anything in default trace
    thanks in advance
    johny

    Hi,
    Steps need to for Merging the search tool Area and Mast head iview,
    1. copy the search area properties from the tool area and paste the properties in masthead property file.
    2. copy the tool area jar in the lib folder of the tool area par and paste that in to lib folder of masthead par.
    3. copy the search area variables and methods from the tool area jsp and paste variables and methods in masthead HeaderiView.jsp file.
    4. copy the search area properties from the tool area portalapp xml and paste the properties in masthead portalapp xml file.
    Check these steps are done.i hope this will help u.
    Regards,
    Kathiresan R

  • When I open Yahoo email and try to compose an email, the Bing search tool is in the body of the email field.

    In IE I don't have the problem but in Firefox, when I open my yahoo mail and try to compose - that damn Bing search tool is right in the body of the email and I can't type an email. If I do type, my cursor size is the height and color of the Bing type which is large and light colored and you can't read the email. What a pain in the ass. Whoever is responsible for these pr0blems ought to be sent to a war zone. In their underwear.

    Acrobat Support

  • Abap Custom Tools

    HI Abap Gurus,
        Can you please guide me where to search the Abap custom tools developed on scn.sap site. I Need to Publish some ABAP Tools 
        in my organization. I am looking like Innovation Tools in Abap.
        I Tried to Search in Google and SCN.SAP Site but could not found a right Place. Can anyone Help me here.

    Then don't innovate until it is clear to you what to implement. Also a business requirement stating "We need to innovate" is a lousy business requirement. First gather the needs of the business in order to choose which path to take with regards to innovation.
    Cheers, Rob.

Maybe you are looking for

  • Using firewire with a new external backup

    I have an iMac5,1 which I believe I purchased in 2007, and I am running 10.6.8. My iMac has Firewire 400 ports as well as USB 2.0 ports. I currently have a Firewire Fantom backup which I would like to replace because it is getting old and is not big

  • Internal OS 9 boot disk

    Hi, I've got me a spanking brand new second hand 533 mhz dual CPU desktop G4, digital audio Macintosh. Frankly, I'm thrilled. It works great! It has a fresh install of 10.4.6 and 9.2.2. My older machine would not boot in OS X. This new machine will b

  • Record counter question

    Right now, my report looks like: Category           invoice number             invoice counter       A - 100---- 1 Result - 1       B - 100---- 1 Result - 1 Overall Result - 1 I know the overall result is correct, however the sum of category's result

  • Opening Java folder in MSDOS prompt

    This is what happens when I try to open my Java folder in MSDOS prompt. Could somebody plese help me? C:\WINDOWS>Java -hotspot is a synonym for the "client" VM [deprecated] The default VM is client. -cp -classpath <directories and zip/jar files separ

  • Archive and install best option ?

    Hi, I want to upgrade to leopard but what is best knowing that i noticed a minor issue in my HD when I checked ans repair autorisation? Is simple upgrade will do or should I archive and install in order to resolve the issue ? Many thanks guys Fred