Portal URL to BI Portal Object

Experts,
I have a BI Bookmark that I'm tring to resolve from my EP Portal to my BI portal.
It is:
https://aerdev03.dcs.myco.com:52101/irj/go/km/prteventname/htmlbevent/prtroot/%cgpn://gp:DBC_PRODUCER/portal_content/com.myco/production/roles/com.myco.bi_reports_all/com.myco.bi_reports/com.myco.operations/com.myco.delivery_traffic/com.myco.ZDT_M002_Q001
My producer portal is DBC_PRODUCER on port 55601
This url is not working.
I'm looking for a url I can put in the consumer that will naviagte me to the producer query.
Really appreciate it.
MIke

Not Answered

Similar Messages

  • Retrieve portal url dynamically.

    Hi,
    Could anybody pls let us know how to identify the portal Url dynamically using a function module or SAP Table?
    We want to put this URL in the notification e-mail so it is dynamic when the object is moved to Quality and production systems.
    Thanks in advance.

    One way to make Portal URL dynamic is to create a ztable with fields ABAP system id and portal URL.
    Select Portal URL from this table based on the sy-sysid.
    By this way you dont have to change your code. Just change table entry on each server.
    Hope this helps!
    Monalisa

  • Exception by call an internal KM-URL at NW04s Portal

    Hello specialists,
    In one of my portals (NW04s SP15). The internal call of an KM-URL throws an access-denied-exception. The permissions of the called document are ok, I think so.
    It work if I grand the EU_Role-Role to the user, but I get also the Home-Menue in the Portal that I don't want.
    It works without EU_Role in the other portal.
    May the problem could be in the Security Zones, but I can't find a mistake in the portal or a diffrent between the two portals.
    At both portals, it should only work with authenticated users not for anonymous users.
    Is there somebody who can tell me what permission is missing, is to set?
    URL: http://server...:50000/irj/go/km/navigation/documents/Operational%20Accounting
    Example-Exception:
         10:13_25/08/08_0001_8602451
         [EXCEPTION]
          com.sapportals.portal.pcd.gl.PermissionControlException: Access denied (Object(s): portal_content/every_user/general/eu_role/com.sap.km.home_ws/com.sap.km.hidden/com.sap.km.urlaccess/com.sap.km.Navigation)
         at com.sapportals.portal.pcd.gl.PcdFilterContext.filterLookup(PcdFilterContext.java:422)
         at com.sapportals.portal.pcd.gl.PcdProxyContext.basicContextLookup(PcdProxyContext.java:1248)
         12:59_25/08/08_0029_8602451
         [EXCEPTION]
          com.sapportals.portal.pcd.gl.PermissionControlException: Access denied (Object(s): portal_content/every_user/general/eu_role/com.sap.km.home_ws/com.sap.km.hidden/com.sap.km.urlaccess/com.sap.km.docs)
         at com.sapportals.portal.pcd.gl.PcdFilterContext.filterLookup(PcdFilterContext.java:422)
    Regards
    Harald

    Hi satya,
    I have added three jars. weblogic.jar,wlsecurityProviders.jar and wlManagement.jar
    and still i am getting the same exceptions.
    Do i need to define some security role for the "weblogic"
    username or it is defined somewhere..
    do clarify
    Thanks
    Rajeeb

  • Url alias for portal

    Hi All,
    I am new to this portal
    Can anybody suggest me a way to create alias for my portal.
    i want to access my portal using <b>http://<servername>:<port>/sapportal</b>         without using <b>http://<servername>:<port>/irj/portal</b>
    regards,
    prasanthi o.

    irj/portal will come as default with portal
    if u want remove this irj/portal u can remove but u can't replace with sapportal
    if u want to access certain iview or pages directly u can use quick links option
    Quick links are shortcuts to iViews and pages. Each quick link is a string that you add to the default portal URL in order to navigate to a specific iView or page.
    Quick links provide a meaningful name for iViews and pages to which users may want to navigate.
    Procedure
    1.     Enable Short URLs
    a.     Go to System Administration-->Navigation --> Short URLs
    b.     Choose True (default) in the Use Short URLs drop list menu
    c.     Choose Save Configuration
    2.     Define Quick Links
    a.     Go to Content Administration --> Portal Content ->Folder --> iViews (i.e. Content Administration à Portal Content à My Folder à iViews à SAP News)
    b.     Double-click SAP News to edit the iView
    c.     Choose Navigation from the Property Category drop list menu. 
    d.     Enter a name for the Quick Link. (i.e. News)
    e.     Choose Save.                                
    f.     Choose Close.
    g.     Add the object to a role if necessary.
    h.     Repeat steps a to go to create more Quick Links.
    3.     View a Quick Link or Short Navigation URL in the Portal.
    a.     Enter the link to your portal and append the Short Navigation URL or Quick Link. to the URL
    (For example, http://myServer:50000/irj/portal/News)

  • Portal URL Query String

    I am creating a Portal component and I want to catch the query string passed thru Portal url.
    Example:
    Suppose If user login thru this URL
    http://localhost:50000/irj/portal?userID=test
    I want to catch this userID=test in my component.
    Is it possible?
    Many Thanks,
    B Das
    Message was edited by: B Das

    Hi Das,
    HttpServletRequest Object contains many methods like
    HttpServletRequest servletRequest = request.getServletRequest();
    servletRequest.getRequestURL();
    servletRequest.getQueryString(); -->
    servletRequest.getParameter();
    servletRequest.getProtocol(); etc..
    Hope this helps..
    Regards,
    Karthick K Eswaran

  • Urgent :Fetch Portal URL in WebDynpro code

    Hi techgurus,
    I want to fetch portal URL/ Portal system ID in my webdynpro code?
    Please help!
    Regards,
    Abhishek

    This is an approach we have implemented:
    Login to Visual Administrator.
    Go to Services –> Destinations
    Create HTTP Destinations for the URLs to be accessed.
    Write a method containing the below code to access the same URL:
         InitialContext ctx;
         Object obj;
         DestinationService dstService;
         Destination destination;
         HTTPDestination httpDestination ;
         HttpURLConnection httpurlconnection = null;
         Properties destprop = null;
         String username = "";
         String password = "";
         try
              ctx = new InitialContext();
              obj = ctx.lookup(DestinationService.JNDI_KEY);
              dstService = (DestinationService) obj;
              List destinationList = new ArrayList();
              destinationList = dstService.getDestinationTypes();
              destination = dstService.getDestination("HTTP",<name of the HTTP url>);
              destprop = destination.getDestinationProperties();
              httpDestination = (HTTPDestination) destination;
              url = httpDestination.getUrl();
         catch(Exception ex)
              wdComponentAPI.getMessageManager().reportException("Unable to get the Webservice URL "+ex.getMessage(),true);
              ex.printStackTrace();
    Hope this solves your problem.

  • Retrieve Portal URL in BSP

    Is there a Function Module or ABAP Object I can use within a BSP that will give me the base Portal URL in which my BSP is being rendered?  I'm specifically looking for something that will return the following URL pattern:
    http://servername:portnumber/irj/portal
    Reason I ask is b/c I need to redirect back to the Business Partner page within Portal CRM, however, within the BSP, the cl_bsp_runtime=>construct_bsp_url method is returning the BSP application URL and not the Portal URL.
    Thanks!

    Hi Matthew,
    I don't know of a function module or method that helps you on getting the path to the portal but maybe the following hints help you to find a solution.
    1. Get the referer out of the Request by using the method request->get_header_field during the first call of your application.
    2. There are 4 tags available in the bsp-extension that might help you to solve your issue. The elements are called: portalEvent (receive events), portalNavigationToObject, portalNavigationRelative and portalNavigationAbsolute. There is also a test Application for the bsp-Tags available called SBSPEXT_BSP where the raising of portal events is shown.
    3. Use client side scripting to determine the url of the surrounding frame.
    4. Try whether the methods GET_EXTERNAL_THEME_ROOT or GET_EXTERNAL_STYLESHEET of the runtime help you to get hold on the portal url.
    These are just hints. More than the portalEvent tag I have never used.
    Hope that helps.
    Best Regards
    Michael

  • Transporting/Deploying Portal Content and Delta Linked Objects

    I researching the best way to trasport/deploy changed ESS Portal content from sandbox to D>Q.  I have become familiar with the few changes my co. needs to deploy part of ESS.  I have read articles that say it is wrong to modify the "Content Provided by SAP".  The recommendation appears to be "use delta link objects". I created the necessary delta links in a new directory. 
    How do I get the delta link objects to display instead of the sap source objects? I this primarily related to how the  portal is configured or how the content is managed?
    I'm really sorry about the general question (in advance) but this stuff is new for me and I'm essentially looking for some good direction here.
    Thanks,
    James

    Hi James,
    Yes exactly right. You should create your own PCD folder under Portal Content to store your objects. How you structure that is entirely up to you, however in my experience I have seen two ways
    1. First by Function or Dept (e.g. Finance, Logistics, HR) then by technical object (iView, role etc...)
    2. First by Technical Object (e.g. iViews, Roles, Worksets etc...) then by function or dept or region (Finance, HR etc...)
    Number 1 makes more sense to me. Just some other tips when it comes to creating PCD content:
    1. Put everything in your own namespace (e.g. com.mycompany) that way it is easy to separate from SAP content using filters.
    2, Come up with a logical naming standard so you can easily identify content by group, function and technical type (e.g. for an iView you might name it whoswho with the prefix com.mycompany.hr.ivu resulting in a name com.mycompany.hr.ivu.whoswho)
    2. Don't give PCD folders any prefix (e.g. com.mycompany) as it ends up elongating the resulting URLs unnecessarily and you can run into problems down the track.
    Hope this helps you.
    Simon

  • Getting the portal URL?

    If I want to redirect the browser to the portal URL, how do I do it? Is there an API to get the Portal URL?
    Thanks
    Mani

    You can use PostbackURL object.
    Regards
    Tarun

  • How Sap SDN do it? -  navigation change Portal URL

    Hi:
    If you check SDN home page you´ll see that almost every link changes the url site but the content is display in content area ( do not change the page completly). I was wondering how that could be done as my EP has always the same URL.
    I checked:
    URL Generator Service
    http://help.sap.com/saphelp_nw04/helpdata/en/7d/236cfa17034a37a439dc392ec59eb0/frameset.htm
    Portal URL Aliases
    Portal navigation
    and ECPM stuff
    I´m not quite sure if there´s a configuration at Visual admin/Portal that enables this behavior.
    Thanks a lot for your time on this thread.
    Rocío.

    We can also create a unique url for every page or iview.
    There is a property called Quick Link  which exists for every page/iview
    Let us say open a page  as object and set the Quick Link property as 'abc'
    Then you can access that page directly from the url  // http://<yourhostname>:<portno>/irj/portal/abc
    hope it helps you to some extent.
    Raghu

  • Portal navigation missing in portal object (java)

    hi,
    first of all, i hope thats the right forum. i'm trying to write my first portal application/object, but my studio can't find the "com.sapportals.portal.navigation"-package and i cant import and use the navigation classes which i need.. is that a bug? do i need to add additional libraries? i've read and done the following tutorials (http://help.sap.com/saphelp_nw70/helpdata/EN/44/489d45f5ee4e35e10000000a1553f6/frameset.htm)
    hope to get some help asap.
    greetings,
    constantin
    Edited by: Constantin Wildförster on Mar 17, 2009 11:46 AM

    Hi,
    you have to import some libraries (in your case it is com.sap.portal.navigation.api_service_api.jar).
    You can find it on the server installaton filesystem here:
    \usr\sap\EXX\JC0XX\j2ee\cluster\server0\apps\sap.com\irj\servlet_jsp\irj\root\WEB-INF\portal\portalapps\com.sap.portal.navigation.api_service\lib\com.sap.portal.navigation.api_service_api.jar
    If you cannot find some classes to import I use this technique: I go to filesystem of the portal to the \usr\sap\EXX\JC0XX\j2ee\cluster\server0\apps\sap.com\irj\servlet_jsp\irj\root\WEB-INF\portal\portalapps\ directory (using TotalCommander in my case) and let it search for desired class (in your case it is INavigationNode.class) - you have to set to search also archives (jar files are zipped classes). Now I copy this JAR to my local filesystem and add the library to the project.
    Romano

  • How to catch URL parameter from Portal URL in Web Dynpro iView

    Hi All,
    I have a web dynpro application running as a portal iView successfully. Now the client wants to make it internationalized with 7 languages. Currently they access the portal - and via role assignment they get to the portal tab with the wd iView. Now they want to send a parameter for the language key with the portal URL. So when they are typing in http://myportal.mydomain.com now they want to type in http://myportal.mydomain.com?sap-locale=de or so. My question is how can I catch this parameter in the WD application when it is running inside a portal iView? Is it at all possible?
    I have written a very small application which is trying to catch a URL parameter named PARAM. The code I have written is the default one as below:
    String paramValue = WDWebContextAdapter.getWebContextAdapter().getRequestParameter("PARAM");
    When I run the application standalone and add the PARAM=something in last of the URL I can catch it. But when I create an iView and while previewing it I add the same PARAM value it is coming as null all the time. Same when I add this iView to a role and show it via role assignment in protal. Please help to let me know how to achieve this. I think if I can read the parameter value from Portal URL in the WD iView - then I can set it as the default locale of the application and then show language specific file to achieve internationalization.
    Your urgent help will be highly appreciated.
    Warm Regards,
    Shubho

    Hi Shubhadip
    Even if you get the parameters, how do you internationalize your application? Are you not following the standard way as described in the following link. In this case you never need to capture any such parameter. This is done by the WD runtime automatically .
    <a href="http://help.sap.com/saphelp_erp2005/helpdata/en/f4/d95664da179b4db731e21c2e470b72/frameset.htm">Internationalization of WD projects</a>
    You can retrieve application parameters specified at the creation of iview by "adding parameters(with the same name as in iview application parameters) to the default plug of the Component Interface View of the WD application". "onDefaultPlug" method of the interface view controller you get these values as parameters, which you can save in the context node of component controller for later use.This is guaranteed to work.
    But again this is not what you want exactly. You want the user to specify the value at runtime. If you have just 7 languages, you can create 7 set of iviews with different application parameter value indicating language key, and assign to 7 different set of roles, each representing one set of users with common language.
    I hope you find a solution.
    Regards
    kk

  • SSO is not working for an Alias URL but is working for original portal URL

    Hello,
    We have a BSP running inside the portal and expects authentication.
    When I run this BSP using the portal regular address everything is working OK and SSO is working after logging into the portal.
    At next step, we have configured an alias for the portal URL at the DNS Server.
    When activating the BSP from the alias URL it asks for 2nd authentication. Meaning, SSO is not working after logging into the portal.
    I have activated an HTTP trace in order to see why and it seems like when running it from the alias name it recognizes it as a different domain and I assume this is why the authentication is coming up.
    I would like to suppress this for the alias URL but don't know how.
    I found this UME property on the server:ume.logon.security.relax_domain.level
    This UME property controls the amount of sub domains to remove from the server name to obtain the domain for which the logon ticket is valid.
    I have changed this property from its default value 1 to 3 (and restarted the server of course) which, in our case, leaves only ourCompany.com for the ticket in the original server URL. Yet, the authentication pop up is still not supressed when browsing through the alias URL.
    Any idea what can I do next?
    Thanks,
    Roy

    Hi Dezso,
    I found the 401 let me know if I look on it right:
    I have an entry node with two subnodes: request and response.
    The response has:
    <responseStatus>HTTP/1.1 401 Unauthorized</responseStatus>
    And the request before that doesn't have any MYSAPSSO2 in it, all it has which is related to cookies is this:
    <header name="Cookie">UserUniqueIdentifier=1174345919524; alreadyLogged=1179560552416</header>
    <cookies>
    <cookie name="alreadyLogged">1179560552416</cookie>
    <cookie name="UserUniqueIdentifier">1174345919524</cookie>
    </cookies>
    Can you advice what to do next?

  • How to create an External Alias for a Portal URL ?

    Hi Gurus,
    Can anybody tell me how to create an external alias for a portal link(URL). Actually, my problem is i want to send this Portal URL(link) thru' a SendMail step to the user so that when he clicks on it, it will take him to his UWL(Ofcourse after signing-in). As this URL length is > 80 char(101 char), i am not getting the full lenght URL in my Outlook mail. THough we are on ECC 6.0,Basis Rel 7.0, as per the OSS note 559234, we should have this length extended to 132 bytes. But, for some reason, its not happening. And,in the same OSS note, it was mentioned that we can use external aliases to achieve this(shortening the URL length).
    Can anybody tell me how to achieve this, either thru' increasing the URL length or thru' ext. aliases.
    Please reply asap.
    Thanks in advance
    venu

    Not an issue as of now. I'll open up again if needed

  • External portal capturing internal portal URL in Log and trace file

    Hi,
    We are facing one issue in portal like we have two portals for internal (Intranet) and external (Internet) users.
    Once users logged in the application and try to get the information about mylink from the external portal link (internet) they should not get any information about the internal portal.
    But in log and trace file we can see the external portal link capturing the internal portal URL.
    We need to find, from where system capturing the internal portal URL.
    Thanks.

    The tkproffed trace file is in seconds.
    "set timing" is in hh:mi:ss.uu format. So 00:00:01.01 is 1.01 seconds.
    You have to remember that most of these measurements are rounded. While your trace file says it contains one second of trace data, you know it's more.
    One excellent resource for trace files is "Optimizing Oracle Performance" by Cary Millsap & Jeff Holt. (http://www.amazon.com/Optimizing-Oracle-Performance-Cary-Millsap/dp/059600527X ) I thought I knew trace files before, but this book brings your knowledge to a whole new level.
    There is also an excellent WP by Cary Millsap ( http://method-r.com/downloads/doc_details/10-for-developers-making-friends-with-the-oracle-database-cary-millsap ) that gives you some insight.

Maybe you are looking for

  • Dark Picture

    I recently converted my home movies and DVD's to Apple TV format using QuickTime PRO (export as Apple TV). They look great on my iMac but dark on the Apple TV. I have the Apple TV connected via HDMI and decided to check and see if it was my videos or

  • Please Apple, make a iPad compatible DVD slim drive.

    I have a giant collection of DVDs. And it would be really nice to have a DVD drive that ran from a USB and was controlled by a application. Just a simple design like the one you have for the Mac mini. That way when I go on a trip and I want to watch

  • In 3.2, adjustments don't appear when moving back to library module from develop module.

    I just upgraded to 3.2. When I make a series of adjustments in the develop module, the adjustments do not carry over to the library module. This did not happen with 3.0. In 3.0, the most recent adjustment made would be how the image would appear in t

  • Cannot move files or folders on desktop   OSX 10.7.5  MacBook Air

    Cannot move files or folders on the desktop. This occurred suddenly - don't know what happened or how to undo this. Nothing on the desktop is moveable. MacBook Air   OSX   10.7.5

  • PLEASE HELP jdbc/jsp error

    Hello I have a jsp file myfile.jsp?id=... This file was working fine before. I was ready from my testing and i needed to clean my access database's data so i deleted some records manually and copied database again onto live through ftp. After this st