Reg BSP

hi friends..
i m working in ECC 6...
i m interested to BSP..
is possible to work BSP in ECC 6 ? else we need any other installation ?
i know in se80 we can create (according doc)..
but it show error like follow
Service cannot be reached
1.The termination occurred in system DEV with error code 403 and for the reason Forbidden.
2.The selected virtual host was 0 .
plz gimme some help

check out this blog for the steps.
/people/durairaj.athavanraja/blog/2005/08/21/running-your-first-bsp-application-in-sap-netweaver-04-abap-edition--nsp
search this forum and the BSP blog area where you will find lot of resources.
Regards
Raja
PS: spend sometime to give a proper subject line for your queries.

Similar Messages

  • Reg:bsp(mvc)

    hi to all,
    i had developed a stateful BSP application using MVC .
    in the first view iam entering a material number.
    in the second view iam displaying the records from a table based on material number.again when i make the application to stateless it is displaying the second
    view.with writing a code for a stateless application.i.e server side cookies.
    could any one help me out.
    with regards.
    gangadhar.

    Hi,
    To set data using cookies,
    call method cl_bsp_server_side_cookie=>set_server_cookie
              exporting
                name                  = 'ZF0707'
                application_namespace = str_app_ns
                application_name      = str_app_na
                username              = 'shtml'
                session_id            = str_ses_id
                data_name             = 'EMP_DATA'
                data_value            = itl_delview_tab
                expiry_time_rel       = 7200.
    To get the data using cookies,
    call method cl_bsp_server_side_cookie=>get_server_cookie
        exporting
          name                  = 'ZF0707'
          application_namespace = str_app_ns
          application_name      = str_app_na
          username              = 'shtml'
          session_id            = str_ses_id
          data_name             = 'EMP_DATA'
        changing
          data_value            = itl_delview_tab.
    here itl_delview_tab is an internal table.
    Also go through the below link,
    http://help.sap.com/saphelp_nw04s/helpdata/en/bd/4cd23a09313b37e10000000a11405a/content.htm
    Please close ur earlier thread and award points if u have got the solution,
    Re: REG:BSP(MVC)
    Regards,
    Sachidanand.B

  • Reg:bsp error in ICF node

    hi ,
    i had developed a BSP Application in sap 4.7 ,but when i test it iam getting the below error .
    certain ICF nodes must be released in transaction SICF for the BSP Extensions HTMLB
    SAP/BC/BSP/SAP/SYSTEM
    SAP/BC/BSP/SAP/PUBLIC/BC
    SAP/PUBLIC/BSP/SAP/PUBLIC/BC
    could any one help me out regarding this issue.
    Thanks & Regards
    Satish.

    In OSS note <b>517484</b> on https://websmp204.sap-ag.de/notes , and there we can find that for BSP following services should be activated!
    <b>Goto SICF Tcode & activate the below nodes:</b>
    /default_host/sap/bc/bsp/sap
    /default_host/sap/bc/bsp/sap/system
    /default_host/sap/bc/bsp/sap/public/bc
    /def ault_host/sap/public/bc (available for 620 with Support Package 34)
    /default_host/sap/public/bc/ur (available for 620 with Support Package 34)
    /default_host/sap/public/bsp/sap/public
    /default_host/sap/public/bsp/sap/public/bc
    /defaul t_host/sap/public/bsp/sap/system
    /default_host/sap/public/bsp/sap/htmlb (as of Release 620 Support Package SAPKB62026)
    Note: After you activate the BSP service, the corresponding application services must also be activated.
    Raja T
    Message was edited by:
            Raja Thangamani

  • Reg BSP table column title

    Hi All,
    I have problem with BSP table title display for one of the field.
    The current code of
    <%-- -
    Create table for line item----
    --%>
                                                      <htmlb:tableView id    = "tv_eban"
                                                                table = "<%= it_final %>" >
                                                      </htmlb:tableView>
                                                      </htmlb:tabStripItem>
                                                  </htmlb:tabStrip>
    The table field titles are defined and comes by default. From where does the sap table title text is coming. Here can we now update to display the new title for one of the new table field.
    Thanks in advance. Please let me know if you need any further details.
    From
    Reddy.

    Hi Readdy,
    The column title of the BSP application comes from each data-element's field label of your table columns.
    For example, let us assume that internal table contains two columns, say
    col1 type char10
    col2 type char50
    where,
    col1 and col2 are column names of the internal table and
    char10 and char50 are data elements associated with col1 and col2 respectively.
    Now when you display this structure in a table view then by default the title is got from the data element. The field label in the data element is used for this purpose.
    In our example, the char10 field label is blank and char50 filed label is 'c'. So by default the col1 title will be blank and col2 title will be 'c'. (Don't worry i have cross-checked it).
    There are three ways where you could give your own title
    1. Provide a correct data element to the columns with correct field labels.
    2. Change the BSP code by providing the title as given below,
    <%@page language="abap"%>
    <%@extension name="htmlb" prefix="htmlb"%>
    <htmlb:content design="design2003">
      <htmlb:page title = "Table view column defult title text ">
        <htmlb:form>
            <htmlb:tableView id="tv1" table="<%= itab %>">
            <htmlb:tableViewColumns>
            <htmlb:tableViewColumn columnName="col1" title="Column 1"></htmlb:tableViewColumn>
            <htmlb:tableViewColumn columnName="col2" title="Column 2"></htmlb:tableViewColumn>
            </htmlb:tableViewColumns>
            </htmlb:tableView>
        </htmlb:form>
      </htmlb:page>
    </htmlb:content>
    3. To implement a iterator for this table view and change the title. (This has loads of features in order to modify the table view display).
    Hope it helps! Please search in the sdn forums for more intresting ways of using the tableview tag. As suggested by SAP Mentor Graham Robinson, please look into the example BSP application for more information.
    Regards,
    Maheswaran
    Edited by: Maheswaran B on Mar 8, 2010 5:02 PM

  • Reg:BSP and e-Recuitment

    Hi All
    I have to implement e-recuitment and also i need to customize it.
    i am good in webdynpro java and EP but i dont have exposure to webdynpro ABAP.
    For e-recuitment should i know webdynpro ABAP.
    for this what are the basic requiments.should i install ABAP stack for development.
    or is it possible to develop in webdynpro java.
    please provide me how to configure e-recuitment business package in portal.
    Thanks  & Regads
    Daya

    Hi Ramki
    I am more confortable with webdynPro java so i wish to go with webdynPro java.
    Please let me know more information about how to configure  and how to proceed with
    Thanks & Regards
    Kirubakaran D.

  • Manual or link of htmlb

    Hi guys..
    My experience in htmlb is zero as we know cause my topics. So, it would be easy if somebody has a tutorial or a link to help me about the basis of this "lenguage"..
    Tx again!
    Mon.

    Hi Mon,
    The best way for you to learn is through the documentation from help.sap.com (reg BSP applications).
    http://help.sap.com/saphelp_nw04s/helpdata/en/4e/ac0b94c47c11d4ad320000e83539c3/frameset.htm
    And also in the SE80 try working out with the sample BSP application -- SBSPEXT_HTMLB
    You can also try learning from the Tag Browser in the SE80 about various tags like htmlb, bsp etc
    Hope this helps you.
    All the Best!!
    Regards,
    Shailaja

  • Reg:Accessing webservices in BSP

    Hi All,
    I have imported a web service into my bsp application and I am using one of its methods.I am able to send input to the model method but unable to get back the response from the model i.e after execution.
    Can anyone help me in this issue.Points will be rewarded for the helpful answer.
    Thanks in advance.

    Hi DurgaRao,
    Your application might be giving an exception while determining the business system.
    U can catch that exception by using the classes CX_AI_SYSTEM_FAULT and CX_AI_APPLICATION_FAULT.
    Some times it may raise the exception GET_BUSINESS_SYSTEM_ERROR An error occurred when determining the business system (SLD_API_EXCEPTION)
    so please try first by putting that catch.
    the following links contains some useful information which may solve ur problem.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/6066fbe8-edc4-2910-9584-a9601649747d
    Consume web service in ABAP proxy with SOAP header
    Thanks,
    Bhavyasri.

  • 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

  • Badi/exit/Workflow called during  execution of the BSP "SRMSUS_SELFREG"

    Hi all,
    We are running on SRM 5.0.(SP06) Strategic sourcing scenario.We are using enterprise Portal as the front end.My query is that at the end of Supplier  registration process,when the Supplier admin creates the USER ID's for the Suppliers(through BSP SRMSUS_SELFREG),is there any way by which we can create the enterprise Portal users for those suppliers at the same time(Automation) ?My BASIS person told me that the automation is possible when the EP system is connected only to 1 backend but in our landscape we are having several systems connected to EP.
    Other alternative would be to send a mail to the EP administrator stating that the Vendors User ID's have been created in SRM and the EP ID's need to be created.
    For this ,i didnt get any BADi/exit which gets triggered during this USER ID creation process wherein i can write my logic for sending the mail to the EP admin.
    There are some Std workflows (e.g. WS10000209)for USER creation but these dont seem to be useful in this scenario.
    So the only method left is to modify the Std BSP which  we dont want.Has anybody worked on this kind of scenario?
    Any suggestions are welcome and will be rewarded as well.
    BR,
    Disha.

    Hi
    I am still searching.. but no BADI/Exit is called in this case..
    <u>Meanwhile, i found few SAP OSS notes, which you can go through -></u>
    Note 1031896 Delimiting of Supplier Reg URL due to Special characters
    Note  1031070 Supplier cannot be registered
    Note  996030 Need to relogin to srmsus_selfreg service when using aliases
    Note 1032573 FormofAddr field mandatory in userselfreg.htm page
    Note 1003820 Supplier cannot be registered
    Note 889451 Not Possible to register in Supplier self-registration
    Note  807511 Error message after self registration of supplier admin user
    Note 784883 Irrelevant warning message stops self registration
    Do let me know.
    Regards
    - Atul

  • BSP-App not working after upgrade to Netweaver 7 / Javascript error

    Hey Gurus,
    after our upgrade the BSP Application which runs before the upgrade now displays just a plain-Design - not the Design2003 and i got Javascript errors. This results in no function whatsoever.
    Maybe someone have tipps what to look for (customizings, etc) to get this back runing?
    reg, JR

    I got the same problem but I saw in an another thread :
    BSP - non Unicode caracters - need to put an "InpuField" after a "Tray"
    Mr. bindiya have try on the same release without any problem. I sent to him an email to check.
    Regards,
    Francesco

  • ABAP style FORM..ENDFORM in BSP ...?

    Hi, guys!
    I'm rather new to BSP world. Could someone help me with the following question:
    Is it possible to use ABAP style
    =====================
    FORM abc
         USING abc1
         CHANGING abc2.
    ENDFORM.
    =====================
    in BSP and accordingly to call it via PERFORM let's say in Layout of BSP?
    Or maybe there is something instead of this?
    Thanks in advance,
    --- Kaspars
    P.S. In particular case I'm not using MVC format (just htmlb, abap and javascript in layout; and abap in OnInitialization event handler).

    look at the link reg using subroutine in BSP:
    Re: Subroutines in BSP ??????
    <i>Is it "suggested" or is it mandatory to use class/methods</i>
    Its not mandatory to use class/method. But BSP is developed based on class/methods, so you cant avoid using class & methods..
    Raja T

  • Error at the installation of the CR Runtime package V13.01/V13.02 - reg key

    Hello,
    we got an error at the installation of the cr runtime package. We have try both
    installation packages(msi) 13.01 and 13.02. But it's the same error.
    We want to install this package automaticly on our computers. On 8 of 10 computers was the instalation successfully.
    On the remaining 2 computers we got the following error.
    MSI (s) (68:9C) [16:30:41:790]: Product: SAP Crystal Reports runtime engine for .NET Framework 4 (32-bit) -- Error 1402. Could not open key: HKEY_LOCAL_MACHINE\SOFTWARE\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0
    Crystal Reports.  System error 87.  Verify that you have sufficient access to that key, or contact your support personnel.  <<--- see below
    Executing op: RegAddValue(Name=svcmgr,Value=0,)
    MSI (s) (68:9C) [16:30:41:775]: Executing op: RegOpenKey(Root=-2147483646,Key=SOFTWARE\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Crystal Reports\templates,,BinaryType=0,)
    MSI (s) (68:9C) [16:30:41:775]: Executing op: RegAddValue(Name=templatepath,Value=C:\Programme\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Common\Crystal Reports 2011\/Templates,)
    MSI (s) (68:9C) [16:30:41:775]: Executing op: RegAddValue(Name=templatesearchmask,Value=*.rpt,)
    MSI (s) (68:9C) [16:30:41:775]: Executing op: RegAddValue(Name=templatefileextension,Value=rpt,)
    MSI (s) (68:9C) [16:30:41:790]: Executing op: RegOpenKey(Root=-2147483646,Key=SOFTWARE\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Crystal Reports\DatabaseOptions,,BinaryType=0,)
    MSI (s) (68:9C) [16:30:41:790]: Executing op: RegAddValue(Name=MergeConnectionProperties,Value=no,)
    MSI (s) (68:9C) [16:30:41:790]: Executing op: RegOpenKey(Root=-2147483646,Key=SOFTWARE\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\\Crystal Reports,,BinaryType=0,)
    MSI (s) (68:9C) [16:30:41:790]: Executing op: RegAddValue(Name=CommonFiles,Value=C:\Programme\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Common\SAP BusinessObjects Enterprise XI 4.0\win32_x86\,)
    MSI (s) (68:9C) [16:30:41:790]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE\SOFTWARE\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\\Crystal Reports 3: 87
    MSI (s) (68:9C) [16:30:41:790]: Product: SAP Crystal Reports runtime engine for .NET Framework 4 (32-bit) -- Error 1402. Could not open key: HKEY_LOCAL_MACHINE\SOFTWARE\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\\Crystal Reports.  System error 87.  Verify that you have sufficient access to that key, or contact your support personnel.
    Error 1402. Could not open key: HKEY_LOCAL_MACHINE\SOFTWARE\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\\Crystal Reports.  System error 87.  Verify that you have sufficient access to that key, or contact your support personnel.
    MSI (s) (68:9C) [16:30:41:790]: User policy value 'DisableRollback' is 0
    Our it team have an idea. They think that the problem is the double \ at the end of the reg key path. You can find this if you search
    in the code above.
    Can you check this or have you an other idea to solve the problem.
    best regards
    Dennis Hoyer
    - IT consultant (.net development)

    Hi,
    See if below article helps,
    [1535811 - Error 1402 when installing Crystal Reports for Visual Studio 2010 runtime via the msi file |http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333533333335333833313331%7D.do]
    - Bhushan.

  • BSP Examples

    Hi BSP Experts,
    I need some BSP Examples to practice.
    Can you please let me know where can I find out or please mail me to my id [email protected]
    Thanks,
    Vinay.

    <b>Before, Reply/Reward/Close your previous thread..</b>
    BSP Fundamentals
    Reg, your question..
    Look at the sample programs..which has all the Tags with example..
    SBSPEXT_BSP
    SBSPEXT_HTMLB
    SBSPEXT_PHTMLB
    sbspext_table
    SBSPEXT_XHTMLB
    Raja T

  • Customer exit for Custominzing standard BSP applications?

    Hello everyone,
    I'm getting start in BSP applications and the only thing that I need to do at the moment is to write a LOG in a table when user goes to a Purchase Order detail view, print or download.
    Is there any way to insert a code in the standard BSP application, like an exit?
    Thanks!

    Hi Regis,
    Where do you want to put your customer exit on ?
    Do you have a specific BSP application in mind ?
    Usually, people code their own BSP applications, that is why you don't find customer exit. It is only relevant for standard code.
    <i>About the aspect of writing a log it is more pure ABAP-oriented so you might find a better audience in the ABAP programming forum.</i>
    Best regards,
    Guillaume

  • How can I open a PDF stored in IXOS and then display it in a BSP

    Hello gurus,
    I have created a PDF icon and an onclick action to open a pdf, that displays on every row of an assignment block in the actions column, but I do not know the technical process to determine how to get a PDF from the IXOS system from the line selected. (even if I know it depends on an ID attribute of that assignment block) I want to to call a transaction launcher with the url for the pdf in the IXOS that has an ID that identifies which line in the assignment block the user has clicked the pdf icon for (does that make sense?)
    Therefore, I am assuming the PDF should correspond to the relance ID of the row in the assignment block, but I would like more information as per the business logic involved in able to achieve the desired results for this particular specification. I already confirmed that the XURL or any other attribute in the BOL object does not contain the URL to use for this. I have looked at the class I was told that it may contain the required business logic for determining which PDF in IXOS to fetch for a particular row, and I am currently trying to reverse engineer the logic through looking at other code and using the debugger, but so far I haven'T had much luck.
    Here are some questions I have now for the functional side in the meantime:
    1) Can we fetch the PDF in IXOS for each line of an assignment block?
    2) Which URL should I call with the transaction launcher? a URL link to the PDF on the IXOS system??
    3) Do we have to configure a transaction in the IMG to be launched?
    4) Do we have to create a logical link there that I will make dynamic to call the right PDF for each table line? 
    5) Are there any existing examples of this or a similar functionality/ logic that I could refer to, preferably in CRM 7 WebUI?
    6) Do you have any code to just display a PDF in a new window? Or prompt a download?
    One possible way I thought of would be for me to have a logical link defined in the IMG, that I could call passing it different attributes (eg. some object id, etc) and then return the PDF and display it in the UI in a new browser window by itself. Alternatively, we can just prompt a download. What do you think would be the optimal behaviour here?
    Please do not hesitate to propose any potential solution. Any partial answers/ links to wikis/ other threads, anything would be much appreciated.
    Thank you in advance.
    Best regards,
    Jonathan Laplante

    Hi,
    I partially answered your question in another posting but I feel that you´re in the wrong forum for your problem. This is for BSP development and you talk about CRM.

Maybe you are looking for

  • How can I restore my I-pad? Several Icons such as "setting, photo, face time are not on the screen anymore.

    Several ikons just disappeared from I-pad screen. How to restore an initial setting?

  • Cisco WCS 7.x TACACS+ with ACS 5.2

    Ok, so I took my bday off today so I could stay home and setup my lab for ie v2 and have the birthday wish of 'leave daddy alone for awhile' come true.  Here we are at 7:00pm and everything is flowing good including my blue moons and I decided to get

  • Reg smartform background n print prob?

    hi experts i have a requiremnt my sf has to run in backgorund mode by default. how to make it ? and i have to put a check box on my selection screen for print if the user checked it print should come . how to get this functionality? thanks & regards

  • Trigger Event in Process Chain

    Hi ppl, i want to push the data into ODS and intocubes whenever the data has been placed in the Delta Queue. how can i do that? i heard that i need a abap program to trigger the event in process chain, is anyone here can help me with the abap program

  • How to make a photo slideshow

    when i try to make a slide show from my photos in iphoto it will not work. i get a gray box with a question mark in the middle of the screen all my photos are on the top but i can not go any further i have tried everything.