How to search string in BSP Application?

Hi,
Report ‘RS_ABAP_SOURCE_SCAN’ is to search string in ABAP. How to search string in BSP Application?
In standard BSP Application is calling another BSP application and this hard coded in application.
Regards,
...Naddy

Hello Naddy,
7 Years later and it seems there is still no possible way to search a string in a BSP application.
Using Report BSP_EXPORT_CLASSES (Uncheck list of packages, provide BSP application name) I was able to download the complete BSP application to my desktop computer; after that I used TotalCommander (free edition) to scan the files for the string. (Mode set to UTF8)
Ugly workaround but it works.
Regards

Similar Messages

  • How user will execute the BSP application I created...

    Hi,
    I have created a BSP application which has various pages with flow logic.
    Now to execute it I use execute icon and then I get moved to web browser.
    The application is working cool.
    But what I am wondering is user is not going to go to code and use excute button to execute the code.
    So how can he do the execution of page ?

    You have lots of options (and no generally users don't go to SE80 and launch your application from there).
    1.  Give out the URL to your application. Users can launch the application directly from the URL in the browser. The URL could be stored in the Browser Favorites or as a desktop icon.
    2.  If you use the Netweaver Portal - create a BSP iView for the application and attach it to the users' role.
    3.  A BSP URL can be added as a link in the SAP Easy Access Menu.  Under favorites, just choose Insert Other Object
    4.  You can create an ABAP Transaction code. In the program under this transaction code, you could host the BSP application in an HTML Control or open it externally in a browser via CL_GUI_FRONTEND_SERVICES=>EXECUTE.  It is fairly easy to create a generic ABAP program to launch BSP application and receive the application name via a Transaction Code Parameter. You can build a specfic URL to a BSP application in code using CL_BSP_RUNTIME=>CONSTRUCT_BSP_URL.

  • How to customize a standard bsp application

    hi folks,
    i want to know what is the SAP recommended way of customizing a standard SAP BSP application. is it directly modifying the BSP application or is it creating a z application using report bsp_customize & then modifying it or is it anything else?
    thanks in advance,
    Sagar.

    if you explained what you are trying to achieve you may get a better response, this blog shows an example of how the bap app was changed.
    /people/suchita.phulkar/blog/2010/09/07/inbound-and-outbound-plugs--what-are-they-and-how-to-make-use-of-them-for-navigations-and-data-transfer-between-views-of-different-components
    There are other blogs for changing the layout, adding tables, adding fields, etc....

  • How to find where a BSP application is called?

    Hello Experts,
    I am having a reqmnt. there is this standard BSP application and we have created a Zapplication for that. now i want replace teh call to standard application to my newly created application. hence i am trying to find out whre in main application this sub application is called. how can i go about it?
    are there any tricks or tips?
    where-used did not give no returns,
    Please suggest,
    thanks,
    Hitesh

    Please try this....
    DATA: lo_ex TYPE REF TO cx_root,
                 lo_appl_ctrl TYPE REF TO cl_hrrcf_application_ctrl       .
    CHECK exist_exception( ) EQ false.
      TRY.
        Call success message
          lo_appl_ctrl = get_application_ctrl( ).
          IF lo_appl_ctrl IS BOUND.
            CALL METHOD lo_appl_ctrl->set_controller
              EXPORTING
                p_application = 'zer_XXX'   "BSP Applicaiton Name
                p_controller  = 'message_v_apne.do "Controller Class name
                p_comp_id     = 'message'.
          endif.
        CATCH cx_root INTO lo_ex. "EC CATCH_ALL
          add_exception( lo_ex ).
      ENDTRY.
    Regards,
    Ramki.

  • How to use GUI_DOWNLOAD inside BSP Application event

    Hi All,
    I am facing one issue while using GUI_DOWNLOAD inside BSP Application. When the processing goes at GUI_DOWNLOAD it gives me unknown error where as the same code is working when used in report program. My requirement is to save password into excel file at my local machine. I am using FM MS_EXCEL_OLE_STANDARD_DAT to save password in excel file but this function module fail when it reach at GUI_DOWNLOAD . Can you please help me out.
    Thanks and Regards
    Pradeep Kr. Rai

    Dear Pradeep,
    Find the below link which explains a simple data download to excel from a table view.
    www.sapt echnical.com/Tutorials/BSP/Excel/Index.htm
    Try to avoid the way your using in the BSP application and it is abdicable to use the standard methods / class available like "cl_bsp_utility"
    Hope this will be helpful.
    Regards,
    Gokul.N
    Edited by: Gokul on Oct 8, 2009 9:57 AM

  • How to create dropdown in BSP application

    Hi Gurus,
    I want to implement a dropdown listbox in my BSP application. Once the dropdown is clicked, it should show "TRUE" and "FALSE". Would appreciate if you could give me the code. This should be implemented in MVC.
    Thanks,
    David.

    Hi David...
    Try this code...in the Layout
                                <htmlb:dropdownListBox id        = "DDLB1"
                                                       width     = "100%"
                                                       disabled  = "FALSE"
                                                       onSelect  = "onInputProcessing"
                                                       selection = "<%= lw_sel_mvtyp %>" >
                                      <htmlb:listBoxItem key   = "S"
                                                         value = "Select the Option" />
                                      <htmlb:listBoxItem key   = "F"
                                                         value = "FALSE" />
                                      <htmlb:listBoxItem key   = "T"
                                                         value = "TRUE" />
                                </htmlb:dropdownListBox>
    Hope this helps.
    <b><i>Do reward each useful answer..!</i></b>
    Thanks,
    Tatvagna.
    Message was edited by:
            Tatvagna Shah

  • How to open OCI catalog(BSP application) in same window.

    Hi All,
    In EBP we are using BSP as OCI for raising a shopping cart . Currently at the home page(where links for catalogs are displayed) , when we click he link the BSP application opens in a new window.
    What changes are required that the BSP application opens in the same window and not a new window?
    Thank a lot,
    Anubhav

    Hi,
    As per the SRM_SERVER IMG Help data for external web services:
    7. Create the dialog/call structure.
    To open a Web Service in a separate window, choose Standard Call Structure.
    To open a Web Service within the application, choose Integrated Call Structure.
    Note:
    For the Integrated Call Structure of product catalogs, you should use the servlet delivered for this purpose (see post installation steps: Integrating the Requisite Catalog in the Shopping Cart).
    Syntax example:
    http://<HTTP-Server>:<port>/<your_entry>/catalog/logonOCI.do
    SAP recommends that you only use the Integrated Call Structure for the catalog delivered by SAP because external product catalogs and Web Services usually to not take the SRM-Server-specificHTML frame structures into account. If you wish to include an external Web Service, SAP cannot provide any support in the event that errors should occur.
    Regards,
    Jason

  • How do you convert a BSP application to Webdynpro application?

    Before upgrading to ECc6, we had apprisal documents in BSP application. After upgrade to ecc6 the apprisal documents are in Webdynpro. In order to view the previous year's apprisal documents, what must we do to convert this bsp application to webdynpro?

    hi Sandeep ,
    it is possible to use the BSP application inside WD ABAP or viceversa .
    u can do it by eventing through portal .
    you need to have the content admin role to ur user id on the portal .
    thn u need to create iViews for the ur web Dynpro and ur BSP application as well .
    This is required for eventing between the two applications .
    link::/people/thomas.jung3/blog/2005/12/15/portal-eventing-a-solution-for-global-peace-and-harmony
    u wud also like to see the thread :
    WD to BSP
    refer the related threads :
    http://forumsa.sdn.sap.com/click.jspa?searchID=34318618&messageID=8178488
    http://forumsa.sdn.sap.com/click.jspa?searchID=34318618&messageID=8331606
    I hope this wud help u .
    rgds,
    amit

  • How to Search strings with and without quotes

    Hello,
    I need to search a string with quote and without quote the same way
    Ex: Wendy's
    If user enters wendys without ' also need to return all the Wendy's..!
    I appreciate any help...!
    Thanks
    RG

    Hi,
    RG wrote:
    Hello,
    I need to search a string with quote and without quote the same way
    Ex: Wendy's
    If user enters wendys without ' also need to return all the Wendy's..!
    I appreciate any help...!So you want to ignore single-quotes, is that it?
    Here's one way:
    INSTR ( REPLACE (big_string,       '''')
          , REPLACE (substring_sought, '''')
          )  > 0 
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for all the tables involved, and the results you want from that data.
    Explain, using specific examples, how you get those results from that data.
    Always say what version of Oracle you're using (e.g. 11.2.0.2.0).
    See the forum FAQ {message:id=9360002}

  • How to reinstall deleted standart bsp application

    Hi guys ;
    When i was trying to delete an enhancement set in BSP_WD_CMPWB (BSP Component workbench) , accidently i deleted a standart component BTPARTNER completely.
    How can i get back its original status? is it possible to reinstall only this application?
    Note : when i go to requests , i have recovered repository.xml only  but there is no any view .
    Thanks

    Hi,
    There will be some std client like 800, 666 other then your devlopement client
    Contact with your basis people for client copy or copy to this component from std client to your devlopement client.
    Regards
    Gaurav

  • How to search Deleted SC in Application Monitor

    Hi All
    Got a question need your help.
    I'm not able to search the "Deleted" SC in Application Monitor.
    My version is 7.0
    I heard this is a BUG. Is that ture?

    DELTETED shopping cart you can see in monitor shopping cart transaction.
    it will have value ZERO .
    exactly where you are looking for monitor shopping cart or application monitor. ? which menu .
    If the requester DELETED a cart he may not see via CHECK STATUS. but Administrator can see his cart as DELETED status in Monitor shopping cart
    Muthu

  • How to call custom BSP application (copied from standard)

    Hi,
    I came across 1 interesting link in SDN.
    [Enhancement procedure of BSP application HRRCF_RECRUITER in eRecruitment]
    My requirement is also similar.
    I need to copy the HRRCF_TRM_SRCH application.
    I know how to make the changes for the logic (like copying the standard controller & iterator class etc.)
    But I donu2019t know how to call the custom BSP application.
    One requirement is, I need to call a BSP application, in which there are only UI(user interface/screen) changes .
    That is, if there are only changes made to hitlist_cand.bsp page . And no changes made to hitlist_cand.do page.
    Eg: Removing one button from screen.
    Second requirement is, I need to call a BSP application in which there are logic changes also.
    (I know how to  change the standard controller class to custom class)
    Eg: Changing logic of button.
    We tried renaming the application name from standard to custom one (with Namespace=SAP itself, though it gave a warning) in the table T77RCF_LOG_APPL .
    Then we used this name to configure the start page link. But still the execution control is going to standard page & not to custom BSP application.
    How will I know which BSP application(Appl A), is calling the BSP application (Appl B) in which I want to make changes ?
    The starting application is HRRCF_START_INT.
    Would really appreciate solutions posted.
    Thanks,
    Nisha Vengal.

    Hi Nisha,
    I think you have an issue to call custom BSP.
    -     Ignore the warning message (in the table T77RCF_LOG_APPL) as it is just a warning message. I did not touch start page link at all.
    -     Additionally you need to make (I had to made) an entry in table u2018V77RCF_SMG_NAVIu2019.
    Let me know, if you need anything else.
    ...Naddy

  • How to create BSP application

    I have created abap report. I want to convert it to BSP application. Could you please provide some guidelines or sample sites to create BSP or to convert abap report to BSP applicaton
    thanks

    To start with check this:
    http://help.sap.com/saphelp_nw04/helpdata/en/7a/b86041397211d5992200508b6b8b11/frameset.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/16/ac1e3a0088e042e10000000a11402f/frameset.htm
    And here the complete section:
    http://help.sap.com/saphelp_nw70/helpdata/en/e9/bb153aab4a0c0ee10000000a114084/frameset.htm
    Also refer to these threads :
    Creating (view, add, delete, modify) bsp application
    How to disable column in tableview
    after creating your BSP application into SE80 transaction you can refer to this useful thread:
    Re: How to update the tableview
    Here is showing how to read data in a BSP application from a DB table and how to updating lines from BSP application
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/4fbe7b8e-0a01-0010-b69b-b7e717378f22
    Full Demos:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/d46b9b90-0201-0010-ef92-9964c1bc98e1
    IC Web client
    Reward Points..

  • Calling a BSP application in ABAP webdynpro

    Hi Friends,
    Is there any chance that i can call a BSP application from WEBDYNPRO.
    regards
    Nalinikanth.

    Hi Yashpal/ Pankaj,
    I have one question regarding this.
    The usage of the UI element link "link to URL" is pretty much understandable to call a stanalone application.
    Whereas the usage of suspend and resume plugs, how does it work for BSP applications? For two WD components we can connect the plugs and it works.
    As I do not know about BSP, does it have in/out plugs like WD components?
    If so how to create the navigation link for this.
    Please explain.
    Sankar.

  • Problem in calling BSP application through portal

    Hi All,
    We have EP 2004s and we have integrated a CRM (BSP) application with it .
    CRM application is a custom application which contains two frames . The upper frame of this application is developed using BSP and the lower frame is ICWC .
    We are calling this application (BSP) in portal using a BSP iView . When calling this application using iView it gives an error as some values needs to be initialized , though all the values have been initialized in controller.
    When we are calling the same application using a browser instead of an iView it works perfectly fine .
    Can anybody explain me how does portal treats the BSP application.
    Thanks & Regards,
    Amit Kade

    The BSP is just a URL as far as the portal is concerned. Just make sure the same URL is being generated as if you called the BSP directly.
    Cheers

Maybe you are looking for

  • APP - Payment proposal incorrect

    Hello All, When we run the payment proposal  out of the 7 items below(3 credit memos & 4 invoices) only the last invoice for 4165.31 is being paid and the rest are coming in exception list, where as the expected amount to be paid should be 865.93, wh

  • Selection of data

    hi friend's, I need one logical help.  I having a database table there are some fields . Three Fields are: Year, Employee Code(Pernr), Employee Name(Ename). I m using query as following: SELECT PERNR ENAME FROM ZTRUST INTO (YEAR_ITAB-PERNR, YEAR_ITAB

  • HOW DO I GET WEB SITE TO FILL THE WINDOW?

    Various web sites I visit only fill the middle of the full open window. There is 3 or 4 inches of white space on the left and right side of the information within the open window. [it's happening here too]. I've used Safari and Foxfire with the same

  • Re DVD Studio Pro 4:  help with color saturation

    Re DVD Studio Pro 4:  having trouble with the color saturation on the text of menu buttons.  been using the same method for years, checked opacity of colors.  All of a sudden, the text color is splotchy and looks unprofessional. Clients are complaini

  • Anyway to automatically download app updates?

    i had to disable automatic app updates on my ios device as i have limited bandwidth and would want a single copy of the universal apps to be downloaded and install on all my devices which can be done only via itunes on the mac. sadly, itunes doesn't