BSP Application : Unable to view trace in SE30

Hi,
We are testing the performance of BSP applications. We have activated run time analysis using SICF. Now we are testing the BSP applications.
We are not testing the BSP using SE80, rather we are testing it using a URL.
This URL uses a SAP "System user" to connect to the SAP system which contains the BSP applications.
Now if we view the trace in SE30 we are not able to see any trace.
So for viewing the trace do i need to login into the user which is executing the trace. This is not possible in my case as the user that is  executing the  BSP applications is a "system user" and not a dialog user.
Is there any other way through which i can activate and view the trace.
Thanks,
Vincent

Hello James,
You should be able to see BSP trace in SMICM transaction.
http://help.sap.com/saphelp_47x200/helpdata/en/b3/29ee3adcf1913fe10000000a11405a/frameset.htm
Regards,
Siddhesh

Similar Messages

  • Unable to view trace signals of microblaze

    Hi,
    I am using EDK 13.1. I have created a microblaze based system. I attached the block diagram of the system. I want to monitor the Trace signals of microblaze when different instructions are being executed using chipscope. I found one old tutorial on how to use chipscope with XPS and I followed the steps mentioned in it. But when I add the ILA core it's not showing the trace signals in the available ports in the microblaze instance. Please let me know what am I missing. I have attached the screenshots and XMP and MHS files for reference.

    hi,
    attach your xmp and MHS file with the forum post.
    --hem

  • Unable to view latest default trace in log viewer

    Hello all,
    We have NW 7.0 J2EE production server. We have a CI and two application servers.
    Our SP level is SP18.
    The DB is oracle and the operating system in RHEL 4.
    I have a problem in viewing the default trace files in log viewer using the visual administrator.
    I am able to view the old default trace but unable to view the latest trace data generated.
    I am facing this problem when i try to view the logs of a particular application server.
    Able to view the latest default trace properly for CI and the other application server. Problem lies only with a single application server.
    I have also check the permissions in OS level for the trace files. Everything looks fine.
    Could some one give me a clue on how to solve this issue.
    Regards,
    Chandru

    Hello Joey,
    The trace file isnt too big....
    We have set the file size as 10 MB.
    We have some 15 to 16 default trace files for each of the server process and we have 3 server process in that application server.
    The ForceSingleTraceFile parameter is set as YES in visual admin.
    So the logs will be displayed in visual admin as a single default trace file.
    Hope I had provided the inputs you have asked...
    Regards,
    Chandru

  • Unable to view the "Discovery Application" section under studio.

    Hello,
    I have installed OEID 3.0, using integrator I have loaded the sample getting started application to the server successfully.
    I am following the instructions given under the getting started guide, after loading the data to the server I am able to login successfully to studio http://localhost:8101.
    However in the login screen I am getting only the "welcome Admin Admin!" menu, under which I am unable to see the Discovery Application section.
    But I followed the guide to access the control panel and change the default datasource, as per the guide I clicked "Back to home" but still Discovery Application section is not visible.
    Which is obviously used for creating and managing the applications.
    But I managed to create the application by selecting control panel > Portal > Application and I created the application and managed to load the EID_3.0_SampleApp.LAR file and able to successfully launch the studio.
    Can anyone kindly let me know why I am unable to view the discovery application section till now?
    Thanks.

    I don't completely follow yet what you are seeing in your Studio instance. Is your "Discovery Applications" panel not showing, or is it empty, or is the "New Application" button missing? Perhaps you could paste a screenshot somewhere and link it here.
    You say you are having problems with datasources - could you paste your data source JSON, and any error messages you are getting in the Studio logs?

  • Create a table view in my BSP Application!.

    Hi All,
    I am using CRM version 4.0 here i want to crate a new table view in my own BSP Application and want to display in the CRM_IC Application.
    The problem now i am facing is.. there is now provision to create the table view via the wizard. I tried to copy the BSP code, changed the code accordingly also i changed the inheritance for the context node class from
    CL_BSP_WD_CONTEXT_NODE to CL_BSP_WD_CONTEXT_NODE_TV.
    i also copied the iterator attribute.
    still the view is coming with an error saying that page have some problem.
    can anyone suggest any easy method to create the table view!.
    or else can you tell me what i have to do further!.
    Thanks n regards,
    sudeep v d.

    Hi,
    The problem is not only at the .htm page!. I think some changes are required at the context node level. for
    here is the BSP code I m using for displaying the table view..
    <%@page language="abap" %>
    <%@extension name="htmlb" prefix="htmlb" %>
    <%@extension name="xhtmlb" prefix="xhtmlb" %>
    <%@extension name="bsp" prefix="bsp" %>
    <%@extension name="CRM_BSP_IC" prefix="crmic" %>
    <crmic:tray2 id     = "MoreFields"
                 title  = "<%= otr(crm_ic_appl/BuPaAccount) %>"
                 height = "100%,603"
                 width  = "100%" >
      <crmic:trayBody2>
        <crmic:gridLayout cellSpacing    = "1"
                          columnSize     = "1"
                          rowSize        = "10"
                          height         = "100%"
                          width          = "100%"
                          widthPredefine = "TRUE">
        <crmic:gridLayoutCell columnIndex = "1" rowIndex    = "4" >
            <crmic:tableView design          = "STANDARD"
                             width           = "100%"
                             id              = "Address"
                             table           = "//Address/Table"
                             visibleFirstRow = "3"
                             visibleRowCount = "4"
                             selectionMode   = "LINEEDIT"
                             onRowSelection  = "select"
                             fillUpEmptyRows = "TRUE"
                             headerVisible   = "FALSE"
                                           >
              <crmic:tableViewCols>
                <crmic:tableViewColumn columnName = "STREET"
                                       title      = "<%= otr(CRM_IC_APPL/BuPaStreet_t) %>"
                                       edit       = "TRUE" />
                <crmic:tableViewColumn columnName = "POSTL_COD1"
                                       title      = "<%= otr(CRM_IC_APPL/BUPAPOSTCODE_T) %>"
                                       edit       = "TRUE" />
                <crmic:tableViewColumn columnName = "CITY"
                                       title      = "<%= otr(CRM_IC_APPL/BUPACITY_T) %>"
                                       edit       = "TRUE" />
                <crmic:tableViewColumn columnName = "REGION"
                                       title      = "<%= otr(CRM_IC_APPL/REGION) %>"
                                       edit       = "TRUE" />
                <crmic:tableViewColumn columnName = "REGIONNAME"
                                    title      = " "
                                       edit       = "FALSE" />
              </crmic:tableViewCols>
            </crmic:tableView>
        </crmic:gridLayoutCell>
       </crmic:gridLayout>
      </crmic:trayBody2>
    </crmic:tray2>
    In the above code i have given
    table    = "//Address/Table"
    here the 'Address' is defined as a page attribute type ref to the context node class ( CL_CRM_IC_BUPAMOREADDRESS_CN01 ).
    the same class is used in the CRM_IC application works fine!.
    also i entered the attribute entry for the 'Address' in the _CTXT class the view.
    still the same error 'page  cannot be displayed'.
    what could be the problem anyone plaese help!.
    Thanks n regards,
    sudeep v d.

  • Unable to view PDF files -application server class CL_GUI_PDFVIEWER- open_d

    Hi
    I have PDF files in application server and trying to display the PDF files by using class CL_GUI_PDFVIEWER->open_document but i am unable to view the pdf files.
    Please let us know any other alternative way to view the PDF files via application server.
    Regards
    G

    Hi,
    steps tu visualize PDF files from app server via html_viewer:
    1. Upload PDF file to table type x255. (using for ecampo FM SCMS_UPLOAD)
    2. Create container (TYPE REF TO cl_gui_custom_container),
        create html_viewer (TYPE REF TO cl_gui_html_viewer).
    3. Load data from ypur xsting table to url:
      CALL METHOD html_viewer->load_data
        EXPORTING
          TYPE                = 'application'
          SUBTYPE           = 'pdf'
         IMPORTING
           assigned_url     = url
        CHANGING
          data_table          =  data_pdf.  "line type x255
    4. Show data from url:
      CALL METHOD html_viewer->show_data
        EXPORTING
          url                    = url.
    Regards,
    MaryM

  • After deleting enhanced view still the bsp application is showing in se80

    Hi,
    I enhanced one component then after some reason i deleted the enhanced view at that time it's asked do you want to delete bsp application i click on yes then after also still i showing in se 80 under my package it's showing.
    after deleting enhancement view and deleted enhancement component.
    after deleting these total still all the z classes are showing in sm24. if i enhance from starting on wards from enhancing component and enhancing view i need to new bsp application name because previous bsp application is still showing and some of the context class. after transporting in to quality server this component is showing there is context class which i redefine in the development and view is not defined in the run time repository. why it's showing these errors in quality server.
    my guess is in dev i deleted which are deleted still the classes and bsp application are there older one if provide new bsp classes also.
    what are important things we need to follow if delete the view enhancement and deleting the component enhancement. because if i transport after deleting with new bsp application name and with a previous existing class with a new request also it's not working quality server. because lot of classes are generating automatically in when we redefine the context class in development so these classes are not there in quality server.
    please guide me if delete any enhanced view and component why still bsp application and redefine z classes are showing in se80 and se24. because if enhance newly also and redefine also it's considering previous bsp application and previous redefine classes.
    what are precautions i need to take if i delete enhanced view and enhance component.please guide me.
    jemmi.

    Jemmi,
    You should follow the following SAP Note in deleting enhancements. There are a few steps to be done in SM34. If we just delete through the wizard we are bound to have these issues.
    SAP Note 1122248 - Consultation:Procedure when dealing w/framework enhancements
    Briefly, these are the steps to delete the enhancemnet-
    1) In SM34, view BSPWDVC_CMP_EXT. Select enhancement set and then select enhancement definition. You will see your component there.
    2) Select your component and in left side navigation click Controller Substitutes.
    3) A list of the enhanced views are displayed.
    4) Select the views and delete it. Before you delete make a note of the BSP application these views are attached to. Hopefully, you attached them in a Z BSP application
    5) Go to SE80. Select the Z BSP application and delete it.
    Go through the SAP Note to understand the process in more detail.

  • How to find url for a view of a bsp application in program?

    hello all,
    I am devloping e-rec and am having a reqmnt, i want to knw how can i find a url for view view1 which is in bsp application zbsp.
    thanks,
    Reena

    Hi,
    views can not be called direct, only controllers. Because of that, views have no URL.
    You can call a controller or a page. You find the URL of the controller if you display the data of the controller.
    The URL of the page you find if you display the property tab of the page.
    Best regards
    Renald

  • Calling a BSP application's View directly

    Hello,
    I am using BAB to simplify 'Maintain Opportunity' BSP. After the simplification, when calling the BSP in portal, I could not call the view 'ACT_LEAN' directly. I can see only the standard BSP in the portal and not the changed one. Following are the parameters I am passing to the portal:
    BSP application: CRM_BSP_FRAME
    Start Page: entrypoint.do
    application parameters: appl=CRMD_BUS2000111&blview=ACT_LEAN&sap-syscmd=nocookie
    I have also activated the whole tree where all these bsps are in the xn 'sicf'
    Any advice on how to call the view directly is appreciated.
    Regards
    - Arun

    Hi ,
    what you need to do is
    1) for the "Send" button attach a java script.
    <htmlb:button id="myButton" text="Submit ...." onClick="sendRequestWrapper()"/>
    this javascript should take the inputfrom the field,
    then in the javascript create the URL.
    function sendReqeustWrapper(){
    sendRequest(InputField);
    function sendRequest(InputField)
    var URL;
    URL  = window.location.protocol + "//" ;
    URL += window.location.host ;
    <b>Note: its only Example link,</b>
    URL += "/sap/bc/bsp/sap/<BSPApplication>/controller.do";
    URL +="?InputFieldName=";
    URL +=InputFieldValue;
    <b>then use</b>
    Your URL will look like:
    http://ld0507.wdf.sap.corp:50007/sap/bc/bsp/sap/<bsp appl>/controller.do?InputFieldName=XXXXX
    window.open(URL,"_self","");
    so once this URL is triggered  you need to goto the respective controller and handle the input. You can see the reply from Mr. Akshaya Rao .
    regards,
    Vijaya Kumar M.
    Message was edited by: Vijaya Kumar

  • Unable to view complete Application Component Hierarchy.( Its Urgent)

    Hi,
      While creating Datasources with RSO2, I am selecting Application components, In the Application Component Hierarchy, I am unable to view the complete Hierarchy, ie subtrees are not available .
        Say Under PA-> PA-PA-IO is visible . ie All  subtrees are missing  under this application component, Including transaction data sources  under PA   and also Master Datasources  under PA-PA-IO. Like this all subtrees under  each application components are not visible.
        I have checked the Datasources delivered by SAP ie using RSA5 . Here all Application components are available including subtrees.
      I  have tried with RSA9 tried to transfer the Application component hierarchy but invain.
      Please help me in this regard. Its very Urgent.
    Thanks,
    Jaswantha

    You can rename your <JDev_Home>\jdev\system to <JDev_Home>\jdev\system_backup, f.ex.
    But it means you will lose your preferences, DB connections, ...
    Regards,
    Didier.

  • Creating (view, add, delete, modify) bsp application

    Hi gurus,
    Could anyone here please help. I am totally a new user in SAP and I would wish to create a small bsp application that could interact with my database in transaction se16.
    Below are the requirements.
    1) Allow user to<b> view </b>all Database Records
    2) Allow user to <b>add</b> records into the Database
    3) Allow user to <b>delete</b> records from the Database
    4) Allow user to <b>modify</b> records from the Database
    My table name in se16 is ZRM_PERIOD_CTRL
    and has 4 fields which are : CLASS, FISCPER3, FISCYEAR, ZG_PVER
    Can you please provide some direction on this?
    Thanks in advance
    Message was edited by:
            gary lee
    Message was edited by:
            gary lee

    Hi Gary,
    Lets start...!!!
    1) Create a new page <b>page.htm</b>
    2) In the<b> layout section</b> of the page put :
    <%@page language="abap" %>
    <%@extension name="htmlb" prefix="htmlb" %>
    <htmlb:content design="design2003" >
      <htmlb:page title="Modify table " >
        <htmlb:form>
          <htmlb:tray id     = "tray1"
                      title  = "Data Tray"
                      design = "BORDER" >
            <htmlb:trayBody>
              <htmlb:tableView id             = "TV"
                               table          = "<%= itab %>"
                               design         = "ALTERNATING"
                               onRowSelection = "MyEventRowSelection"
                               selectionMode  = "MULTILINEEDIT"
                               columnWidth    = "100%"
                               filter         = "SERVER" />
              <br>
              <br>
              <center>
              <htmlb:button id       = "Update"
                            text     = "Update"
                            onClick  = "onInputProcessing"
                            design   = "emphasized"
                            disabled = "false" />
              </center>
            </htmlb:trayBody>
          </htmlb:tray>
        </htmlb:form>
      </htmlb:page>
    </htmlb:content>
    3) In the <b>TYPE DEFINITIONS</b> : 
    TYPES : itab_t type standard table of ZBANCTECPRD,
            wa_t type line of itab_t.
    4) Then in <b>page attributes</b> :
    itab                      TYPE     ITAB_T
    selectedrowindextable TYPE     INT4_TABLE
    wa                      TYPE     WA_T
    zindex                      TYPE     SY-INDEX
    5) In the <b>Event Handler</b> : 
    In <i><b>onCreate</b></i> :
    select * from ZBANCTECPRD INTO TABLE ITAB.
    In <i><b>onInputProcessing</b></i> :
    * To get the selected RowIndex...
    CLASS cl_htmlb_manager DEFINITION LOAD.
    DATA: tv          TYPE REF TO cl_htmlb_tableview,
          event       TYPE REF TO cl_htmlb_event,
          table_event TYPE REF TO cl_htmlb_event_tableview.
    FIELD-SYMBOLS <i> LIKE LINE OF selectedrowindextable.
    tv  ?= cl_htmlb_manager=>get_data( request = request
                                       name    = 'tableView'
                                       id      = 'TV' ).
    IF tv IS NOT INITIAL.
      table_event = tv->data.
      CLEAR selectedrowindextable.
      selectedrowindextable = table_event->prevselectedrowindextable.
      IF table_event->event_type EQ cl_htmlb_event_tableview=>co_row_selection.
        READ TABLE selectedrowindextable WITH KEY table_line = table_event->row_index TRANSPORTING NO FIELDS.
        IF sy-subrc EQ 0.
          DELETE selectedrowindextable INDEX sy-tabix.
        ELSE.
          APPEND INITIAL LINE TO selectedrowindextable ASSIGNING <i>.
          <i> = table_event->row_index.
          zindex = table_event->row_index.
        ENDIF.
      ENDIF.
    ENDIF.
    * get the button event.
    IF event_id = cl_htmlb_manager=>event_id.
      event = cl_htmlb_manager=>get_event( runtime->server->request ).
      IF event->name = 'button' AND event->event_type = 'click'.
        DATA : button_event TYPE REF TO cl_htmlb_event_button.
        button_event ?= event.
      ENDIF.
      CASE event->id.   " Use this for specifying code for different buttons.
        WHEN 'Update'.          " This is the button id.
          tv ?= cl_htmlb_manager=>get_data(
                 request      = request
                 name         = 'tableView'
                 id           = 'TV' ).
          IF tv IS NOT INITIAL.
            DATA : tv_data TYPE REF TO cl_htmlb_event_tableview .
            tv_data = tv->data.
    *get values from screen to work-area...get_cell_value is for tableView and get_data is for other objects like inputfield
            wa-scnotify     = tv_data->get_cell_value(
                                             row_index     = zindex
                                             column_index  = 1 ).
            wa-equipmentid  = tv_data->get_cell_value(
                                             row_index     = zindex
                                             column_index  = 2 ).
            wa-clientname   = tv_data->get_cell_value(
                                             row_index     = zindex
                                             column_index  = 3 ).
            wa-sla          = tv_data->get_cell_value(
                                             row_index     = zindex
                                             column_index  = 4 ).
            wa-reference_no    = tv_data->get_cell_value(
                                             row_index     = zindex
                                             column_index  = 5 ).
            wa-district_code    = tv_data->get_cell_value(
                                             row_index     = zindex
                                             column_index  = 6 ).
            DATA : temp_date(10) TYPE c, new_date TYPE d.
            temp_date  = tv_data->get_cell_value(
                                   row_index     = zindex
                                   column_index  = 7 ).
            CALL FUNCTION 'CONVERT_DATE_TO_INTERNAL'
              EXPORTING
                date_external = temp_date
              IMPORTING
                date_internal = new_date.
            wa-malfuncstdate = new_date.
            temp_date  = tv_data->get_cell_value(
                                   row_index     = zindex
                                   column_index  = 8 ).
            CALL FUNCTION 'CONVERT_DATE_TO_INTERNAL'
              EXPORTING
                date_external = temp_date
              IMPORTING
                date_internal = new_date.
            wa-malfuncendate = new_date.
            wa-ceid   = tv_data->get_cell_value(
                                             row_index     = zindex
                                             column_index  = 9 ).
            MODIFY itab INDEX  zindex FROM wa .
            MODIFY zbanctecprd FROM wa.
          ENDIF.
      ENDCASE.
    ENDIF.
    <u><i><b>This is the code to modify a table line.....Try and think on these lines to add or delete a table line....!!</b></i></u>
    Also note that i have used my own Ztable....you will have to modify the code a bit for your Ztable....!!
    <i>Do reward each useful answer..!</i>
    Thanks,
    Tatvagna.

  • How to add toolbar to ecl viewer in bsp application

    i took help of the following link
    /people/durairaj.athavanraja/blog/2005/09/14/using-ecl-engineering-client-3d-viewer-viewer-in-bsp-application
    the 3D image in opening properly.
    My question is, is it possible to add the TOOLBAR in the Internet explorer which get normally in Ecl Viewer which has the options like file tools etc

    Hi Chinnu,
    First find decide in which tab you want to display the field. Find out the screen structure behind the field group and check whether the field is present in it.
    if yes all you need is to add this field in the field group structure other wise you have to add the field in the screen structure and then in the field group.
    Reward if helpful.
    Regards,
    Naveen

  • Bring view from BSP application into CRM 7.0?

    How to add a custom view from a BSP application in CRM 5.0 to CRM 7.0. I tried to use it as a URL ( in transaction launcher ) and gave controller class . It does not work. Am I missing something here?

    Hello CRM_2007,
    May you please elaborate on what doesn't work?
    Do you see your link created via transaction launcher?
    Did you manage to create a link to some URL like "google.com" that is working fine, or every kink that you create doesn't work at all ?
    Kind regards,
    Nicolas Busson.

  • Bsp-application views + packages

    hi folks,
    is it possible to put a bsp-view of an bsp-application into another development package than the bsp-application is?
    or how could this be done....?
    as mimes of an bsp-application can reside in other packages thatn the application does, but what about views????
    kind regards,
    oliver

    I don't think that it will be easy to do that. My initial idea was that you can just call a view which you place in a different namespace using the method create_view( '<application>/<viewname>' ). If this would be possible your third-party vendor would be able to create a table which would allow you to configure which view is called. But like Brian stated in his post this is not possible because the view has to be in the same namespace/application. To prove that take a look at this excerpt from create_view(...).
      l_app_name = if_bsp_page~get_application_name( ).
      l_app_nspace = if_bsp_page~get_application_namespace( ).
      l_current_page = if_bsp_page~get_page_name( ).
      if key is not initial.
        l_page_name = _m_navigation->find_page(
               from_page = l_current_page
               from_application = l_app_name
               from_namespace = l_app_nspace
               key = key ).
      else.
        l_page_name = view_name.
      endif.
      if l_page_name is initial.
        return.
      endif.

  • Eventing between team viewer and BSP application

    Hi Everyone,
    Basically, I have a standard BSP application (HCM_LEARNING) on ECC5.0. I need to make it communicate with MSS team viewer.
    HCm_learning is a big BSP application from SAP which enables self booking for course, training history data, courses attended, can view courses offered, prebooking, participation history, qualifications achieved, qualifications missing etc.  It is a master piece BSP from SAP.  It brings the data from the backend system through pernr.
    in portal, a manager should see the qualifications of an employee and book courses for him if he misses particular qualifications. hcm_learning is a self booking application; if it communicates with team viewer: that is great. manager can pick a person (name) from team viewer and from there he can take of all the activities 'hcm_learning' does for an employee.
    I have spend lot of time watching all the blogs, threads.. searching for this scenario. can not get right information.
    is this scenario possible.
    could any body tell me where i should look at for documentation. could you give me suggestions on this.
    THanks!
    Siribabu

    Hi Siribabu,
    Did you ever find an answer to this?
    Thanks
    Jane

Maybe you are looking for

  • Converting a number to a date

    I am getting data in from an outside source table as a number ex: 200807 which stands for July 2008. I need to move the data from the source table to another table and have it be a date. So 200807 will end up as 07/01/2008 in the final table. Any ass

  • Exception handling in VC?

    Hello, is there a way to handle exceptions that might occur when invoking a web service from a VC model? Actually, a technical error message is displayed when the invocation of a web service fails. Rather, I would prefer to catch the exception and di

  • My desktop isn't filling the entire screen

    I let my younger cousin play with sims on my computer the other day. When fully loaded, sims takes control of the screen and is full screen mode. Once she was done, I returned back to my desktop and it was minimized. I tried to go to displays to chan

  • Help in the query

    hi folks, Help me to build the query here. Tables BKPF - fields belnr, blart        BSEG - fields kunnr,wrbtr, zuonr I need to get the data into a single internal table whose strucutre consists of fields kunnr, blart,wrbtr and zuonr the common field

  • Not able to convert date in char with interval

    When i run below SQL> select to_date('20120229','YYYYMMDD') + interval '1' day from dual; TO_DATE(' 01-MAR-12 How can i change this output to YYYYMMDD format. Desired output - *20120301* I tried with to_char making on above query,It didn't work !