Does System Maintains Objects related to one BSp Application

Hello Friends ,
Does SAP System maintians anything anywhere which can help us to know all the objects related to one BSP apllication??
Say My application has few function modules , their function groups , Any Table type used or other indepent Dictionary objects used in my application.Does System Maintains this history at any place??
or is there any other way to know??
Regards,
AShwini

Hi ,
For a BSP Applicatiopn, the Function modules and Function groups are accessed normally as we do in any other ABAP Program, so you c an find them in SE37.
Also for Dictionary objects and table types, you can find them in SE11.
Hope this helps.
<b><i>Do reward each useful answer..!</i></b>
Thanks,
Tatvagna.

Similar Messages

  • Passing data from one bsp application to another

    Hi,
    I have few queries that most of you would have done in ur projects:
    1. I want to pass data from one bsp application to another:
    eg based upon selected row of table view which populates material no and descriprion to another application which open the entire material master data.
    Now, i have both the pages in diff bsp applications in place but unable to pass the selected material code to the second bsp application.
    Had it been two different pages of same application I was able to achieve it with set parameter()
    2. To stop the application from reprcessing the data:
    eg: Suppose I have a bsp page where user fill details of a customer and on submitinng the details a customer is created in background and the entire page is disabled by my code. Even now if the user press refresh (F5) button then another customer gets created in the background. So basically i want to avoid the reprocess of the onSubmit event
    Few lines of sample code would be very helpful.
    Best Regards,
    Saurabh Tripathi

    Hi,
    When I am writing the following code in appl1/page1:
            export abc from transactionID
            to data buffer lv_page_data.
            CALL METHOD CL_BSP_SERVER_SIDE_COOKIE=>SET_SERVER_COOKIE
              EXPORTING
                NAME                  = 'TRANSACTIONID'
                APPLICATION_NAME      = RUNTIME->application_name
                APPLICATION_NAMESPACE = RUNTIME->application_namespace
                USERNAME              = ls_name
                SESSION_ID            = runtime->session_id
                DATA_VALUE            = lv_page_data
                DATA_NAME             = 'lv_page_data'
    and following code in appl2/page2:
      CALL METHOD CL_BSP_SERVER_SIDE_COOKIE=>GET_SERVER_COOKIE
        EXPORTING
          NAME                  = 'TRANSACTIONID'
          APPLICATION_NAME      = RUNTIME->application_name
          APPLICATION_NAMESPACE = RUNTIME->application_namespace
          USERNAME              = ls_name
          SESSION_ID            = runtime->session_id
          DATA_NAME             = 'lv_page_data'
        CHANGING
          DATA_VALUE            = lv_page_data
       IF lv_page_data IS NOT INITIAL.
         IMPORT abc to transactionid
           FROM data buffer lv_page_data.
       ENDIF.
    still the code doesn't work. Please explain and guide
    Best Regards,
    Saurabh Tripathi

  • Why does Labview hang when switching from one TestStand application to another?

    I have several 2013 TestStand applications that use a number of LabView 2013 VIs on a test computer.  When the operator closes one TestStand program and opens another often Labview does not close properly and so when TestStand tries to load the LabView VIs it hangs or just runs and every test that is affected by LabView fails.  The only potential issues that I know about are that two of the applications were created in LabView 2009 and then updated to 2013.  Then two other TestStand applications that were created in 2013 use the function "UnloadAllModules". 
    Are there any known issues with LabView 2013 that cause this or any ideas of what I might be doing wrong?
    Solved!
    Go to Solution.

    Hello Michael,
    I did find my issue.  In my case a VI was not getting closed properly in cleanup due to the previous command not passing the handler out correctly.  Thus this VI would remain open and when I ran another TestStand Sequence, when it tried to load that LabView VI it would just hang.  But the result of this error could be seen when I closed TestStand and LabView stayed open (since it was frozen) or when done running the sequence and closing it.  Then if you tried to pop-up LabView it would not show the starting splash screen because it had froze.
    I found the problem by turning on the show VI front panel option in TestStand for all of the VI calls.  The VI that stayed open was the problem VI.
    Thanks everyone who responded for your help!
    Kurtus

  • System copy - BSP applications launching with old host name

    Hi
    After system copy, when we test any bsp application, a new window is opened in the internet explorer with the old Web server hostname. These bsp applications are not launching with the new server name.
    I checked all the ICM settings and they all fine.
    Is there any database table which has the old web server entries?
    Regards
    Chandu

    Resolved by ourselves.  Deleting the contents in table HTTPURLLOC fixed the issue.
    Regards
    Chandu

  • Cookbook on developing BSP applications

    Hi,
    Is there any document on developing BSP applications?. If so can you please forward it to me.
    Thanks,
    Shailaja

    Hi Paul
    I think we are off-topic a bit now :).
    The blueprint tables are only for one BSP application - CRM_BSP_FRAME.
    This is a special BSP application.
    It provides a structure so that you can access any CRM object but in a uniform and familiar way.
    The blueprint tables allow you to specify what CRM objects are available and which data is presented.
    They do not allow you to change:
    1. the structure (ie the patterns: Search at the top, then Object header, then Object Detail)
    2. the graphic design or theme
    Regarding (1) - you can't change it. You can't put the search at the bottom or something like that.
    Regarding (2) - well, that potentially could be changed by altering the CSS and mimes that CRM_BSP_FRAME uses. Use SE80 to change the application. You are now on your own - there is no guide for doing so, you just need to know web design skills.
    Cheers
    Dom

  • Data entered by ITS application partly not available at BSP application

    Environment:
    We have an old ITS application to enter absences and presences to SAP HR.
    And we have a new BSP application to delete absences and presences.
    Both applications are available for the employee in an employee self service, that has an navigation developed with BSP.
    Problem:
    All data entered with the ITS application, could not be deleted in the BSP application, if the user does not log off. Or until he deletes one dataset, that he did not entered after the current login. If he deleted one old dataset, all new datasets can also be deleted.
    The ITS application stores the data with the function HR_MAINTAIN_MASTERDATA.
    The BSP application deletes the data also with the HR_MAINTAIN_MASTERDATA function.
    But its strange, that I can read the newly entered data with select from the Database or the function HR_READ_INFOTYPE. But when the users selects this dataset, the BSP class currently read, the HR_MAINTAIN_MASTERDATA cant delete, because of the message "no data in timeperiod". Even the function 'BAPI_ABSENCE_GETDETAIL' reads the data.
    Seems to be some kind of buffer problem. Reading the data is possible, but trying to modify/delete does not work.
    Also this did not help:
    *using more commit works.
    *Try to initialize buffers with the functions "HR_INITIALIZE_BUFFER", 'HR_PSBUFFER_INITIALIZE', "HRPAD00_FREE_PLOG_TAB" or "HR_PSA_CLEAR_BUFFER"
    Trying to delete the absences with the function 'BAPI_ABSENCE_DELETE' instead of the HR_MAINTAIN_MASTERDATA function (without DESTINATION and with DESTINATION 'NONE').
    Does anybody has an idea, why my BSP application works fine with all datasets, entered before the current login, but can not delete datasets I newly entered (but I can read them, I only cant delete them!). And what is more strange: after I delete on old dataset, then I can delete also the new datasets!

    Is your provisioning profile for Development or Ad-Hoc distribution?
    Also, it would help if you posted a screenshot of you target settings as well as your Info.plist file.

  • Language conversion in BSP application

    In SRM system I am converting a standard BSP application to custom BSP application.
    So i copy the standard BSP application to new application in "Z" namming-space.
    My query is - the standard BSP application is in 'DE' language, how to convert to "EN" language.
    Please help

    If standard program using the OTR/text-elements, you can translate from one language to another.
    Search this forum how to translate the ORTs.
    If standard program is NOT using the OTR/text-elements, then replace the normal text ot OTR or text element and translate.
    Raja

  • Uploading BSP application into the portal

    Hi friends,
       Can anybody please tell me how to upload BSP application into the portal.i.e.,as how the Par file is getting uploaded into the portal.
       I have created one BSP application.Iwant to run this  application into the portal.
    Thanks and regards
    sireesha

    Dear Mr. esukapelli,
    you do not need to upload the BSP application into the portal. The BSP application is an application which runs on the backend system, where it has been created.
    What you need to do is to create a BSP iview in the portal in order to call it on the backend server. In this iview you tell which system it is running on, and the application name. Check out: http://help.sap.com/saphelp_nw04/helpdata/en/30/1b62799d786445a72ad85acb4fd55b/content.htm for help on how to create it on EP6.0
    Make sure you create a system for the backend system in the portal. If you want Single-Sign-on between the BSP application and the backend, you need to configure SSO as well.
    Best regards,
    Jørgen

  • BSP Application Problem

    Dear All,
    I have one BSP application when I am running on the portal with SP6 it's working well,
    When I worked in Portal SP16 it's not working I debug the both servers parallel I didn't find any bug.
    I test the settings of both applications and configuration.
    every thing is same but application is not working in Portal with SP 16
    Any body can help me please.
    Thanks
    Regards,
    Venkat

    Hi,
       Myself Deep, wants your help.
       I am creating a SAP BSP iView for BSP Application in Portal which is working fine in R/3. I had selected a SAP BSP iView, then clicked on Next, then I had given the name as bsp_test and id too as bsp_test. Again clicked on Next choosed BSP from BSP and BSP Alias. Then specified the System as IDS,Customer Namespace as sap, Application Namespace as sap, Application as the name of the BSP same as I created in R/3 ie tutorial_1 and Start Page as default.htm . After that clicked on Next, a BSP iView is created, but on clicking the Preview a pop-up comes displaying "Page Not Found". Please tell me is there any setting is needed or something else to do.
    With Best Regards
    Deep

  • How to generate the output of a BSP application in PDF format?

    Hi,
    I need to modify one BSP application, which generates its output in the form of PDF. I have checked all the methods in the bsp pages and its corresponding controller class's. I couldn't find any relevant method, which deals with generating the output in PDF.
    Could you please share your valuable thoughts on this?
    Again it would be helpful, If anyone of you share some knowledge on Interactive Adobe Forms.
    Thanks,
    John

    >
    I am using oracle version 11.2.0.1, I have set a cronjob which will run on every 15 minutes and give us a log file mentioning the execution time taken for that SQL query:-
    The above query will return the output as well as the time taken for execution of the query. I want to suppress the output of the query and only want the time taken to be printed. Is it possible by set commands. I have marked the output as bold and made it Italic.
    >
    How would that even be useful?
    A query from a tool such as sql*plus is STILL going to send the output to the client and the client. You can keep sql*plus from actually displaying the data by setting autotrace to trace only.
    But that TIME TAKEN is still going to include the network time it takes to send ALL rows that the query returns across the network.
    That time is NOT the same as the actual execution time of the query. So unless you are trying to determine how long it takes to send the data over the network your 'timing' method is rather flawed.
    Why don't you tell us WHAT PROBLEM you are trying to solve so we can help you solve it?

  • How to generate the output of BSP application in PDF format?

    Hi,
    I need to modify one BSP application, which generates its output in the form of PDF. I have checked all the methods in the bsp pages and its corresponding controller class's. I couldn't find any relevant method, which deals with generating the output in PDF.
    Could you please share your valuable thoughts on this?
    Again it would be helpful, If anyone of you share some knowledge on Interactive Adobe Forms.
    Thanks,
    John

    okay, awesome
    i'd use DOM or some high level API for this (don't write it by hand using plain File IO)
    okay, try this site, it goes through building a document, adding elements, writing to file, etc.
    http://www.roseindia.net/xml/dom/

  • User NOT able to login again to BSP application after logging off

    Hi Experts,
    What the user is doing?
    Step 1: User logged into BSP Application. Result: Successful login
    Step 2: User logged off from BSP Application. Result: Successful log off
    Step 3. User again tries to log into BSP Application with correct login credentials. Result : LOGIN FAILURE
    What is being displayed onto the screen after step 3?
    1. Login screen does not changes.
    2. It does not show any error/warning messages.
    3. Next screen, after login screen is NOT being displayed.
    What the user does next?
    User is deleting all the cookies & cache, and again trying to log into BSP application. Result : Successful login
    Question:
    Everytime, the user logs off from the BSP application, and again tries to login, he/she is NOT able to login without clearing the cookies and cache.
    First, the user has to clear cookies and cache, then ONLY he/she is able login.
    Can you please advice on this?
    Response will be highly appreciated.
    Regards,
    Mandar

    Hi,
    Refer http://help.sap.com/saphelp_nw04/helpdata/en/6b/9d91d062cc52419f23926ff1bf2ad3/content.htm
    BSP Application Login/Logoff and http://wiki.sdn.sap.com/wiki/display/BSP/Logon
    This may be helpful for your issue.
    Thanks,
    Chandra

  • BSP Applications in CRM

    Hi
    How do we find the respective BSP application for an iView in CRM, (lets say Activities OIP and ODP application)? And how and where do you view the source of that BSP application? We are in CRM 4.0 SP 8.
    Thanks in advance..!
    Regards
    Sasi

    Hi
    Technically there is only one BSP application for all People-Centric UI applications - it is called CRM_BSP_FRAME.
    This is the Controller part of the Model View Controller setup.
    The application specified in the URL (as above) specifies the layout and the model. You can set parameter ID 'CRM_BSP_TRACELEVEL' in the CRM backend for your user to turn on the PC-UI trace. See note 658311. Then you can see which ABAP class is triggered for each UI section (the so-called Model Access Classes).
    If you want to adjust the application, you really need to read 'The Book' (full title "Implementing People-Centric User Interfaces with Business Server Pages and SAP Enterprise Portal - The Book for Developers and Technical Consultants"). You can get it in the Service Marketplace.
    Cheers
    Dom

  • Assigning controller to the bsp application in icwebclient

    Hi friends,
         Iam trying to test the <b>help view</b> from crm_ic into my bsp application Z_CRM_IC_HELP.
           I got stuck up while assigning controller to view in the bsp application. I have copied the standard view "help" from crm_ic into bsp application z_crm_ic_help.
    and copied the crm_ic.xml file into Z_CRM_IC_HELP.
        In se24 created a controller class ZCL_CRM_IC_HELP_IMPL for the help view controller class CL_CRM_IC_HELP_IMPL.
    Properties of the bsp application Z_CRM_IC_HELP page type (view) to select the controller class which i have created above is not displaying the f4 help list. So when am entering the z_crm_ic_help in the controller class fied its throwing the following error  as the controller class is not available in the F4 help  list.
          <b>The class ZCL_CRM_IC_HELP_IMPL does not implement any controller in the BSP application Z_CRM_IC_TEST</b>     
    Could anybody please guide to create a simple BSP application in ICWebclient.
    or it will be helpful if you can send me any links to work on hands on in ICWebclient.
    Thanks & Regards
    Sireesha.

    Hi Sarah,
    the following thread adresses the same problem, within the BSP folder:
    [How to change & manage different ports in a mixed web environment (BSP/WAD)|How to change & manage different ports in a mixed web environment (BSP/WAD);
    I think its better to use that category instead of BI General.
    Best regards,
    Sebastian

  • Authorization objects for  transaction, one to view, and one to maintain

    Hi all,
    My requrement is to create two authorization objects for  transaction, one to view, and one to maintain.
    I know how to create objetcs vai sm21, but i donot know how to crate objects with activity codes.
    Please suggest how to create object where i can asign activity codes.
    regards
    manish

    The Authorization Concept
    R/3 uses authorization objects to assign authorizations to users. An authorization object is a template for an authorization. For example, authorization object F_SKA1_BUK - G/L Account: Authorization for company codes requires the specification of two field values: Company Code and Activity. To allow a General Ledger supervisor to create a general ledger master record, he/she must be assigned an authorization to create (Activity 1) accounts for a specific company code (eg. Company Code 2000). Such an authorization is created using the object F_SKA1_BUK by assigning these field values and naming the authorization following an appropriate convention (eg. Z_SCC20001).
    Authorizations may be classified as general authorizations, organizational authorizations or functional authorizations. General authorizations specify the functions a user may perform. Authorization object F_SKA1_BUK has been assigned to the function for creating general ledger master records. The system checks for the useru2019s authorization to create general ledger accounts (Activity 1) in at least one company code. The system then checks whether the user is permitted to create accounts for the specified organizational unit (company code) and has the required functional authorizations. Authorizations in this case may restrict the user to certain Charts of Accounts. In addition, an authorization group may be defined in certain authorization objects to protect individual master records.
    Profiles relating to an organizational role (eg. General Ledger Supervisor) are defined consisting of a list of authorizations and other profiles. Such profiles are then assigned to users with that role and stored in their user master record along with other data (eg. password).
    Do check this link as well.
    http://articles.techrepublic.com.com/5100-10878_11-5110893.html

Maybe you are looking for

  • How to process a group of records in a single Web Service Call through SDK

    Hi Experts, The Business Scenario is as follows: Entire data of the customer accounts and Sales information of my client's is coming from an external system called DellBoomi into the ByD. We had a solution for this where we had used a custom inbound

  • Managing shared hard drive on linksys e3000

    I setup a shared hard drive on my Linksys E3000 and everything works fine except for this issue: I created two shares, say Folder1 and Folder2. However any edits made to Folder1 from any laptop's File explorer (Windows & Mac) reflects on Folder2. If

  • Gaming is Anytime, Anywhere - nXa Gaming

    nXa Gaming, one of MSI's official sponsored professional e-sports team, featured 1 vs 1 and 2 vs 2 CS:GO & Crysis tournaments in the most prestigious DOTA 2 events. Dedicated to support local e-sport community, MSI recruited the Ladies team as one of

  • Oracle 8i enterprise client linux installation problems

    Hi, I have a problem installing oracle 8i client on linux machine. It gives an error message when I tried to run runInstaller. this is the error message: Initializing JAva Virtual Machine from /usr/local/jre/bin/jre. Please Wait... Error in CreateOUI

  • Why is Thunderbird downloading messages previously downloaded from server ?

    Have been using Thunderbird for several years to download messages for offline management. Previously, once messages are downloaded, they remain on server but are not downloaded again. Yesterday Thunderbird started downloading 6000+ messages previous