Integration of an BSP

Hello experts,
I am trying to integrate a BSP(e-recruitng) into our Portal. I have already created the iView, Pages and workset.
I have also created the role and assigned it to a user.
But  when i start to run the  portal with the assigned user I am getting following error message:
Page could not be found or is not availiable
Running the page with test mode is working well.
What could be the problem?
Any ideas?
Many thanks!
Marco

This is most likely a permission issue.
The user trying to launch the BSP page should have "End User" and "Read" permission to the PCD objects (iview, page, workset and role) and also to the system object (the system which you use to connect to the backend).
Right Click on the parent Folder containing your PCD objects and open permissions and assign the permissions to the end user (via group or role or to the user directly).
Check the following links for more details:
http://help.sap.com/saphelp_nw70/Helpdata/en/f6/2604db05fd11d7b84200047582c9f7/frameset.htm
http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/00bfbf7c-7aa1-2910-6b9e-94f4b1d320e1?QuickLink=index&overridelayout=true
Thanks,
Shanti

Similar Messages

  • Integreating E-Recuritment BSP in portal

    Hi
    I need to show the E-Recruting BSP in the Portal thro an BSP iView
    Following are my understanding pls correct me if i am wrong
    1) First we need to activate the BSP
    2) need to generate the URL
    apart from this
    we need to create system in portal, for creating this system what are the information i need provide.
    Also
    we  must maintain the following properties in order to display a BSP Application in the portal as an iView:
             System
             CustomerNamespace
             Namespace
             ApplicationParameter
             Application
             Alias
    Pls let me know where can i get Customer namespace, NameSpace App Parameter for e-Rec BSPs
    Thanks & Regards
    Daya

    Dayu, please avoid double postings:
    BSP iViews in portal
    kr, achim

  • STS: Portal HTTPS to BSP HTTP transfer issue

    Hi Experts,
    We have the following issue.
    We use portal with SSL, and we put SSL on out BW backend system. We also use STS, and we created a BSP iView in the portal to use STS inside portal.
    The problem occurs when a link to the iView is clicked. What happens is that when the iView is being loaded, all the session cookies are getting blocked for some reason, so that clicking on any link in STS results in timeout error.
    My observation is that STS only uses SSL for the login page. So when a request comes through the portal that uses SSL it goes to a BSP iView without an SSL (you get the warning that you are about to display non-secure items).
    A workaround solution is to goo to IE properties, security/privacy and click the "Allow all session cookies" checkbox. This a bad solution because it involves telling users to configure their browser. I am wondering if anybody had the same or similar issue, and if there is any other resolution then just explicitly allowing cookies in the browser.
    We have another environment setup in QA that does NOT use SSL for either portal or a backend BW, and this problem with cookies does not happen there. I am guessing it has something to do with a switch from HTTPS to an HTTP request when it comes through the portal.
    Please let me know if you know how to resolve this.
    Thank you,
    AG

    Hi Marc,
    Thank you very much. The note helped us ensure that all the STS pages are using HTTPS protocol. There is still one issue remaining though.
    When STS generates its start URL, for some reason it starts with HTTP, not HTTPS. It is evident when you go to BPS_TC tcode and try to execute option "Test call with display of URL". The URL that gets displayed is for example:
    http://test.somedomain.com:8000/sap/bc/bsp/sap/tunguska/start_sts2.htm?teilplan=ZBUDGET&version=002&sap-client=200&sap-language=E
    When pasting this link in the browser, STS automatically redirects you to the https protocol, which is fine if you are using STS BSP application stand alone.
    This represents a problem however, if the application is integrated into portal BSP iView. If portal is running under HTTPS, then clicking on the STS iView causes a warning message to be displayed saying that you are about to be redirected to the page that is not secure because for some reason the very first page STS generates uses http protocol disregarding the fact that HTTPS has been setup for STS. This warning message creates a false assumption that the pages are not secured, while in fact right after the warning message is displayed a redirect to https occurs making sure STS pages are protected.
    My question is there some sort of global setting where you can control the generation of STS start URL? I made changes for every page making sure Transfer Options set to HTTPS, and also made sure Logon page is using HTTPS in the SICF transaction for tunguska and tunguska_detail services.
    At this point we are stuck and do not know what to do to eliminate that warning and how to control the generation of start URL in STS. Any help would  be greatly appreciated.
    Thank you,
    Andrei

  • Problem in calling BSP application through portal

    Hi All,
    We have EP 2004s and we have integrated a CRM (BSP) application with it .
    CRM application is a custom application which contains two frames . The upper frame of this application is developed using BSP and the lower frame is ICWC .
    We are calling this application (BSP) in portal using a BSP iView . When calling this application using iView it gives an error as some values needs to be initialized , though all the values have been initialized in controller.
    When we are calling the same application using a browser instead of an iView it works perfectly fine .
    Can anybody explain me how does portal treats the BSP application.
    Thanks & Regards,
    Amit Kade

    The BSP is just a URL as far as the portal is concerned. Just make sure the same URL is being generated as if you called the BSP directly.
    Cheers

  • Displaying Report & Layout in a page

    On a BSP (created with Web Application Designer), I have a web report and a layout.Both are on the same page, one below other. This is done so that, the user can see the data from the report, make some decisions and then input values in the layout
    The web report is displayed using an iframe in an element of type text in WAD. The problem with using an iframe is that the size of the iframe doesnot expand/contract depending on the amount of data on the web report. It has scroll bars though, but it is so inconvinet to see/search the data for the users.
    Q. Is there any way, I can size at runtime the size of the iframe?
    or is there any way of making a web report appear integrated with the BSP,the same way a layout appears?
    or is there something else I can use to achieve desired results?
    Thanks,
    NS

    hi nimmi,
    its better u use HTMLB . Take input from user in one grid row, and in another row display ur report using TableView.
    try this code, it may help u:
    <htmlb:gridLayout columnSize = "2"
                                  rowSize    = "2" >
                  <htmlb:gridLayoutCell columnIndex = "1"
                                        rowIndex    = "1" >
                    <htmlb:label for    = "int"
                                 text   = "Enter Ur input"
                                  design  "EMPHASIZED" /></htmlb:gridLayoutCell>
                      <htmlb:gridLayoutCell columnIndex = "2"
                                        rowIndex    = "1" >
                     <htmlb:inputfield ...>
                   </htmlb:gridLayoutCell>
                   <htmlb:gridLayoutCell columnIndex = "1" rowIndex    = "2" >
                <htmlb:tableView id              = "cd"
                                 headerText      = "Report"
                                 headerVisible   = "TRUE"
                                 table           = "<%=  Table_name %>"
                                  width           = "100%"
                                  design          = "STANDARD">
    </htmlb:girdLayoutCell>
    </htmlb:gridLOayout>
    regards,
    kamaljeet
    Message was edited by: kamaljeet singh

  • How to reimplement the handleUnload javascript method ?

    Hi all,
    we are facing an issue here with a generated BPS application(using BPS_WB) which is integrated in another BSP application (cProjects). In fact, often, users are clicking on another tab in cProjects, and they are losing the data they were creating in the BPS application.
    They want to have a popup window that tell them that data will be lost, and have somehow the choice to cancel or save the data.
    I managed to make this work by redefining the handleUnload() javascript method which is generated in the page when doing the customizing in BPS_WB transaction (i went in the generated BSP application in SE80 to do this).
    But the problem is that each time they will change something in BPS_WB, my changes are lost ! So what is the recommandation to avoid this problem ?
    Thank you in advance,
    Xavier

    hi Xavier
    I'm afraid I don't know how to avoid this.
    I just want to know what javascript you have written to manage the popup window?
    Thank you!
    Best Regards,
    delma

  • Differences between showing smartform in Portal and Backend

    Hi SAP Experts,
    we have developed a smartform which should be opened by clicking on a button integrated in a BSP-Application. All seems to be ok except for one little piece of text that is not shown (Exactly, the text is a calculated value).
    We tested the same smart form in backend-system and there the text is shown. There are no problems.
    So is there a difference between showing the same smartform in enterprise portal at the one hand  and in sap backend at the other hand?
    Best Regards,
    Nadin
    Systems/Software:
    Adobe Reader 8
    EP 7.0 SP 13
    SAP ERP 2005

    hi,
    what is the link between customised fields in EBP or R3 to portal.
    can you explain on this?

  • Remove Linked Objects Case Management

    Dear Guru's
    I would like to find out how I can permanently remove some of the linked objects that are offered by the system in case management ie TC <i><b>scase</b></i> . We are only going to be using the Business Partner object to assign a BP to a case, and the Business Transactions object for activities, the rest are irrelevant. I know you can delete them during the editing of a case, but I would like to permanently remove them.
    Your help will be most apprecited

    Ok I found the solution for that, what I did is in TC scase under [<i>b]CRM Case Mgt->Record and Case Records Models->Modeler for CRM Case Records</b></i> , on the subscreen I chose start search and then selected the Modeler that I am using which for was the standard which came with the system is CRM 4.0: Integration IC Webclient/BSP UI. I put it in change mode, and for the object that I do not need to use, I clicked on them and clicked deactivate. Which is more than half for me.
    Having done this you will see that for all the objects that you have deactivated, they do not appear during the creation of a case.
    Hope it help hey.

  • Sharepoint 2010 - SAP - Connection Authenification

    Hello expert´s,
    first i am not sure if this is the right forum, if not, admins, please move this threat to the right one.
    We plan to get MS Sharepoint 2010 in our company, so it would be very nice to show SAP data in Sharepoint. If already a prototype page with a running connetction to SAP. So there is SAP data shown in our MS SP page. So far it works, but now we need user specific data. In my first try i used a SAP Webservice (where i deactivated the authenification) so no user an pw was requestet by SAP. Now i need the Username on SAP side and a working auth.check. I searched the internet and asked our sharepoint implenentation parter, but i did not get a solution.
    Has anybody an idea how it can work?

    Hi Andrés,
    from SharePoint 2010 iFrame Integration with SAP BSP, WebDynpro, and iView
    "Basically, the iView web parts arenu2019t included anymore because they never really worked anyway. They are no longer u201Csupportedu201D but you can continue to use them as they are in SharePoint 2010. The iFrame integration moving forward really just allows finer control in the page rendering of SharePoint. You can now seamlessly edit the pages to incorporate any desired external content within an iFrame directly. This was not possible before with MOSS 2007.
    Even with SharePoint 2007, the IView webpart was not a necessity to visually embed a SAP Portal IView, a SAP BSP page within a SharePoint page. Valid and even recommended alternative approach is a 'plain iframe' construct. You can apply the PageViewerWebPart for this; present in 2007 and also still in 2010,
    Or you can completely build your own web part; for code example see http://erpstudies.com/sap/65-microsoft-net-and-sap/1259-sap-business-server-pages-and-sap-web-dynpro-applications.html; or Integration of SAP Business Server Pages (SAP BSP) in SharePoint 2007
    Regards, William.

  • Need help with DynamicPageViewer

    Tried to do the example on the Integration of SAP BSP in MOSS, but still dont understand the steps, is there anyone who can explain the steps in more details and better still also upload the DynamicPageViewer webpart?
    This is the example which i tried on
    http://download.microsoft.com/download/4/3/d/43de0f43-df6a-4cf2-8c91-2c9001df5945/cb_027_integration_of_sap_bsp_into_sharepoint_server_2007.pdf
    Thanks in advance.

    NAVARRO360 wrote: ...  there is no simple fix?  ...
    Eureka! You now understand the situation.
    Even the old standard for Mac OS X drivers for non-compatible cams, macam, says that it has no driver for ASUS (20") monitor camera.
    The macam status shows:
    not working (no documentation)
    With no working driver for the 20" ASUS, it is not surprising that there is none for the 27" either.  There may be good reason that ASUS won't (or can't) offer either the technical documentation or a Mac driver for their monitor's inbuilt webcam.  However, they apparently do not publish that information. 
    If ASUS Technical Support cannot provide the driver you need for OS X, the ASUS will continue to be a ridonculous (sic) monitor whose webcam will not work with your OS X Mac.  The only other simple fix I can think of is to use the ASUS with a different PC that is compatible with this monitor and its inbuilt webcam.  What you do is certainly your choice. 
    Message was edited by: EZ Jim
    Mac OSX 10.7.3

  • SMICM and WAS host name and port

    Hi all,
    Can someone please throw some light on the activity WAS host name and port in port... the question is:
    Q. The information about host name and port is available in Tx SMICM, looking there in my case I find port 80xx whereas the portal runs on port 500xx. What value should we enter in the port field of "Connecting to a WAS system" in portal?
    Is it what is given in SMICM or we should use 500xx?
    Regards.

    (80xx assuming you're starting Web Dynpro ABAP apps, integrated ITS and BSPs.)
    Thanks Michael,
    How about in case when it's not ABAP it's java apps i.e. when we are connecting BI to portal with SSO on dual stake. BI uses the 500xx port on FQDN and thus it's confusing me, whether to use 80xx or 500xx (when 500xx seems the port in use on BI portal).
    Hope I made my point clear.
    Regards.

  • BSP Exception: Access to URL /irj/servlet/prt/portal/prtroot/com.sap.ip.bi.web.portal.integration.launcher;jsessionid= not allowed

    Dear all,
    I've created out BI system in our new Portal installation and tested the connection. Everything works fine. I added the certificate of the portal to STRUSTSSO2 in BI ABAP and assigned SAP_ALL and SAP_NEW to my Account.in BI. If I open the iView from the portal I get a BSP Exception with the message:
    The used connection by the iView is to the ABAP-Stack of the BI-system not to the JAVA-Stack. Is that correct?
    BSP Exception: Der Zugriff auf die URL /irj/servlet/prt/portal/prtroot/com.sap.ip.bi.web.portal.integration.launcher;jsessionid=IDBYatWIpt_pX4uc52ChoZqMWkm1RAFW2qsA_SAP ist untersagt.
    What can be the problem/reason?
    Thanks!

    Hi Gerrit
    In both places you have to provide a authorization access to the end users then only it will work. because your are already said that in SAP_All & SAP_New working fine
    Back end BI system access as per the word document as pasted the link
    https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=7&cad=rja&uact=8&ved=0CFIQFjAG&url=http%3A%2F%2Fbasisdsp.f…
    For SAP portal you have to create iview's assign the same to end user
    Assigning an Authentication Scheme to an iView - User Authentication and Single Sign-On - SAP Library
    Portal Authentication Infrastructure - Configuring the Portal for Initial Use - SAP Library
    BR
    SS

  • JavaScript onKeyUp() not working in a BSP integrated in SAP GUI

    hi everybody.
    we want to run a bsp application in sap gui using the Javascript based WYMeditor.(http://www.wymeditor.org/) But thought this wysiwyg editor is working fine while testing in a seperate browser window it won't work while integrated in SAP GUI.
    It seems that the editor reacts with the Javascript onKeyUp() method to the user's input and that this won't work while running in SAP GUI because the keyboard events are intercepted by the SAP GUI.
    The BSP is integrated in the GUI using a cl_gui_custom_container control and its SHOW_URL method.
    We would be glad if anyone could help. Thanks in adavance!
    regards,
    Stefan

    hmm... seems that nobody have had such a problem before.
    the strange thing is that the editor works fine when the website is loaded the first time. but when any event is triggered due to the click of a button and the site is loaded again, the editor won't work. and the html-code and javascript is exactly the same!
    so what happens when the eventing (do_handle_event) of the mvc model of the bsp is triggered? i would be glad if anyone would have some ideas.
    Edited by: Stefan Tanck on Oct 31, 2008 10:22 AM

  • Integrating Dynamic Adobe Form with BSP: SAP Objectives setting &Appraisal

    Hi all,
    My users ask me whether wecan use Adobe Form to replace SAP standard BSP appraisal form (generated by HAP_DOCUMENT).
    I konw that it's possible to integrate Adobe Interactive form with BSP.
    But my Adobe form must contain dynamic table, with ability to insert/delete row on the form. This is just like what's there when you can adding objectives by client scripting in SAP OSA.
    Please tell me if the integration of dynamic Adobe form with BSP is possible?
    (We are on ECC 6, EPH2).
    Thank you so much.
    Giang

    Hello,
    have you worked with the following document?
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/d0e58022-2a39-2a10-69a8-c1a892e2b3f4&overridelayout=true
    Did you try to develop a demo version of the form to try if it is possible to do what you need to?
    Do you plan to replace "only" the standard non-Adobe form or to develop a whole custom application?
    PRovide more details about the steps you´ve tried and we can solve this out. Regards, Otto

  • Integration of Job Portal IN Erec (BSP)

    Dear all,
    I have a requirement to *integrate JOB portal ( monster) as a posting channel in EREC by using BSP *
    My Client dosn't have any SAP -XI team,
    kindly provide helpful documents and ideas.
    Thanks in Advance,
    Regards,
    Kranthi kumar Palle.

    Hi,
    Please check the threads.
    E-Recruitment : Integration of E-Recruitment with external job portal...
    E-Recruiting Job Board Integration Using XI
    Thanks & Regards,
    Sandip Biswas.

Maybe you are looking for

  • Adobe Form... Is there a way to use a drop down menu to highlight or note other fields...

    I am working on a simple Adobe form.  I am currently trying to figure out if there is a way to use the answers of a drop down menu to either mark, note or highlight 14 other fields.  There are 9 possibilities in the drop down menu, include a blank an

  • How to set a page item to either of two sources?

    Hello Folks, I would like some advice with the following: On P1 there is a text field, say p1_text. The users enters a value into p1_text. This is validated. If the p1_text value validates OK, and the next button is pressed, there is a branch to page

  • System refresh of only ECC and not Portal and PI in MCOD

    Hello, Our QA landscape has ECC, Portal and PI installed in separate servers, but belong to the same MCOD DB. Its the same in Production too. Now we want to refresh just the ECC in QA from ECC in Production. We don't want anything to change in the PI

  • Error in program 'igsmux': ====== CPIC-CALL: 'SAP_CMNOREGTP'

    Hi All, After upgrading system to EHP 4 , dispatcher gets automatically turned off after few minutes and getting  error as follows."Error in program 'igsmux': ======> CPIC-CALL: 'SAP_CMNOREGTP". Please find the logs file as attachment. Thanks, Sam

  • Help! After Affects not listed in Application Manager

    Hi I have cloud creative suite and as per the licence I am putting it on two computers ensuring that only one is on at any one time. But now that I have downloaded application manager and I open it After Affects isn't listed. I use Windows 7 - 32 bit