BSP Page for Common Access

Dear Expert,
I need a help,
I have a unique development system.
We are trying to create a web page that can be accessed by web user,
and they can post a question also.
Once the question is submitted, CRM will create a new service request.
We are about to create a web page using BSP Page in our website.
We have an idea, that we might create an user account that'll be used to sign-in to our CRM backend,
to create a service request.
Is it possible to do so? since we have might meet boundaries in sign-in to our CRM application.
Please expert,
I'm very indeed of your guidance.
BR,
Robin

Using SICF and create a communication ID and set it in the settings

Similar Messages

  • Trash in BSP-Pages for ABAP-reports

    Hi,
    it´s strange that I´m getting trash in the BSP-Pages that represent an ABAP report. I just can´t identify how it is produced and shows up between Titel and real list. I use
              SUBMIT (progr_name)
                 WITH SELECTION-TABLE sel_table
                 EXPORTING LIST TO MEMORY AND RETURN.
    and then CALL FUNCTION 'LIST_FROM_MEMORY'
    later    CALL FUNCTION 'WWW_HTML_FROM_LISTOBJECT'
    I make a loop with the output and save all in a variable of type string, which is later used in the layout page.
    After execution, I get something like:
         Title       page Nr.      User name
         trash
         more trash
         even more trash
         list
    the data that I describe as trash is information from the list, but it also appears where it must.
    Has anyone experience with it ?? Thanks

    I am also getting some "trash" at the beginning of my report in some cases. The report list I am sending the FM contains Material Descriptions and our descriptions (can) contain a combination of slashes (/), colons ( and commas (,) (eg. SPARES:DISPLAY/GASKET,MONO,GEMINI) - I find that if I remove the commas from the descriptions during the reporting, that I do not have this problem. However this is not a viable solution. Any ideas would be very helpful.

  • BSP page for Search Function in  Solution Database

    Hi
    I would like to know if there is an BSP available for the Search Function in Soltution Database. If yes then i would like to know what is the name of the BSP.
    <removed_by_moderator>
    Thanks
    Tenielle

    Dear friend,
    Have you done all the customizing via spro->scenario specific->service desk->solution database.
    There is a note SAP note 951145
    also you have to build the index..check via SAF tool...all the doc is there in IMG.
    Secondly...there is also a troubleshooting option.....
    This will help u....
    Pls assign pts

  • Info about bsp page for selecting transaction type

    Hi.
    When you create new business transaction of activity you get a pop-up window, where you choose the type of transaction type. I would like to change some settings on this component, but I don't know which component is this. F2 button doesn't work, because this is already a pop-up window and it doesn't allow to open new pop-up window where I would see this info.
    Does anyone now which component is this?
    Help will be appreciated.

    Hi Robert,
    Actually this pop-up window is nothing out one another view and it is displaying as pop-up when create_popup method of IF_BSP_WD_WINDOW_MANAGER interface triger.
    With this method we pass the component usage name in which that component available.
    If u will check EN_ONNEW event handler , u will found this code
         proctype_bo_popup = comp_controller->window_manager->create_popup(
                              iv_interface_view_name = 'ProcTypeBOWindow'
                              iv_usage_name = 'CUBTFOLLOWUP'
                             iv_title = lv_title ).
    In this code CUBTFOLLOWUP is the component usage name which is available in Run Time Repository.If u will check there is one component bound with this usage ie. BTFOLLOWUP.
    In this component 3 view are available. from these views BTFOLLOWUP/ProcTypeBO is the view which is displaying this pop-up for transactions.
    Regards
    Gaurav

  • How to set F4 help for an inputfiled of BSP page?

    hi friends,
    I have to set F4 help for a Field in my BSP page. for this i am doing like this.
    Oninitialization Event....
    tables : t001p ,pa0001 ,t554t.
    data : begin of it,
            awart like t554t-awart,
            atext like t554t-atext,
           end of it.
    data : it_t554s like it occurs 0 with header line.
    parameter : k_pernr like pa0001-pernr.
    data : werks like pa0001-werks,
           btrtl like pa0001-btrtl,
           abs_grp like t001p-moabw.
    clear it_t554s.
    refresh it_t554s.
    select single werks btrtl into (werks ,btrtl) from pa0001
                        where pernr = K_pernr.
    select single moabw into abs_grp from t001p where
                              werks eq werks and btrtl eq btrtl.
    select awart atext from t554t into corresponding fields of it_t554s
                                   where moabw eq abs_grp..
    append it_t554s.
    endselect.
    now it_t554s contails the values to display F4 help in BSP page inputfield.
    how to assign this as F4 help to inputfield....
    I saw some threads. It's getting me to confuse...
    I am new to this topic...
    plz help me.........
    Regards,
    Shankar.

    solved

  • Adding login page to framework page for anonymous user/access

    Hi all,
    I have created all iviews, page and a role with anonymous authentication. Created desktop,set theme, added rules for the custom framework page for anonymous access.  We need to show some information even before user logs in. How should I add login iview to the custom framework page?
    Thanks,
    Dileep

    Hi Dileep,
    I want to add the login iview to the framework page for anonymous access like you.
    I'm new with the portal. Can you guide me to do this from the beginning?
    Thanks!
    Chan

  • Field value on BSP Page

    Hi,
          I have a requirement to show previous entered values in an input  field on BSP Page. for example suppose I enter value '0998' in an input field say 'XYZ'  and then I close or refresh the browser. again i open the page in browser and click the input field then system should suggest me the previous entered value i.e. '0998'.   does anyone have idea how we can do it?
    Regards
    Amit kumar
    Edited by: amitku1201 on Jan 8, 2010 12:19 PM

    Hi Amit,
    I saw your code..
    <htmlb:form id="Form1" method="POST" autoComplete = "TRUE">
    <bsp:findAndReplace find = "ON" replace = "ON">
    In the link I provided
    <bsp findAndReplace find = "off" replace = "on">
    I dont see the closing tag
    </bsp:findAndReplace>
    anywhere in your code.
    The tag should be not used immediately after the FORM tag instaed it is used just before the tag for particular element.
    Like in your case if you want to used it for the inputfield i_case , it should be done as
    <bsp findAndReplace find = "off" replace = "on">
    <htmlb:inputField id="i_case" value="<%=i_case%>" type="string" maxlength="12" width="100"/>
    </bsp:findAndReplace>
    The inputfield tag will be used between find and replace tags.
    I hope this will help you solve the issue.
    Regards,
    Anubhav

  • Display image in BSP page,images are on a web server outside of SAP

    Hi,
    I am creating a BSP page for employee profile.The page needs to show an emp picture along with other info.The images are not in the MIME repository,they are stored in a separate web server.I am able to display the page using
    <img border="0"                     src="http://.com/xyz/xyz.bmp" >
    However this is a non secured test server. If the images are on a secured server,I am assuming,an id ,pswd authentication will be required.Can I get the authentication done automatically so that the page is rendered seamlessly for the end user?
    Would SSO help if this web server is a portal server?what if the web server is not a portal server?

    Hi Manidipa,
    The Http class in SAP can also be used in passing the required authentication information to the non-SAP portal system.
    http://searchsap.techtarget.com/whitepaperPage/0,293857,sid21_gci1084087,00.html
    There is an article written by Angeli Axel which does the same. The article has got ABAP HTTP classes and methods to get and post the parameters to the non-SAP portal system.
    The same solution can be done by passing the credentials in the url. The custom solution would be to pass the required credentials in the url and the receiving application should grab those information from the url and confirm the authentication. After that it should be able to provide you the image. After getting the image it can be simply displayed in your BSP using iframe tag.
    For eg if the receiving side is in java, then the following code can be used to receive the username and password. Once you get this you can verify the validity depending on the datasource whether LDAP(MS-ADS, Sun one, Novell edirectory) or ordinary database(Oracle, MS SQL Server .. etc) is used for storing the credentials.
    try {
              String userName = request.getParameter("username");
              String password = request.getParameter("password");
              if (validateUser(userName, password)) {
                 response.sendRedirect("mainpage.jsp");
    The main page here you display the image
    } catch (Throwable t) {
    The above code should be considered as pseudo code for any server side language.
    Please let me know if this helps.
    With regards,
    Rajesh Khanna Venkatesan.

  • Step by Step Debugging in BSP page

    Hi,
      Can any one tell me How to do the Step by step debugging? In ABAP application we are doing through /h command.Like this any command is there in BSP page for debugging? And where actually we need to place the break point means in Controller or in View?
    Thanks in advance,
    Regards,
    Anu.

    HI
    GOOD
    GO THROUGH THESE LINKS
    http://www.sappro.com/downloads/technical_guides/WebAppDevTOC.pdf
    http://www.sap.com/solutions/netweaver/pdf/50052038.pdf
    THANKS
    MRUTYUN

  • How to create an url for bsp page to access in IE?

    hi friends,
    I am new to BSP topic.
    I have created 4 BSP pages. and 1 Main BSP page. Now in Main BSP page i attached all the 4 BSP pages links.
    Now when i test the Main BSP page it will show all the 4 BSP page links. All are working fine.
    But the end user has to access this through IE by typing Main BSP page full path. It's some what becoming critical to enter full path. It will be access in internally(intranet) only not outside.
    For this i want create an URL like http://empess.
    When the user type this URL http://empess in IE and press enters then my main BSP page has to open.
    How to do this. any helps will appreciate...
    Regards,
    Shree.

    hi,
    As u said i created External Alias as /ITCESS to my BSP application.
    And i select my BSP application name from the Target Element tab. Then i selected the alias name i right clicked on it, i selected TestExt. Alis option. It's working fine.
    But now the problem is, i want this to display in IE direclty, when user type the /ITCESS in Internet Explorer addres bar.
    Regards,
    shankar.

  • Error accessing Inventory Collaboration Hub (ICH) BSP Pages

    Hi
    I am trying to access basic ICH page in SCM 4.0 as well as SCM 4.1. I am getting the following error:
    BSP exception: Access to page default.htm requires HTTPS. HTTPS has not been configured on this server.
    Regular BSPs are working fine in both the servers.
    Initially we had HTTP and SMTP configured and based on the error message I tried configuring HTTPS.
    SMICM status shows HTTPS with port but not active. When I tried to activate HTTPS in SMICM, i am getting
    'Operation failed(rc=1)'
    Do we really need HTTPS to get default ICH login page.
    Please guide on this to get ICH page.
    Regards
    Ragavan.

    Hi
    I had configured the SAP Web AS to display BSP pages.
    General BSP applications are working fine.
    But when I tried to access ICH related BSP pages, i am getting the following exception:
    BSP exception: Access to page default.htm requires HTTPS. HTTPS has not been configured on this server.
    Is there any document for HTTPS configuration in SAP Web AS in order to get ICH BSP pages, as my understanding is we need to have HTTPS configured properly to make ICH BSP pages working.
    Thanks in advance for comments and helps.
    Ragavan.

  • Unable to capture the Idle time for BSP page

    Hi Experts,
    I want to capture the Idle time of my BSP page. If that is 5 mins then i have to display the pop up displaying the remaining time.
    Please let me know how to capture the IDLE TIME. not the time after the page is loaded.
    Any suggestion will be helpful.
    Aready checked in SDN but unable to get the solution so posting it.
    Thanks in advance.
    Sravanthi.V

    hi,
    After capturing the idle time iam giving the warning popup to user before 5mins of expiry.Now my requirement is if the user clicks on OK button of popup the page should get refresh. i.e.Idle time should of system should break and we have to get one more hour for expiry.
    Thanks in advance,
    Sravanthi.V

  • Error while opening BSP:page included for Technical Reasons: VIsta & Win7

    Hi Experts,
    when trying to open the Appriasal document in user worklist  BSP page opens as an  R/3 screen saying "this page is included for Techinical reason" and then stops. it is nop
    This issue is faced in Windows Vista and Windows7 not in lower versions of Windows OS.
    Any suggestions will be really helpful and will be rewarded
    With Regards,
    Dayakar.

    Hi Dayakar ,
    Check in nwa if you see any traces related to the issue . Check how other BSP's behave in your portal and try viewing the contents directly from backend . You mentioned that the issue is coming in win7 , vista - so it could be that the portal is not compatible . Check out the compatibility in PAM .
    Regards
    Mayank

  • How to restrict the access of "InPlaceRecordsListSettings.aspx" and "InPlaceRecordsSettings.aspx" pages for some users and allow the access for some users?

    I have a requirement to restrict the access of "InPlaceRecordsListSettings.aspx" and "InPlaceRecordsSettings.aspx" pages for some of the users and allow the access for some of the users.
    I have applied the below code on the web.config file but this modification impacting only on the web application level not on the site collection and sub site level.  
    <location path="_layouts/15/InPlaceRecordsSettings.aspx">
        <system.web>
          <authorization>
            <deny users="*" />
          </authorization>
        </system.web>
      </location>
    <location path="_layouts/15/InPlaceRecordsListSettings.aspx">
        <system.web>
          <authorization>
            <deny users="*" />
          </authorization>
        </system.web>
      </location>
    When I tried the access on
    :<portno>/sites/<scname>/_layouts/15/InPlaceRecordsSettings.aspx">http://<servername>:<portno>/sites/<scname>/_layouts/15/InPlaceRecordsSettings.aspx page allowed the access for all users.           
    Please suggest the possible solution to restrict the access of "InPlaceRecordsListSettings.aspx" and "InPlaceRecordsSettings.aspx" pages on SharePoint2013.
    Thanks
    Ramasubbu

    You can't do it from OOTB. 
    _layout folder is accessible to the users if they have read access in any of the site even subsite.
    You can modify *.aspx file, add your custom control which will check user.
    [custom.development]

  • BSP page only works for me

    Hi,
    I have a very weird problem with a BSP-page I created.
    The situation is the following:
    - I can run my BSP page the way it should (it uploads a file of name e.g. TEST.CSV to the application server, and first checks if the files selected is really TEST.CSV.
    1 - When somebody else tries to acces my bsp page, and logs in with their own SAP login, they get the error, saying that the filename is not TEST.CSV
    2 - When I login with my SAP login (working in situation 1) on their PC, it gives the same error, saying that the filename is not TEST.CSV
    3 - When somebody uses my PC (from working situation 1) and logs in with their own SAP login, it still gives the same error
    so: only when I login with my own SAP login on my own PC, the PC does what it should do.
    What can be the problem?
    the other users should normally have more authorizations than I have, so I guess that's not the problem...
    ANY! ideas are welcome!
    thanks a lot, points will be awarded of course!

    Ok guys, I have found what is the problem: Internet Explorer.
    Everything works perfect on Firefox, but in Internet Explorer, it always goes to the "wrong_file.htm" page like you can see in the code below. Some of the elements used must me firefox-only, although this really surprises me.
    Any user can run the BSP perfectly on any pc, using firefox. Using IE, it doesn't work.
    (Schrijven naar de UNIX server werkt dus perfect Eddy)
      find multipart containing file
    clear error.
        num_multiparts = request->num_multiparts( ).
        while i <= num_multiparts.
          entity = request->get_multipart( i ).
          value = entity->get_header_field( '~content_filename' ).
          filenamecheck = entity->get_header_field( '~content_filename' ).
          if not value is initial.
          found a file!
            navigation->set_parameter( name  = 'content_filename'
                                       value = value ).
            content_type = entity->get_header_field( 'Content-Type' ).
            navigation->set_parameter( name  = 'content_type'
                value = content_type ).
          get file content
            file = entity->get_cdata( ).
          get file size
           content_length = xstrlen( file ).
            navigation->set_parameter( name  = 'content_length'
                value = content_length ).
    check if filename is correct
            TRANSLATE filenamecheck TO UPPER CASE.
            if filenamecheck ne 'CG_BRA_PRO_FIN.CSV' .
            error = 'X'.
            else.
    data: data_TAB type table of string, LIN TYPE LINE,fname type string.
    split file at CL_ABAP_CHAR_UTILITIES=>CR_LF into table data_TAB.
    fname = '/usr/sap/CG_BRA_PRO_FIN.CSV'.
    OPEN DATASET fname FOR OUTPUT in TEXT MODE encoding default.
    if sy-subrc gt 0.
    WRITE: / 'Error opening file'.
    endif.
    LOOP AT data_TAB INTO LIN.
    TRANSFER LIN TO FNAME.
    ENDLOOP.
    CLOSE DATASET FNAME.
            exit.
        endif.
    endif.
          i = i + 1.
        endwhile.
       if error eq 'X'.
    navigation->goto_page( 'wrong_file.htm' ).
    else.
    navigation->goto_page( 'end_upload.htm' ).
    endif.

Maybe you are looking for