Is feasible to develop a BSP application  in xRPM

Hi,
I am new to SAP BSP development.We are planning to develop a resource allocation application on xRPM.  We want to decide either we can use BSP or go for j2ee technology to develop that application on xRPM server. Since no one have knowledge of developing the application using j2ee(netweaver) in my company. so we have plan to use BSP. Is that feasible ?.Is that correct decision ?. Please let me know your suggestion.
Thanks!
lakshmikandh

Hi,
First you have to search for a java SIP Stack which will help you to parse SIP protocol messages.. hope the following links will help you...
http://java.sun.com/products/jain/SIP-and-Java.html
http://sourceforge.net/projects/jsip
Google -> java + sip, you will get some idea...
With Regards,
Karthikeyan R

Similar Messages

  • Development of BSP application using BSP_WD_CMPWB in CRM 2007

    Hi
    I am  to develop an BSP application in web client UI ( using BSP_WD_CMPWB transaction code)
    in CRM 2007could any one suggest me the tutorial i need to go through for this?
    Ajay

    Hi Ajay,
    this is the link that u can visit for BSP application
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/a7/881e3aa03ddb0fe10000000a11402f/frameset.htm
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/7a/b86041397211d5992200508b6b8b11/frameset.htm
    If u want to enhance any component of the BSP application then these documents would be helpful
    http://help.sap.com/saphelp_crm60/helpdata/en/df/92fd2caf844d8daf890224d9761cbd/content.htm
    http://help.sap.com/saphelp_crm60/helpdata/en/51/dfdf460f464db1b483d9c2a1bcd488/content.htm
    http://help.sap.com/saphelp_crm60/helpdata/en/31/33591017f24cb68ef6ebf2ff575c2d/content.htm
    Regards
    Mayank

  • Best way to develope a BSP application

    Hi Experts,
       Can you help e in writing a BSP applications. I have couple of basic Q?s on it.
    1. I hope the structure of an BSP applicatons will be writing JAVASCRIPT in HTML or HTMLB pages???
    is that correct..
    2. Can anybody let me know the best approach fr this...
    Thanks in advance....

    Hi Krish,
    If your SAP Version is greater than 4.7 then, better u go for WEBDynpro ABAP rather than BSP.
    BSP = ABAP + HTML + Javascript
    (BSP is like normal ABAP expect the output display. U can use all the ABAP objects in BSP and to display output in web, u need to use some html tags. and Javascript for client side validation.)
    (HTMLB is higher version, there no need to write code for displaying button/form.. as its already written.Just u need to drag and drop the relevant htmlb element in ur bsp page)
    Regards,
    Jothi.P

  • Feasibility for developing application in JDeveloper

    Hi,
    I am evaluating the feasibility of developing an enterprise application using either JDeveloper or Forms 6i. I would like to clarify the following points:
    1. Does deployment require JDeveloper to be installed on the Application Server?
    2. Is it possible to develop an entire enterprise application including all validations, input from other file formats such as .txt or .xls using only JSP/Business components?
    Thanx n Bye
    null

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Shilpa Garge ([email protected]):
    Hi,
    I am evaluating the feasibility of developing an enterprise application using either JDeveloper or Forms 6i. I would like to clarify the following points:
    1. Does deployment require JDeveloper to be installed on the Application Server?
    2. Is it possible to develop an entire enterprise application including all validations, input from other file formats such as .txt or .xls using only JSP/Business components?
    Thanx n Bye<HR></BLOCKQUOTE>
    1. No. iAS has the required JBO classess.
    2. Yes. You can do your app using only JSP/BC4J. But at present,given the poor documentation of iAS and the unstable state of iAS, you'd expect lots of trouble deploying your app.
    null

  • How to create downloadable pdf report as hyperlink within BSP application

    Hi,
    I'm developing a BSP application using MVC and htmlb extensions on a WAS 6.40. One of the requirements of my webapplication is:
    - the ability to generate a report in pdf format at runtime, using data retrieved from a backend SAP CRM 3.0 system
    and
    - make this report available/downloadable via a hyperlink in the application.
    I am aware of tools like Smartforms and Adobe interactive forms but need some help to get started and choose the right tool.
    regards, Roelof Jan

    Hi,
    we've done that by firstly building a RFC which prints the report to sap-spool:
    call function 'GET_PRINT_PARAMETERS'
          exporting
            expiration     = 1
            immediately    = ' '
            new_list_id    = 'X'
            line_count     = 65
            line_size      = 132
            report         = sy-repid
            no_dialog      = 'X'
          importing
            out_parameters = wf_params
            valid          = valid_flag.
        if sy-subrc ne 0 or valid_flag eq false.
        endif.
        new-page no-heading no-title print on parameters wf_params
                          no dialog .
    ... list processing ...
    new-page print off.
      concatenate programname sy-uname+0(3) into lc_rq2name separated by '_'.
      select * from tsp01 into tsp01_wa
                          where rq2name = lc_rq2name
                          and rqowner   = sy-uname
                          order by rqcretime descending.
        wf_spono = tsp01_wa-rqident.
        exit.
      endselect.
      if sy-subrc ne 0.
        clear wf_spono.
      endif.
    Then convert the spooljob:
      call function 'CONVERT_ABAPSPOOLJOB_2_PDF'
        exporting
          src_spoolid              = wf_spono
          no_dialog                = 'X'
        tables
          pdf                      = witab
        exceptions
          err_no_abap_spooljob     = 1
          err_no_spooljob          = 2
          err_no_permission        = 3
          err_conv_not_possible    = 4
          err_bad_destdevice       = 5
          user_cancelled           = 6
          err_spoolerror           = 7
          err_temseerror           = 8
          err_btcjob_open_failed   = 8
          err_btcjob_submit_failed = 9
          err_btcjob_close_failed  = 10
          others                   = 11.
      if sy-subrc ne 0.
        return.
      endif.
    Delete Spooljob and generate cached response:
      data del_spono type  tsp01_sp0r-rqid_char.
      del_spono = wf_spono.
      call function 'RSPO_R_RDELETE_SPOOLREQ'
        exporting
          spoolid = del_spono.
      if witab is not initial.
        loop at witab into itab .
          translate itab using ' ~'.
          concatenate output itab into output in character mode.
        endloop.
        translate output using '~ ' .
        create object cached_response
               type cl_http_response
               exporting add_c_msg = 1.
        l_pdf_len = strlen( output ).
        cached_response->set_cdata( data   = output
                                    length = l_pdf_len ).
        cached_response->set_header_field( name  = if_http_header_fields=>content_type
                                           value = 'application/pdf' ).
        cached_response->set_status( code = 200 reason = 'OK' ).
        cached_response->server_cache_expire_rel( expires_rel = 180 ).
        data: guid type guid_32,
              display_url type string.
        call function 'GUID_CREATE'
          importing
            ev_guid_32 = guid.
        concatenate runtime->application_url '/' guid '.pdf'
                    into display_url.
        cl_http_server=>server_cache_upload( url      = display_url
                                             response = cached_response ).
        app ?= application.
        app->print_url = display_url.
      endif .
    The display_url has to be used in the normal response-view:
    <script type="text/javascript">
    var param = 'width=700'
          + ',height=550'
          + ',left=0'
          + ',top=0'
          + ',menubar=no'
          + ',location=no'
          + ',resizable=yes'
          + ',status=no';
      window.open('<%= application->print_url%>', 'DRUCK', param ).focus();
    </script>

  • Urgent:How to run BSP Application on Emulator Pocket PC2003 (mobile device)

    Hii Experts
    We are developing a BSP application on BI in HTMLB.When we run this application on Emulator Pocket PC2003 (mobile device), it is just showing the header,and rest of the page is blank.It is not showing any data.
    Can there be any problem with the used HTMLB tags?
    If HTMLB file not converting properly to HTML file,how can i locate the error?
    Where and how can i find solution to this problem?
    Please help me in solving this problem ASAP.
    Thanx to experts in advance.
    Regards
    Varun

    Hi,
    Have a look at the mobile extension:
    http://help.sap.com/saphelp_nw04/helpdata/en/e6/103b3b4c003416e10000000a114084/frameset.htm
    Alternatives are Web Dynpro or create you own HTML which needs to be conform http://www.vnunet.com/vnunet/news/2159256/w3c-drafts-mobile-web
    Eddy

  • PDF from bsp application

    Dear All,
    I am new to this blog.
    I currently working on BSP's.  My requirement is like below.
    In my company portal, when an employee logins to portal under ESS tab,
    he can get Employee verification letter ( PDF ) from his manager under whom he is working.  This PDF he can print and get the signature from his manager.
    On first page he will have 3 questions ...
    1) Whether you want base salary in letter ( PDF )  . answer: Yes or No radio button
    2)  Whether you want ssn  number in letter ( PDF ) answer: Yes or No radio button
    similarly third quesion.
    When employee clicks on print preview button on the same page,  then he will get PDF form with follwing matter:
    Company  Name,
    addresses, Logo,
    Mr XXXXXXX is our employee since. His SSN no.......
    XYZZZZ
    Hr Manager,
    Pls let me know how to solve the above.
    I got an RFC for my BSP for getting employee details.  my question is how work on above in BSP.
    Regards,
    Kishan

    Hi Sharmila ,
    Thanks for reply.
    I tried with smart form.
    I created a smartform with only one text on smartform for just testing.
        i developed the BSP application .  when i press the butten "printpreview' on first page it should open PDF page with out put of smart form.
    the code is as below... but it is not working...it is not giving any result.. just remains in first page.
    generated result: PDF format
      data: l_pdf_xstring  type xstring,
            lt_lines       type table of tline,
            ls_line        type tline,
            l_pdf_len      type i.
      data: output_options      type ssfcompop,
            control_parameters  type ssfctrlop,
            output_data         type ssfcrescl,
            devtype             type rspoptype.
      data: lt_sys type table of mara.
      DATA: cached_response TYPE REF TO if_http_response.
      DATA: guid TYPE guid_32.
    data : runtime type c.
      DATA : display_url type string.
    DATA: fileUpload TYPE REF TO CL_HTMLB_FILEUPLOAD.
      control_parameters-langu = sy-langu.
      control_parameters-no_dialog = 'X'.
      control_parameters-getotf    = 'X'.
      select * from mara into table lt_sys.
      call function 'SSF_GET_DEVICE_TYPE'
        EXPORTING
          i_language             = sy-langu
        IMPORTING
          e_devtype              = devtype
        EXCEPTIONS
          no_language            = 1
          language_not_installed = 2
          no_devtype_found       = 3
          system_error           = 4
          others                 = 5.
    set device type in output options
      output_options-tdprinter = devtype.
      CALL FUNCTION '/1BCDWB/SF00000010'
        EXPORTING
         CONTROL_PARAMETERS         = control_parameters
         OUTPUT_OPTIONS             = output_options
         USER_SETTINGS              = space
         ZTRNO                      = '5657'
       IMPORTING
         JOB_OUTPUT_INFO            = output_data
       EXCEPTIONS
         FORMATTING_ERROR           = 1
         INTERNAL_ERROR             = 2
         SEND_ERROR                 = 3
         USER_CANCELED              = 4
         OTHERS                     = 5
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      call function 'CONVERT_OTF'
        EXPORTING
          format                = 'PDF'
        IMPORTING
          bin_filesize          = l_pdf_len
          bin_file              = l_pdf_xstring
        TABLES
          OTF                   = OUTPUT_DATA-OTFDATA
          LINES                 = LT_LINES
        EXCEPTIONS
          err_max_linewidth     = 1
          err_format            = 2
          err_conv_not_possible = 3
          err_bad_otf           = 4
          others                = 5.
      if sy-subrc EQ 0.
        CREATE OBJECT cached_response TYPE CL_HTTP_RESPONSE EXPORTING add_c_msg = 1.
        l_pdf_len = xstrlen( l_pdf_xstring ).
        cached_response->set_data( data   = l_pdf_xstring
                            length = l_pdf_len ).
        cached_response->set_header_field( name  = if_http_header_fields=>content_type
                                           value = 'application/pdf' ).
        cached_response->set_status( code = 200 reason = 'OK' ).
        cached_response->server_cache_expire_rel( expires_rel = 180 ).
        CALL FUNCTION 'GUID_CREATE'
          IMPORTING
            ev_guid_32 = guid.
        CONCATENATE  'runtime->application_url' '/' guid '.pdf' INTO display_url.
        cl_http_server=>server_cache_upload( url      = display_url
                                             response = cached_response ).
      ENDIF.
      RETURN.

  • BSP Application Error : Access Denied

    Hi Gurus,
    I have developed a BSP application with an input field and a search help. I am using Java script to popup the search help window and "opener.document.<form>.<field>.value=value;" to pass selected value from search help window to main page. At BSP application level I have checked "Allows Portal Integration" check box. Now, when I try to select the value from search help at runtime, I am getting an error "Access Denied". It works perfectly fine when the check box "Allows Portal Integration" is unchecked. How do I resolve this issue keeping the check box checked.
    Thanks in advance
    John
    <* Input Field *>
    <htmlb:inputField id            = "sales_order"
                       value         = "<%= controller->sale_order %>"
                       maxlength     = "30"
                       showHelp      = "TRUE"
                       onValueHelp   = "showSalesOrderHelp()"
                       submitOnEnter = "X"
                       size          = "30" />
    <* Java script routine to popup search help window *>
    function showSalesOrderHelp()
       newDialog =    window.open("salesOrderHelp.htm","_blank","resizable=no,height=500,width=475");

    The problem is that your popup windows probably do not have their domain relaxed. (Usually popp windows are implemented in an iframe, which must also be relaxed in the same way as the main page.)

  • How to Assiging BSP application in workflow

    Hi, Experts..
    I have developed an bsp application ,i want it to assign in workflow..
    if we select 10 employess such that the application as to go all 10 employess selected in their ms-outlook.
    please help in this ..
    1.Assiging bsp appplication in workflow
    2.selecting 10 employess
    3.sending application to all selected employess to thier ms-outlook.
    if u provide me sample application and step by step procedure i would be thankful to u

    Hi,
    If you want to use a BSP in your workflow, this can fairly easy be done by incorporating your BSP as a webactivity in your own flow or into an existing one. Things to consider when creating webactivitysteps in your workflow are:
    - Making settings in WF_HANDCUST.
    - Make settings in SICF: here you have to activate the WSHANDLER (pad /default_host/sap/bc/webflow/wshandler) and your own BSP which is somewhere under pad /default_host/sap/bc/bsp/&name_of_your_bsp&
    - Make settings in WF_EXTSRV: here you can make settings between the import and export parameters of your BSP and the (future) parameters in your workflowtask. When all these settings are made correctly, you can generate a WF-task with the corresponding button in this transaction (a wizzard will be started). The connection between the task and your BSP will be stored in table SWLWPTSSID.
    Try if you can figure it out with these transactions. Good luck!
    Kind regards,
    Joost van Poppel

  • Handling events in BSP application using WML tag Extensions

    Hello Everyone  ,
                            We are developing a BSP applications for Mobile handheld using WML tag library. I am looking for some code samples to know how we can handle evevents inside the BSP using the WML tag library.
    Can any one of  you plesae help us by placing a code snippet for handling onInputprocessing() methods (BSP Using WML Tag extensions).
    I mean to ask how we can handle events inside the BSP applications that uses the WML tag library.
    I know about how to handle BSP events using HTMLB and XHTMLB tags frameworks.
    Thanks for your help in advance.
    Thanks,
    Greetson

    Is this WML tag library something that is supplied by SAP u2013 as a BSP Extension Element?  Or are you just using WML tags directly in your layout?  I can tell you in general that if you want to generate HTMLB events from regular HTML code you can generate the JavaScript calls using the htmlbEvent tag of the BSP extension library.  However your tags have to be running within an HTMLB Content tag for this to work.
    If you want to work totally without HTMLB then you need to use the simple HTTP Post but format the input name as OnInputProcessing(<function code>) like this:
    <input type="submit" name="OnInputProcessing(ok)" value="OK">
    This will cause the OnInputProcessing event handler to trigger without needing any HTMLB tags (this is how it was done in WebAS 6.10 before we BSP Extensions).

  • Calling a BSP application with MVC and send one start value

    Hi,
    I developed a BSP application with BSP. The application has a start page with one input field. The user gives a number and click the send button. The controller creates the modeler and gives the userinput as start parameter for the data search. After the data are read/found, the controller calls a view to show the data.
    This is very easy and does work.
    I have to call this simply application from another one: the caller application sends the start value.
    I don't know, if is better to send the start value in the URL or not. I tried it, but the controller cannot read it.
    How can I call the controller with a start value?
    Thank you!
    Bye
    Patrizia

    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

  • R/3 report to be  displayed via  BSP application

    Hi,
      Can anyone tell me  how to develop a  BSP application in SRM system which will diplay a  report developed in R/3?
    thanks.

    hi !!
    refer to link ->
    http://www.sapdevelopment.co.uk/webapps/bsp/bsp_exereport.htm
    i am giving the extract from same website below :
    Please follow following steps - >
    Creating a BSP which executes an ABAP report to retrieve data
    Step 1 - Create ABAP report to retrieve data
    Using SE80 create program ZBSP_GETDATA.
    Step 2 - Create new BSP Application
    Using SE80 create BSP Application (I.e. ZBSP_GRANTS).
    Step 3 - Create new page (initial.htm)
    Right click on BSP object name and select create->page (with flow logic).
    Step 4 – Populate ‘Layout’ tab
    Insert the following code into initial.htm layout section.
    <%@page language="abap"%>
    <%@extension name="htmlb" prefix="htmlb"%>
    <html>
      <head>
        <link rel="stylesheet" href="../../sap/public/bc/bsp/styles/sapbsp.css">
        <title> Intial page of BSP application </title>
      </head>
      <body class="bspBody1">
      <h1><img src="sap_logo.gif">  Transaction Display(TSTC)</h1>
       <% submit ZBSP_GETDATA and return with p_bsp = 'X'.%>
       <% import it_tstc to it_tstc from memory id sy-uname.%>
       <table width="80%" cellspacing="0" cellpadding="0" border="0">
         <tr>
           <td><b>T Code </b></td>
           <td><b>Program</b></td>
         </tr>
         <% data wa_tsts2 like line of it_tstc.
         Loop at it_tstc into wa_tstc. %>
         <tr>
           <td><%=wa_tstc-tcode%></td>
           <td><%=wa_tstc-PGMNA%></td>
         </tr>
         <% Endloop. %>
       </table>
    </body>
    </html>
    Step 5 – Setup ‘Type Definitions’ (TYPE declarations)
    TYPES: BEGIN OF t_tstc,
      TCODE type tstc-tcode,
      PGMNA type tstc-pgmna,
    END OF t_tstc.
    types: tt_tstc type standard table of t_tstc.
    Step 6 – Setup ‘Page Attributes’ (Data declarations)
    it_tstc
    wa_tstc
    TT_TSTC
    T_TSTC
    Step 7 – Activate and test
    Save everything and press the activate button, if all is ok press the test button which should open up a browser window and
    display your newly created BSP.
    *-- the code for BSP porgrams is
    *& Report  ZBSP_GETDATA                                                *
    *& Example of a simple data retrieval                                  *
    *& Used to demonstrate executing a report via a BSP application and    *
    *& using the data retrieved as the basis for the BSP app.              *
    *& If report is executed via a BSP then data is extracted to memory    *
    *& and then retrievd by the BSP....                                    *
    REPORT  zbsp_getdata                 .
    TABLES:     tstc.
    type-pools: slis.                                 "ALV Declarations
    parameters: p_bsp(1) type c no-display.
    *Data Declaration
    TYPES: BEGIN OF t_tstc,
      TCODE type tstc-tcode,
      PGMNA type tstc-pgmna,
    END OF t_tstc.
    DATA: it_tstc TYPE STANDARD TABLE OF t_tstc INITIAL SIZE 0,
          wa_tstc TYPE t_tstc.
    *ALV data declarations
    data: fieldcatalog type slis_t_fieldcat_alv with header line,
          gd_tab_group type slis_t_sp_group_alv,
          gd_layout    type slis_layout_alv,
          gd_repid     like sy-repid.
    *Start-of-selection.
    START-OF-SELECTION.
      perform data_retrieval.
      perform build_fieldcatalog.
      perform build_layout.
      perform display_alv_report.
    *&      Form  BUILD_FIELDCATALOG
          Build Fieldcatalog for ALV Report
    form build_fieldcatalog.
      fieldcatalog-fieldname   = 'TCODE'.
      fieldcatalog-seltext_m   = 'Trans code'.
      fieldcatalog-col_pos     = 0.
      fieldcatalog-emphasize   = 'X'.
      fieldcatalog-key         = 'X'.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'PGMNA'.
      fieldcatalog-seltext_m   = 'Program'.
      fieldcatalog-col_pos     = 1.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
    endform.                    " BUILD_FIELDCATALOG
    *&      Form  BUILD_LAYOUT
          Build layout for ALV grid report
    form build_layout.
      gd_layout-no_input          = 'X'.
      gd_layout-colwidth_optimize = 'X'.
      gd_layout-totals_text       = 'Totals'(201).
    endform.                    " BUILD_LAYOUT
    *&      Form  DISPLAY_ALV_REPORT
          Display report using ALV grid
    form display_alv_report.
      if p_bsp EQ 'X'. "If report run from BSP application
        export it_tstc to memory id sy-uname.
      else.
        gd_repid = sy-repid.
        call function 'REUSE_ALV_GRID_DISPLAY'
             exporting
                  i_callback_program      = gd_repid
                  is_layout               = gd_layout
                  it_fieldcat             = fieldcatalog[]
                  i_save                  = 'X'
             tables
                  t_outtab                = it_tstc
             exceptions
                  program_error           = 1
                  others                  = 2.
    endif.
    endform.                    " DISPLAY_ALV_REPORT
    *&      Form  DATA_RETRIEVAL
          Retrieve data form EKPO table and populate itab it_ekko
    form data_retrieval.
    data: r_tcode type range of tstc-tcode with header line.
    r_tcode-sign   = 'I'.
    r_tcode-option = 'CP'.
    r_tcode-low    = 'SE*'.
    append r_tcode.
      select tcode pgmna
       up to 10 rows
        from tstc
        into table it_tstc
       where tcode in r_tcode.
    endform.                    " DATA_RETRIEVAL
    *-- Dont foget to give points if it helps ...

  • BSP_ALL authorization object for BSP Application

    We develop a BSP Application and want to give the correct authorization object in the user roles.
    After looking on help.sap.com We see, we must add the BSP_ALL object and give the name of the application.
    I add the object in the role but it not visible in the role. In the profile I see the object but it's not possible to me to change the value ' '.
    Why can I see this object in the role ? and how can I adapt the value of this object ?

    The class of this Object CRM is not defined on the table TOBCT

  • Use a Customizable Logo / Image in a BSP Application

    Dear All,
        I am developing a BSP Application for a client. My company wants to use this same application for two clients. How can I dynamically change the logo of the company, used in the BSP Application? Say, how can the application administrator, who has access to a customization page, also upload the logo, once the application is transported to his server? Can this be done from within the BSP Application? I believe, we have to import it into the mime folder. But fow?
       Thank you all in advance.
    Regards
    Gladson

    <i>The administrator of Client A, should be able to upload a logo through the Administrator's page of the BSP Application,</i>
    Are you developing this Administrator page as well?
    what you could do in your code is just refer to image called logo.gif
    Ask Client A  to load their image to the BSP application from SE80 in dev (in their server) and ask them to transport to prod.
    ask Client B also to do the same.
    Both client A and Client B has to upload the image with the same name i.e logo.gif
    Regards
    Raja

  • BSP application on Blackberry

    Hello,
    I'm developing a BSP application for Blackberry. When I'm testing the application on the blackberry I'm getting an error:
    "SAP Note The Following error text was processed in the system: <htmlb:content> (*)  This browser is not supported for Design2003 the Internet Explorer as of 5.50 and the Mozilla as of 1.75 are supported "
    Thomas Jung already answered on this question (thanks btw)
    "You can't use the *htmlb libraries in a mobile BSP application. That means no htmlb:content tag. You must create your own rendering layout. "
    Can anybody explain some more in detail what is meant by this? Any help is really appreciated!
    Many Thanks!
    Siegfried

    Thanks Graham,
    In my case, I have a couple buttons "Execute" and "Clear". I need to know if the user push "Execute" in order to call a Function Module to create a Good Issue, otherwise clear the fields in the HTML screen.
    This is why I think I have to put my code to execute the Func.Module either OnInitialization or OnInputProcessing but I don't know how to catch as an event what the button the user clicked.
    Here is my HTML button.
                    <form method="post">
                    <input type="submit" name   = "onInputProcessing(eventid)"
                                        value   = "Execute" />
                    </form>
    and it is going to "OnInputProcessing" but "eventid is blank.
    I tried using different classes from IF_BSP_APPLICATION_EVENTS like CL_BSP_APP_IT00 but I'm getting a check syntax error (You can only use "class=>method" with static methods).
    response = CL_BSP_APP_IT00=>get_response( runtime->server->response ).
    It is right because the method is "Instance".
    If you have any example, please tell me how you handle the events or buttons in order to perform the right Function call or action, when the user click one of the buttons.
    Thanks in advance and Cheers,
    JC

Maybe you are looking for

  • How to change Dunning Text in Adobe form

    Hi All, In Dunning Adobe form I need to replace standard dunning text with my custom text. I found the node for that, but in that text node I am not able to fond where from that text is coming. Please Help me out in this. Form Name :f150_Dunn_SF(Adob

  • How do I upload files to an FTP Site in Leopard

    I am unable to upload files to an ftp site that was set up for me. I have read write permissions. I can pull files from the site but I cannot upload or place files on the site. The site was tested and is working for pc's

  • Date - how to get the number of the week

    I have a Date - string - w/e can be convered thats not the problem but how do I get the number of the week cuz the database holds events per week so I need to know the number of the week. I tried going true the api but I failed to find the right fuct

  • AIronet 1300 password and user name recovery

    hello all i have a cisco aironet 1300..unfurtunately i cannot access because i forgot the password and username.. how do we recover the username and password without affecting the commands encoded in the device ?? thanks

  • How to get regular google maps back on iPhone after ios6 "up(down)grade"

    Hoping someone from Apple will contact me about this. I recently downloaded the ios 6 (I hesitate to call it an upgrade at this point) and now my maps look like absolute garbage. I would like Google Maps back, properly (not the web app). I've read ab