Jumplink to external URL with parameter

Hello,
It is possible to use jumplink to external site or any url other than CR or WebI?  Also need to pass parameter too. For example
http://abc.com?param1=[dimension]
where [dimension] is the value from the hierarchy it is jumping from.
Thanks
-rs

Hello RS
The Jumplinks are specifically designed to pass AOLAP cell context from AOLAP to WebI/CR. We have no plans at this time to add external URLs.
If you use BW then the solution is to use RRI and the URL sender.
If you do not use BW then you could raise an idea in Idea Place for this at http://ideas.sap.com.
Regards

Similar Messages

  • Calling external URL with POST data

    Hi:
    In my action bean I have to call and external URL (outside my domain), and along with this URL 'POST' data. I have tried the following code:
    try {
    FacesContext lclFC = FacesContext.getCurrentInstance().getFacesContext();
    lclFC.getExternalContext().getRequestMap().put("x_loc_zip","94804");
    lclFC.getExternalContext().redirect("http://www.mysite.com/personals/search/search.html");
    } catch (IOException e) {
    throw new FacesException(e);
    finally {
    lclFC.responseComplete();
    This works fine in calling the other URL, but no data is sent thru the post protocol. I have no control to the site I am calling....
    I have also tried
    ExternalContext ectx = FacesContext.getInstance().getFacesContext().getExternalContext();
    HttpServletRequest request = (HttpServletRequest) ectx.getRequest();
    HttpServletResponse response = (HttpServletResponse) ectx.getResponse();
    RequestDispatcher dispatcher = request.getRequestDispatcher("http://www.mysite.com/personals/search/search.html");
                   dispatcher.forward(request, response);
    But this tends to put a "/" at the front of the called URL. Can someone please recoomed the coorect way to call a URL from yr action bean and sending it data thru post protocol. I also wish that this new URL should now be displayed within the browser. This is urgent, yr quick reply is appreciated

    Myfaces sandbox form gives the ability to change its action url and port. Look here:
    http://myfaces.apache.org/sandbox/form.html

  • Open Doc URL with parameter in BI 4.0 to open Webi and Crystal report

    Hi Experts ,
    Has any one experienced the open doc URL to open the report and to pass the parameter to the new report .
    I am well aware of the syntax of passing the parameter and use to work perfectly fine with XI 3.1 but its giving me griefs in BI 4.0 environment .
    In the new report i am just trying to pass the Fiscal year as a parameter with the url i can open the report but it does not accept the value being passed with the url so i have to renter the values again .
    I am using BO 4.0 SP2 Patch 6 and trying to intact with crystal and webi report   built on top of BEx query with the fiscal year parameter defined in BEx query level .
    Any comment on this will be appreciated.
    Thanks,
    Vibhav

    Hi Nakul,
    I am not using the user response to get the value i tested it in Crystal Enterprise environment i tired passing the following syntax
    http://.../OpenDocument/opendoc/openDocument.jsp?sIDType=CUID&iDocID=...&lsSFiscal%Year%(Single%Value%Entry,%Required)={?0P_FYEAR}
    {?0P_FYEAR}  this is a variable comming form BEx query into Crystal i tired to use it and pass it to other report but i cannot pass it i have tried to pass the hardcoded value still i see the paramater screen and have to enter the value again.
    I am not sure if anyone has tested this functionality in BI 4.0 environment .
    Thanks,
    Vibhav

  • Cache url with parameter

    Hi, All
    I need to cache a site like the following:
    http://host/myapp/index.do?locale=en
    I used "Regular Expression" Type, with URL Expression defined as:
    ^/myapp/
    /index*
    ^/myapp/index.do?locale=en$
    But none works.
    Please advice, Thanks,
    Deborah

    Hi, Christine
    I removed ESI from the page header, changed the rule to "^/myapp/index.do", the page couldn't be cached.
    Have you ever had a data action page cached without using ESI but webcache rules?
    Deborah

  • How to put a link to an url with parameter in wiki page

    Hi all,
    i'am trying to use the wiki included in os x Server, and put a url link on one page like this :
    http://www.google.fr/search?hl=fr&q=conversion+sek+euros
    unfortunately when i click on this link it doesn't work.
    When i go back to url link on the menu, the link is http://www.google.fr/search
    have you any idea?
    Thank's a lot
    Thierry

    Cross-posting bastard;-I always wondered... is that worse than a cross-dressing bastard?

  • Not able to execute external file with parameter using RuntIme

    When I try tio execute the following command :
              String command="C:\\Program Files\\BMC Software\\CONTROL-M EM 6.2.01\\bin\\deftable.exe -u abc -p abc567 -s q23.nz.dq.com -src DBIQ-EURILIBORROB.exp";
    Process p = Runtime.getRuntime().exec(command);
    It gives "File 'DBIQ-EURILIBORROB.exp' is Missing." even though the file is available in the given location. Please help
    Regards
    Edited by: Robin_Jacob on Aug 14, 2009 5:09 AM

    Thanks a lot mate.. It works now.. But i had to do a little more changes.
    I was getting an exception
    java.lang.IllegalThreadStateException: process has not exited
         at java.lang.ProcessImpl.exitValue(Native Method)
         at com.Test.test1(Test.java:94)
         at com.Test.main(Test.java:23)
    when my code was like this:
    File f = new File ("C:\\Program Files\\BMC Software\\CONTROL-M EM 6.2.01\\bin"); // The working directory - not the file to be processed
    String[] command = {f.getAbsolutePath() + "\\deftable.exe", "-u", "abc", "-p", "abc567", "-s", "q23.nz.dq.com", "-src","DBIQ-EURILIBORROB.exp"};
    Process proc = Runtime.getRuntime().exec(command,null,f);
    int exitVal = proc.exitValue();
    } catch (Throwable t){
    t.printStackTrace();
    But it worked when i changed the code as shown below it worked fine
    public static void test1() throws IOException
    File f = new File ("C:\\Program Files\\BMC Software\\CONTROL-M EM 6.2.01\\bin"); // The working directory - not the file to be processed
    String[] command = {f.getAbsolutePath() + "\\deftable.exe", "-u", "abc", "-p", "abc567", "-s", "q23.nz.dq.com", "-src","DBIQ-EURILIBORROB.exp"};
         Process proc = Runtime.getRuntime().exec(command,null,f);
         InputStream in = proc.getInputStream();
              InputStream err = proc.getErrorStream();
              BufferedReader readIn = new BufferedReader(new InputStreamReader(in));
              BufferedReader readErr = new BufferedReader(new InputStreamReader(err));
              int b;
              int exit = -1;
              boolean bReady = false;
              while (!bReady) {
                   try {
                        exit = proc.exitValue();
                        bReady = true;
                   } catch (IllegalThreadStateException isex) {
                   suckStreams(readIn, readErr);
              readIn.close();
              readErr.close();
              System.out.println("Exit Status :" + exit);
    public static void suckStreams(BufferedReader readIn, BufferedReader readErr) {
              try {
                   while (readIn.ready() || readErr.ready()) {
                        if (readIn.ready())
                             System.out.println(readIn.readLine());
                        if (readErr.ready())
                             System.err.println(readErr.readLine());
              } catch (IOException ex) {
                   System.err.println("suckStreams: " + ex);
         }

  • Drop Down Menu - 3rd Level iView open in new external Window with parameter

    Hello Community,
    we have the following problem: We have created some drop down menu for the portal navigation. Some iViews we are going to open in new Window. Therefore the iViews are getting some parameters like: menubar=no, toolbar=no, resizable=yes, status yes....and so one....And also the iView has fixed height and width.
    Now when we are going to open the iview in the second level position, everything is working fine and the window functions are also used.
    When we change the position of the iview from an second level position to an third level position, and we want to open the iview from the drop down menu, the window functions and the size is not used.
    Can some one help? I have attached the JSP Code:

    [JSP File|http://www.megaupload.com/?d=R7YLTTKX]

  • Changing Internal & External URLs?

    We run split DNS so right now for all services the internal and external Exchange 2010 URLs are simply set to mail.domain1.com.
    If I change them to mail.domain2.net, assuming there is a valid cert on the Exchange box for mail.domain2.net, and assuming that split DNS points mail.domain2.net to the internal/external IP of the Exchange box, new clients should pick up the new domain.
    What happens to existing clients i.e. Outlook and ActiveSync?
    Will they continue to use mail.domain1.com until the account is removed and added again, or do they do a periodic refresh/update/poll of which setting to use?
    In particular would the URL used by Outlook Anywhere be updated on the client automatically?
    This topic first appeared in the Spiceworks Community

    Hi,
    For the migration from the Exchange 2007 to Exchange 2013, we need change the external URLs with the new Exchange 2007 host name legacy.domain.com and migrate all mailboxes including public folders.
    For more information about the migration, you can refer to the following articles:
    http://blogs.technet.com/b/meamcs/archive/2013/07/25/part-3-step-by-step-exchange-2007-to-2013-migration.aspx
    http://blogs.technet.com/b/meamcs/archive/2013/07/25/part-4-step-by-step-exchange-2007-to-2013-migration.aspx
    If you have any question, please feel free to let me know.
    Thanks,
    Angela Shi
    TechNet Community Support

  • Loading image with parameter

    I'm trying to display image in report using image URL with parameter 
    for example 
    ="http://www.ilikewallpaper.net/iPhone-5-wallpapers/download/6556/Dark-Light-iPhone-5-wallpaper-ilikewallpaper_com_"+Parameter!Test.Value+".jpg"
    it dont work at all. and tried other ways possible. 

    Hi fawad_siddiqui,
    Thank you for posting in MSDN forum.
    According to your description, I am afraid that the issue is out of support of
    Visual Studio General Forum which discuss VS IDE issue.
    In addition, could you please tell me which kind of report you create? Please tell me detailed message about his issue so that we
    will help you move this case to the specific
    forum, you will get dedicated support from the experts.
    Thanks for your understanding.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Can't use my custom claims provider when access to my site from external url

    Hi,
    I just created a clean SP 2013 (15.0.4641.1000) environment and I have a site collection up and running with access from internal url (http://my_server_name/) and external url (http://cloudshare_external_url/).
    When I access from internal url (with the local administrator account) I can add users to site groups:
    But if I access from external url (with the local administrator account, too) the people picker does not work:
    And if I put the email directly, I get the following error: "Sorry, you are not allowed to share this with external users"
    What am I doing wrong? Am I missing something?

    Hi Sebasl,
    Based on your description, my understanding is that the users cannot be resolved when accessing the site using external URL.
    I recommend to check the authentication provider for the external zone of the web application to see if the custom claims provider is selected.
    Please go to Central Administration > Application Management > Manage web applications > highlight the corresponding web application and then click Authentication Providers in the ribbon > click the external zone.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Exchange 2010 - Virtual Directory Internal & External URL's with Wildcard Cert

    Hi Guys
    I am trying to determine if my Exchange 2010 server Virtual Directory URL's are setup according to best practice. I'm sure anyone with good Exchange experience will instantly be able to tell me if my Virtual Directory DNS is correct or could cause issues.
    Scenario:
    Hosted Exchange 2010 SP1. Multiple client mail domains hosted
    2x CA, 2x HT, 2x MB, 2x DC
    Wildcard *.example.co.za certificate being used on CA servers
    AD domain is he.example.za.net
    CA Server naming example: ca1.he.example.za.net, ca2.he.example.za.net
    he.example.net DNS is done by DC servers
    External name used by clients: outlook.example.co.za (For Outlook setup and OWA access)
    outlook.example.co.za has two A records pointing to the CA IP's
    PROBLEM/CONCERN:
    We have a random OWA log out issue that we believe might be due to ambiguous DNS names being used.
    If I change the Virtual Directories External URL to be the FQDN of the server, we get a Certificate Error in clients (due to the .co.za Wildcard). The external URL clients use
    must be on .co.za.
    So are the Virtual Directory URL's causing the CA servers to loose track of who is authenticated in where (leading to OWA disconnection)? Is it fine to load balance the CA servers with the DNS the way we are doing currently? Any other issues you see?
    Current Virtual Directory settings:
    Note that they are identical on CA1 and CA2
    [PS] C:>Get-OabVirtualDirectory -server ca2 |fl *url
    InternalUrl : https://outlook.example.co.za/OAB
    ExternalUrl : https://outlook.example.co.za/OAB
    [PS] C:>Get-WebServicesVirtualDirectory -Server ca2 |fl *url
    InternalNLBBypassUrl : https://ca2.he.example.za.net/ews/exchange.asmx
    InternalUrl          : https://outlook.example.co.za/ews/Exchange.asmx
    ExternalUrl          : https://outlook.example.co.za/ews/Exchange.asmx
    [PS] C:>Get-ActiveSyncVirtualDirectory -Server ca2 |fl  *url
    MobileClientCertificateAuthorityURL :
    InternalUrl                         : https://outlook.example.co.za/Microsoft-Server-ActiveSync
    ExternalUrl                         : https://outlook.example.co.za/Microsoft-Server-ActiveSync
    [PS] C:>Get-EcpVirtualDirectory -Server ca2 |fl  *url
    InternalUrl : https://ca2.he.example.za.net/ecp
    ExternalUrl : https://outlook.example.co.za/ecp
    [PS] C:>Get-OwaVirtualDirectory -Server ca2 |fl  *url
    Url             : {}
    Exchange2003Url :
    FailbackUrl     :
    InternalUrl     : https://ca2.he.example.za.net/owa
    ExternalUrl     : https://outlook.example.co.za/owa
    [PS] C:>Get-AutodiscoverVirtualDirectory |fl *url, server
    InternalUrl :
    ExternalUrl :
    Server      : CA1
    InternalUrl : https://outlook.example.co.za/
    ExternalUrl : https://outlook.example.co.za/
    Server      : CA2
    REALLY APPRECIATE SOME EXPERT ADVISE. Thanks.

    Hi Kane,
    Why did not you use cas array to load balance client connectivity?
    If you create a CAS array, you can assign an virtual IP (VIP) for the CAS array FQDN (e.g CASarray.example.za.net), and then point all the Virtual Directories internal URL to CAS array fqdn;
    For external, you can point outlook.example.co.za to VIP which had been assigned to CAS array.
    I recommend you refer to the following article to understand CAS array:
    http://technet.microsoft.com/en-us/library/ee332317(v=exchg.141).aspx#CASarray
    http://blogs.technet.com/b/ucedsg/archive/2009/12/06/how-to-setup-an-exchange-2010-cas-array-to-load-balance-mapi.aspx
    http://blogs.technet.com/b/exchange/archive/2012/03/23/demystifying-the-cas-array-object-part-1.aspx
    Best regards,
    Niko Cheng
    TechNet Community Support

  • Design-Time Data with external url linking

    I have a data list here:
    http://facetmedia.com/new/
    In the portfolio section I would like to make links which are clickable for the portfolio items. I now know how to use Flex Builder to make external URL links for regular buttons. What I don't know is how to edit this data list to create external links. Any help would be appreciated.

    Hi trancepriest,
    First, if you haven't already, you probably want to read some of the other posts here about creating a URL link button.  Once you've tried doing that and feel comfortable setting up a simple URL link in a test project, then you can move on to integrating this functionality into your list.
    Now -- the rest depends on how the data is represented in your list.  From some of your other posts here, it actually sounds like you're no longer using a list at all, but rather just a tall layout of hardcoded items set inside a scrolling viewport.  If this is the case, you can just repeat the simple button creation you did above, placing all the buttons in the appropriate places in your tall layout (on top of / next to each distinct "item" in the layout).
    If you're still using a Data List with a Repeated Item, then the initial setup will be a little bit more tricky, but it will save you time in the long run since you only have to set up one button (which will then be repeated for each item).  Here's how:
    Find the "dataProvider" tag in the code.
    Inside that will be a series of "Object" tags listing your current list data.  Add a new "url" attribute to each tag, e.g. url="http://www.adobe.com".
    Edit the Repeated Item's definition (in the source code, find the itemRenderer attribute on the List tag and ctrl+click it).
    Create your URL link button inside there. But -- instead of typing in the URL as a string in quotes (as seen in other examples in this forum), use data.url to refer to the url attribute you added in step 2.
    Hope that helps!
    - Peter

  • Open modal window with extern URL?

    Hello,
    how can I open a modal window with a external url?
    e.g. I want to open Google, but WD Code should stop and the google window is in front of my portal until it is closed. Then WD code continues.
    WDPortalNavigation.navigateAbsolute(..) can't open a modal window, right? WD Source Code keeps running...
    Can I open a WD-Window with context from a external URL?
    I would be grateful for any help!
    Best regards
    Iris Deuring

    Hi,
    Create an action for a button and write this code in that.
    IWDWindow window =
          wdControllerAPI.getComponent().getWindowManager().createExternalWindow(
            "http://www.google.de",
            "Google - Search for an email address",
            false);
        window.open();
    Hope this help.
    Regards,
    Nagaraju Donikena.

  • Form field to open a external URL passing  the value typed by user in URL

    I am trying to build a text field with a "Go" button beside it so that when a user types in a value (e.g. a bug number) in this text field, it opens up a external URL (e.g. bugdb URL) with the parameter being passed in the URL. e.g:
    P1_SEARCH (Text field): 464666 (value)
    So when I click on the Go button beside it, I want a URL to open in a new browser with the following URL:
    http://xxxx.oracle.com/pls/edit_info_top?report_title=&rptno=:P1_SEARCH (P1_SEARCH should be replaced at the run time)
    I tried using the branching and javascript:popupURL but I was not able to achieve the above mentioned flow.
    Also, I noticed that when I try to create a button in a region selecting the option "Create a button displayed among this region's items", a javascript:doSubmit is automatically associated with it. Is there any way of changing it to javascript:popupURL?
    Can somebody help me to resolve this issue? Thanks in advance.

    Narayan,
    Please don't post the same question twice. If you don't get an answer, it's OK to "bump" it by replying to your own question. You've already asked this question here:
    issues while invoking external URL
    Sergio

  • Open external URL from Homepage Framework

    Hi,
    We are building our new ESS functionality with Homepage Framework and I need to create some links to external URL. I would like them to open in a different window with no portal header at all. They should appear as services listed in the menu area. While this seems easy, I had tried several things with no success.
    First, I created an URL iview in portal content. I marked the option "launch in external window" to Open in a separate window.
    I create a resource that pointed to this Iview, and linked resource with a "java webdynpro" service, service with subarea and subarea with area. The service link is displayed correctly but it is always opened in the portal page, not in a different one.  Have i forgotten any parameter that would make this work?
    A second approach was to create a resource that includes the URL and an associated service, marked as "Direct URL launched in separate window".
    This succeds in calling the URL in a differeny window but it adds some strange parameters at the end. So instead of calling http://www.google.com it calls  something like http://www.google.com?sap-ext-sid=2J*HeTVW7295w3QWBZhQow--
    jQDfzgrDHRt*yZ87GlXsgA--%2Fpcd%3Aportal_content%2Fcom.bshg%2Fpct%2Fhcm%
    2FEURO%2FES%2FESS%2Froles%2Fcom.bshg.hcm.ess-es%2FESS%
    2Fcom.bshg.hcm.infoLinks%2Fsap.com%2Fpcui_gp%7Exssutils%2FXssMenuArea%
    2Fbase&sap-wd-arfc-useSys=SAP_R3_SelfServiceGenerics%3AHR0&sap-wd-
    cltwndid=WID1325147123879&sap-accessibility&sap-locale=es&sap-rtl&sap-
    epcm-guid=validate&sap-wd-renderMode=viewArea&sap-pp-
    consumerBaseURL=http%3A%2F%2Fu3d.bshg.com%3A80&sap-ep-
    version=7.0108.20110207041646.0000&sap-wd-tstamp=1325147150353&sap-
    cssversion=7.11.7.30.0&sap-pp-producerid=com.bshg.BSHG_HCM_EMEA&sap-wd-
    app-namespace=zzzz&sap-cssurl=http%3A%2F%2Fu3d.bshg.com%3A80%2Firj%
    2Fportalapps%2Fcom.sap.portal.design.urdesigndata%2Fthemes%2Fportal%
    2Fcustomer%2Fbsh%2Fur%2Fur_ie6.css%3F7.1.8.0.1&sap-wd-finish-
    rendering=false
    While some pages can ignore those extra parameters, in other cases, this causes a "page not found" error.
    Any ideas on how to solve this problem?
    Many thanks in advance to all.

    Hi Daniel,
    Define Resource: you have to mention all the below details
    1. object name :http:// (url ).
    2.window name: "".
    3.window Property : target="_blank".
    and also check define service:
    service type: Direct url launched in a seperate window.
    And assign resouce to service -
    >
    service to sub area--->
    sub area to area---->
    area to areagroup.
    hope it helps............,
    Thanks,
    cbr.

Maybe you are looking for

  • 2 HUGE Issues with iTunes Match that I am having...

    Okay, so I have now had iTunes Match for one week and am having two MAJOR issues which I cannot seem to sort out.  Apple is at least investigating the first, but unless anybody here has any suggestions I am out of luck on the second for now... Issue

  • I-tunes says 'The ipod "*****"  is synced with another i-tunes library

    I just downloaded itunes 7.3.1.3. I plugged in my ipod nano (software 1.3.1) and first of all, my library had vanished (I managed to get that back) but now when I click on my ipod in itunes I get the above message (subject line), and the next bit of

  • Dreamweaver templates not working after migration

    I've had a computer failure and have set up DW8 on my new computer(xp pro). I downloaded the site and entered the site information in manage sites. 2 problems now occuring: I can create a document from a template (that DW recognizes as a template in

  • ERP eCommerce 5.0 Product Catalog

    Hello We will be implimenting eCommerce using ECC 6.0 and current version for eCommerce that is installed is ECO 5.0. Is this the latest one? or shall we be on ECO 7.0 that is released with CRM 7.0? Please confirm. Any information that you could shar

  • Bridge CC converts my thumbnails from b/w to color. How can I stop that ?

    In Bridge CS6 when I loaded images from my Canon camera shot in Raw but with the Monochrome pic style, it retained the thumbnails in black and white. That is perfect ! How can I stop Bridge CC from changing the Raw back to their default ? Help please