Mini SAP 6.2: Executing First BSP Page

Hi All,
I am trying to execute the first BSP in Mini SAP 6.2. Getting the following error : Business server PAGE (BSP) error BSP exception: The URL does not contain complete Domainangabe. Even i tried to configure domain using Tcode RZ10, INSTANCE PRofile. I selected the Radio buttong Extended maintenance. THere also i am getting another error (Server p72367_BSP_00 is not active - action cannot be executed). Could any please tell me how to configure the FQDN. I already gone thro "BSP In-Depth: Fully Qualified Domain Names". But i couldnt solve the problem.
Thanks in advnce.
Raja T

Steps to follow for configuration
1) Transaction SMICM
2) Goto Parameters --> Display
There should be a parameter icm/host_name_full with value as <saphost.sap.com>  not just <saphost>
That is ,the url should be specified as Protocol>://<Hostname>.<Domain>.<Extension> :<Port>/
If it is not there and host name is just <server name> then do following:
Transaction RZ10
a) View profiles ,if no profile then press Import .
This will generate the profiles available (5 profiles), namely :
1)Default profile
2) Instance profiles
3)Start profiles
In instance profile of sap system (SID>_<INSTNAME>_<hostname>)
in Extended maintenance option,
b)Copy Profile to new Version
c) Create a new Parameter in the profile.
Select the icm/host_name_full in the parameter name and put the value <servername.domain.extension>
d) Save parameter and the profile and then Activate .This will create a new version of the profile.
e ) Then restart ICM.
Profile creation requires Admin rights for user for profile to be generated correctly.
Regards,
Ravikiran.

Similar Messages

  • Exception CX_SY_OPEN_SQL_DB while executing a BSP page

    Hi,
    I have created a BSP app'n with 2 pages. In one page i am using a class interface within that one method. In that method im firing a select query.
    If i run the BSP page, im getting the CX_SY_OPEN_SQL_DB exception with DBIF_RSQL_INVALID_RSQL error.
    I am not able to understand this issue. If any one had any idea, please reply me. I am very thankful if you do this.
    Thanks,
    Kumar

    Nitin,
    First , check if the Query is correct , then check the backed DB for any additional details , and also you might get more help if you post the same question in the BSP forums.
    How are you calling the query , do you have any internal tables or resultset where you store the values ?
    Arun

  • SAP Short Dumps when generating BSP page

    While generating my BSP page a short dump occurs saying that there is too much code basically. (more then 10,000 ABAP statments). This happens on my LAYOUT section of the screen and the weird thing is that I only have 2145 lines of code. 
    A little background is that we are displaying a tab strip with 8 tabs and many fields on each tab.  The user has a few more rules for displaying data but I'm finding that I can't add anymore code.  Has anyone found a way around this?

    Its not too difficult.  From your view that houses the tabstrip container, you just go ahead and call all the controllers for your individual tabs.
    <phtmlb:containerTabStrip id                    = "TabStrip3"
                                      collapsed             = "<%= application->T3_COLLAPSED %>"
                                      collapsible           = "TRUE"
                                      firstVisibleItemIndex = "1"
                                      hasContentConnector   = "TRUE"
                                      maxVisibleItems       = "5"
                                      onCollapse            = "myCollapse"
                                      scrollableItems       = "TRUE"
                                      selectedIndex         = "<%= application->SELECTED_chart2 %>" >
              <phtmlb:containerTabStripItem id    = "C1"
                                            title = "<OTR>Hours History</otr>" >
                <phtmlb:containerContentItem>
                  <bsp:call url     = "Chart1.do"
                            comp_id = "c1" />
                </phtmlb:containerContentItem>
              </phtmlb:containerTabStripItem>
              <phtmlb:containerTabStripItem id    = "C2"
                                            title = "<OTR>Project Hours Chart</otr>" >
                <phtmlb:containerContentItem>
                  <bsp:call url     = "Chart2.do"
                            comp_id = "c2" />
                </phtmlb:containerContentItem>
              </phtmlb:containerTabStripItem>
              <phtmlb:containerTabStripItem id    = "C3"
                                            title = "<OTR>6 week History</otr>" >
                <phtmlb:containerContentItem>
                  <bsp:call url     = "Chart3.do"
                            comp_id = "c3" />
                </phtmlb:containerContentItem>
              </phtmlb:containerTabStripItem>
            </phtmlb:containerTabStrip>
    I then handle the event for the tabstrip change and put the current selected tab into an application class variable or a model class variable.
    ****Get a Pointer to the application Object
      appl ?= application.
      data: event1 type ref to if_htmlb_data.
      event1 = cl_htmlb_manager=>get_event_ex( request ).
    case event_id.
    when 'tabstrip3'.
          if event1->event_type eq cl_phtmlb_containertabstrip=>co_phtmlb_event_tab_selected.
            appl->selected_chart2 = event1->event_server_name.
            clear appl->saved_selected_chart.
          elseif event1->event_type eq cl_phtmlb_containertabstrip=>co_phtmlb_event_collapsed.
            appl->t3_collapsed = 'TRUE'.
          elseif event1->event_type eq cl_phtmlb_containertabstrip=>co_phtmlb_event_expanded.
            appl->t3_collapsed = 'FALSE'.
          endif.
      endcase.
    Next in each controller at the start start of processing of the controller I just do a check to make sure that I an in the currently selected tab.  If not, I perform not controller logic, which in turn doesn't call in application logic from my model class or make a call to any view.
    data: appl type ref to zcl_es_bsp_appl_ptime_ent.
      appl ?= application.
      check appl->selected_chart = 'C1'.
    That way all my flow logic (selected tab - active tab) stays in my controller and view doesn't get cluttered up with any of that.

  • Reg: Executing BSP Pages

    Hi,
    I am working on SAP R/3 4.7. In the web application builder (SE80), the preview tab is not present. How to enable it.?. Also not able to execute the pages. I tried by copying the url from the properties tab. How to execute the BSP page..?
    Thanks in advance.
    G.Natarajan

    The preview tab was removed (since it really only worked with static HTML anyway) by SAP in recent support packages.  That has been discussed on the forum in the past if you want all the details.
    What kind of problems are you having testing your application?  Do you get any error messages?
    I'd bet the answer to your problem is in one of the following weblogs. 
    /people/mark.finnern/blog/2003/09/18/bsp-trouble-shooting-browser-settings
    /people/brian.mckellar/blog/2003/09/25/bsp-in-depth-fully-qualified-domain-names
    /people/brian.mckellar/blog/2004/06/11/bsp-trouble-shooting-getting-help

  • Report standard SAP into BSP page

    I want know how I can read the output of a standard report SAP R/3 into a BSP page ( WAS 6.20 ).

    Hi Rick,
    a short answer would be: create a BSP application and place the code into the onInizialization handler. But since you are completely new to BSP I'd recommend the following links for tutorials:
    http://help.sap.com/saphelp_webas620/helpdata/en/e9/bb153aab4a0c0ee10000000a114084/frameset.htm
    http://help.sap.com/saphelp_webas620/helpdata/en/c8/101c3a1cf1c54be10000000a114084/frameset.htm
    Recommended reading is also https://weblogs.sdn.sap.com/pub/wlg/542. [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken]
    After you have done this and you still got questions, switch over to the BSP forum. There you'll find a lot more experts.
    Have fun with BSP,
    Ulli

  • Assigning Roles to BSP Page

    Happy Friday All
    I think I already know the answer to this question, but I have been know to be wrong at times.  I am about to launch my first BSP page to production.  Since my company does not have Portal installed, the applicaiton will only be available on the corporate INTRANET. So anybody that has an SAP login to production can run this page.  I would like to restrict it only to those people in our customer servcie group. From most of what I have read, it appears that in order to do this I have to install the Portal.  Please tell me I am wrong?

    Hi,
    this is not entirely necessary. You could work with authorizations for that. Right before you call your start page, you have to check if user has the authorization for the page; if so, go ahead, otherwise display a page with an error message indicating that user may not access the application.
    check [this link |http://help.sap.com/saphelp_nw2004s/helpdata/en/02/4b52922a8d11d5991f00508b6b8b11/frameset.htm]and this [other link|http://help.sap.com/saphelp_nw2004s/helpdata/en/02/4b52922a8d11d5991f00508b6b8b11/frameset.htm].
    [This one|http://wiki.sdn.sap.com/wiki/display/Img/HowToConfigureUserLookupiFrame-BasedServer+Module] talks more about security in BSP applications.

  • 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.

  • How to create empty BSP page and execute it

    Hi,
    Please give me the steps for creating an empty bsp page and executing it using transaction SE80.
    I have created a package and a BSP application.
    I need to get a url for this page that points to a document/image. I need help with this urgently and would appreciate a quick response.
    Regards,
    Meenakshi

    Hi,
    Please have a look at
    http://help.sap.com/saphelp_nw04/helpdata/en/46/bb181aab4811d4968100a0c94260a5/content.htm
    regards
    Mark

  • Junk Characters on first two pages of Cheque Printing SAP Script.

    Hi All
    I implementing cheque printing for one of our client's Oman based subsidiary. I have copied the standard SAP Script F110_PRENUM_CHCK into a Z-Form and maintained its original language as EN. I have commented out all the unnecessary peices of information in all the windows and customised as per my requirement.
    Now the problem that i am facing is that when i execute this script through the standard driver program RFFOUS_C, i am getting junk characters on first two pages of the script. The info displayed comes in the HEADER and MAIN Windows. The desired output is coming in the 3rd, 4th and 5th pages.
    Please let me know how should i get rid of these junk characters.
    Regards
    Harsh
    PS: All info printed is in English only.

    Hi
    Thanks for your response.
    Yes, the remittance advice header info is getting printed in the HEADER Window and its contents in the tabular structure are in the MAIN Window.
    I am passing EN as the language.
    Adding to this, the report RFFOUS_C gets executed and i am checking the spool that is created which has the junk characters on the first two pages.
    Regards
    Harsh

  • Collect Error Message from SAP program to BSP Page

    Hi Experts,
    I am displaying an error message in the form of pop-up Message  in a Screen based on a condition using BADI on R/3 screen , but when i am calling the screen from Portal (BSP PAge) I am unable to see the Error Message which is being displayed as a pop-up in r/3..
    How to catch the error and display in BSP Page.....
    I have searched the forum but didnt find any suitable replies....
    Plz help
    Regards,
    Srikar

    Hi Srikar,
    It depends.
    Generally though you display a message in SAPGUI it does not display automatically in BSP.
    Some times you have to manually write some code to populate and display a message in BSP.
    First you need to find the BSP page and write some code to display error messages in the same..
    Regards,
    Sreekanth

  • 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.

  • PDF sent from SAP 4.6C only shows the first 10 pages

    Since a few weeks a spoolrequest that is produced by a job contains more than 10 pages. This report is automatically converted to pdf and mailed to an external recipient, but the pdf only contains the first 10 pages.
    When I look into this spool request in SAP, I can see all pages.
    Does anyone know how to include all pages in the PDF?
    thanks in advance,
    Maarten Ettema

    hi,
    by default only the first 10 pages of spool are being saved (or converted to pdf in another way). you can change this settings. here i'll show you the way :
    - goto SP02 or SP01, input suitable parameters
    - select your spool request
    - press F6 to display the content
    - navigate to : goto >> display request >> setting
    - from popup window, on "Display Area" section, you can set the page settings for your spool. the default value is only from page 1 to 10, you can set it as you need (in example from page 1 to 100), but beware, setting it too high in some case will cause memory issue.
    hope it helps you.
    rgds
    alfonsus guritno

  • Calling an SAP transaction from a BSP page

    Hi, I have created some BSP pages that are rendered inside SAPGUI screens using a HTML control object. When looking at a CRM system I came across the Business Partner Cockpit (CRMD_ORDER_BP) which displays activities for a business partner using a BSP implemented by CL_CRM_CCKPT_CFS_SERVICE_HTTP.
    The interesting thing about this BSP, is that you can click on the transaction number in the BSP and it launches the appropriate SAPGUI transaction to display the details of this activity.
    Looking at the HTML source, the link is defined like this: -
    <a href="SAPEVENT:OBJTYPE=BUS2000115&OBJKEY=CDAEBBF5BD903E4390DA7984D3054A65">0920000086</a>
    In the above example this activity is a sales order.
    Can anyone help me understand how this works, and how I can use it to navigate to SAP transactions using links in my BSP pages that are placed in SAPGUI HTML controls?
    Thanks
    Graham

    Hi Graham!
    I have a similar problem in transaction CIC0 and the Sales summary tab in CRM.
    I have created a new class and assigned it to a new fact sheet. One column in this fact sheet should be a hyperlink defined in the way that you have described.
    When using method get_event_parameter I are not getting any data for the SAPEVENT parameters - I don't get the value, only the keys:
    <a href="SAPEVENT:?OBJTYPE&OBJKEY>
    How should I procced to assign an object type and object key to this SAPEVENT???
    Would also be very nice if anyone could explain how to "call transaction" works.
    Help understanding this would be very appreciated.
    BR
    Mattias

  • Executing BW Queries in BSP Page

    Hi,
      Can someone provide source code taking one query and accessing it through the BSP event handler page?
      Will the BSP Page can replicate the same functionality of the BEX web application?
      Can i have drilldown,graphics everything in BSP application?
    Thank you
    arun

    Hi,
    Answer to Arun:
    <i>Can someone provide source code taking one query and accessing it through the BSP event handler page?</i>
    You have to use CL_RSR_REQUEST/CL_RSR_DATA_SET classes (other option is OLAP BAPIs where u have to use MDX stts.)to execute BW queries thru ABAP. (sample code is available in ABAP forum)
    <i>Will the BSP Page can replicate the same functionality of the BEX web application?</i>
    No, you have to code everything yourself. but will be a tedious job.
    <i>Can i have drilldown,graphics everything in BSP application?</i>
    Yes you can, but again as i said you have to code everything , it dosent come easy as in the case of WAD.
    Answer to LUCA:
    One of the possible ways is to use redirect url (url poinintg to the BW query url) in the BSP page.
    you can also pass query variable values via URL.
    example:
    TEMPLATEID=<template name>&var_name_1=<variable name>&var_value_ext_1=<var value>&var_name_2=<var name 2>&var_value_ext_2=<variable value 2>
    Hope it helps.
    Regards
    Raja
    Note: Better place for this question would be BSP forum
    Message was edited by: Durairaj Athavan Raja

  • Automatic refresh of BSP page with certain intervals  like 10 mins once

    Hi all,
    I am writing a BSP page ,which reads my table data and display.
    The table data will be automatically getting changes every 10 mins, based on the BGD job.
    I want my BSP page alos automatically refresh every 10 mins...
    Is it possible?
    Please help.
    Thanks in advance.
    Ram

    Hi
    Try this
    window.setInterval("autosave()",30000);
    and also go through this link
    [Auto Refresh|Self-refreshing BSP ?;
    [Auto Save|Re: Auto Save Functionality to be implemented]
    Regards
    Arun
    Edited by: Arun Padmanaban on Mar 21, 2009 10:01 AM
    Edited by: Arun Padmanaban on Mar 21, 2009 10:03 AM
    Edited by: Arun Padmanaban on Mar 21, 2009 10:06 AM

Maybe you are looking for