No destination URL is defined. Use the followind redirect URL in Transactio

Hi,
I am new BSP, I have to display logon screen in my BSP application, i was copied SYSTEM bsp application and tried to run it, but it is throwing error "No destination URL is defined. Use the followind redirect URL in Transaction SICF:  /sap(====)/public/bsp/sap/login/default.htm?sap-url= " . Please let us know what has to be done for the same
Message was edited by:
        Rams BSP

Hi Rams,
see http://help.sap.com/saphelp_47x200/helpdata/en/33/8351f1f3351c41853ea3508cbef0cf/frameset.htm
and
http://help.sap.com/saphelp_47x200/helpdata/en/1d/13c73cee4fb55be10000000a114084/frameset.htm
It sounds like you have not configured the redirect correctly in the ICF.
Cheers
Graham

Similar Messages

  • How to get rid of /j2ee prefix from URL when I use the OC4J via Oracle HTTP server

    In 9iAS 9.0.2 Oracle HTTP Server (OHS) is pre-configured to assign requests to the Home OC4J instance via the URL-prefix "/j2ee"/
    For example, the TEST servlet under OC4J would be passed through OHS using:
    http://urmachine:urApachePort/j2ee/TEST
    whereas in the standlone OC4J version, this URL works:
    http://urmachine:urOC4JPort/TEST
    How to get rid of /j2ee prefix from URL when I use the OC4J via Oracle HTTP Server?

    It is getting the url prefix from mod_oc4j.conf
    under /ora9ias/Apache/Apache/conf
    You can read more on this at
    http://otn.oracle.com/docs/products/ias/doc_library/90200doc_otn/web.902/a92173/confmods.htm#1008977
    -Prasad

  • Issues with using the output redirection character with newer NXOS versions?

    Has anyone seen any issues with using the output redirection character with newer NXOS versions?
    Am receiving "Error 0x40870004 while copying."
    Simply copying a file from bootflash to tftp is ok.
    This occurs for both 3CDaemon and Tftpd32 softwares.
    Have tried it on multiple switches - same issue.
    Any known bugs?
    thanks!
    The following is an example of bad (NXOS4.1.1b) and good (SANOS3.2.1a)
    MDS2# sho ver | inc system
      system:    version 4.1(1b)
      system image file is:    bootflash:///m9200-s2ek9-mz.4.1.1b.bin
      system compile time:     10/7/2008 13:00:00 [10/11/2008 09:52:55]
    MDS2# sh int br > tftp://10.73.54.194
    Trying to connect to tftp server......
    Connection to server Established. Copying Started.....
    TFTP put operation failed:Access violation
    Error 0x40870004 while copying tftp://10.73.54.194/
    MDS2# copy bootflash:cpu_logfile tftp://10.73.54.194
    Trying to connect to tftp server......
    Connection to server Established. Copying Started.....
    |
    TFTP put operation was successful
    MDS2#
    ck-ci9216-001# sho ver | inc system
      system:    version 3.2(1a)
      system image file is:    bootflash:/m9200-ek9-mz.3.2.1a.bin
      system compile time:     9/25/2007 18:00:00 [10/06/2007 06:46:51]
    ck-ci9216-001# sh int br > tftp://10.73.54.194
    Trying to connect to tftp server......
    |
    TFTP put operation was successful

    Please check with new version of TFTPD 32 server. The error may be due to older version of TFPT server, the new version available solved this error. Files are getting uploaded with no issues.
    1. Download tftpd32b.zip from:
    http://tftpd32.jounin.net/tftpd32_download.html
    2. Copy the tftpd32b.zip file into an empty directory and extract it.
    3. Copy the file you want to transver into the directory containing tftpd32.exe.
    4. Run tftpd32.exe from that directory. The "Base Directory" field should show the path to the directory containing the file you want to transfer.
    At this point, the tftpserver is ready to begin serving files. As devices request files, the main tftpd32 window will log the requests.
    Best Regards...

  • Problem using the setPage(String url) of JEditorPane

    Hi all !
    I'm developping a text file generator which generates a text file and use a viewer to display the content of this text file.
    The first time, it works correctly, it displays the text file content but the others times it doesn't work correctly, the first text file content remains displayed.
    It seems that the setpage(String url) method doesn't work correctly.
    Does anyone know this problem ?
    In advance, thanks a lot.
    Best regards,
    Farid.
    Here is the code of the viewer:
    import javax.swing.*;
    import javax.swing.border.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import java.lang.*;
    public class ViewerQCM extends JPanel {
         private JPanel panelSouth;
         private JLabel titreLabel;
         private JButton genererQCMButton;
         private JEditorPane editorPane;
         private JScrollPane scrollPane;
         public ViewerQCM() {
              JFrame frame = new JFrame("G�n�rateur de QCM");
              setLayout(new BorderLayout());
              panelSouth = new JPanel();
              panelSouth.setLayout(new FlowLayout());
    titreLabel = new JLabel("G�n�rateur de QCM", SwingConstants.CENTER);
              editorPane = new JEditorPane();
              editorPane.setContentType("text/plain");
    editorPane.setText("Cliquer sur le bouton \" G�n�rer QCM \" ");
              editorPane.setEditable(false);
              genererQCMButton = new JButton("G�n�rer QCM");
              genererQCMButton.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e) {
              GenerateurDeQCM.getInstance().init();
              GenerateurDeQCM.getInstance().generateQuestionnaire();
                        try {
    editorPane.setPage("file:" + AccesBase.getString("generateur.QCM"));
                        catch (IOException ex) {
                             ex.printStackTrace();
    LogFile.getInstance().write("Exception *** IOException caught in constructor ViewerQCM() ***");
                   LogFile.getInstance().write(ex.getMessage());
                   LogFile.getInstance().flush();
              scrollPane = new JScrollPane(editorPane);
              add(titreLabel, BorderLayout.NORTH);
              add(scrollPane, BorderLayout.CENTER);
              panelSouth.add(genererQCMButton);
              add(panelSouth, BorderLayout.SOUTH);
    frame.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    System.exit(0);
    frame.getContentPane().add(this);
    frame.pack();
    frame.setSize(500,600);
    frame.setVisible(true);
         public static void main(String args[]) {
              new ViewerQCM();
    }

    hi,
    there is some problem with JedtorPane when you update the page. Image or not updated all the time because the buffer keep the old image and does not update it. The problem is that class got to much protected field so you cannot change nothing. It is a bug since Two years and no body as correct it.

  • How do I use the Parameters from URL to filter on Content Query in ItemStyle.xsl?

    Hi, I might need your help with code that Content Query under <xsl:Template...> that I need a filter for 3 parameter from url (from date, to date(for date range) and type.
    eg: www.mywebsite.com/pages/Filter.aspx?DateFrom=01/01/2012&DateTo=01/01/2013&Type=sports
    I've google for help and not sure they seem working so far.

    Hi,
    If you want to filter a Content Query Web Part with the parameters from URL, we can achieve it with OOTB of Content Query Web Part by adding "Additional Filters" in "Web Part Properties"->"Query". We can add
    three filters like:
    date is greater than [PageQueryString:DateFrom]
    And
    date is less than [PageQueryString:DateTo]
    And
    type is equal to [PageQueryString:Type]
    Then redirect to the URL: www.mywebsite.com/pages/Filter.aspx?DateFrom=01/01/2012&DateTo=01/01/2013&Type=sports, the query results will be filtered.
    Please reply freely if I misunderstand your meaning or there any other questions.
    best regards
    Patrick Liang
    TechNet Community Support

  • Use Javascript to redirect URL on exit of BSP

    Hi all,
    On closing of a web planning session(an BW-BPS created BSP), I would like to automatically redirect the URL address to a URL of my choice after the session is correctly closed (releasing all locks etc).
    I am looking to do this by including a javascript statement. Anyone know how to do this?
    Thanks and regards,
    Rael

    Hi Rael,
    Create 2 BSP Pages in your Appln using the foll code.
    <b> First Page  </b>
    <b>1.</b> Layout
    <%@page language="abap"%>
    <%@extension name="htmlb" prefix="htmlb"%>
    <htmlb:content design="design2003">
      <htmlb:page title = "sdsd ">
        <htmlb:form>
          <htmlb:button id      = "exitpage"
                              text    = "Exit"
                              design  = "EMPHASIZED"
                              onClick = "OnClickEventHandlerName" />
        </htmlb:form>
      </htmlb:page>
    </htmlb:content>
    <b>2.</b> OnInputProcessing
       CLASS cl_htmlb_manager DEFINITION LOAD.
       DATA event TYPE REF TO if_htmlb_data.
       event = cl_htmlb_manager=>get_event_ex( request ).
       CASE event->event_id.
         WHEN 'exitpage'.
           navigation->goto_page( 'session_exit.htm' ).
       ENDCASE.
    <b> Session_exit Page </b>
    <b>1</b>. Layout
    <%@page language="abap"%>
    <%@extension name="htmlb" prefix="htmlb"%>
    <script language="JavaScript">
    function exitBSPApplication()
    <% CLASS cl_bsp_login_application DEFINITION LOAD. %>
    var EXIT_URL = "<%= CL_BSP_LOGIN_APPLICATION=>GET_SESSIONEXIT_URL( page =
    page ) %>";
    EXIT_URL += "&bsp_do_not_delete_sso2_cookie=X";
    self.location.href=EXIT_URL;
    window.open(EXIT_URL);
    </script>
    <form name="frmmenu" method="post">
    <body onload="exitBSPApplication()">
    Rgds,
    Jothi.
    Pl close the thread if your problem is solved.

  • Need SAP Authentication option when using the Open document URL methos

    Hi Experts,
            I had published a report into the BO Server. I can able to Login to the CMC & Info view through SAP Authentication. But, when I Try to Open the Report through the Open document or viewrpt URL, I am not getting the SAP option in the Authentication Drop down box. Kindly give me the solution to login through the SAP Authentication In the URL Method. Thanks for your support in advance.
    Thanks & Regards,
    Shiva

    Hi,
    the option has been hidden by default.
    Navigate to <BO_INSTALL_DIR>Tomcat55/webapps/openDocument/WEB-INF
    Open the web.xml file and search for "authentication.visible". Set the parameter from "false" to "true".
    Restart your Tomcat and you should be fine.
    Regards
    -Seb.

  • The attempt to contact Autodiscover using the HTTP Redirect method failed. Exchange 2007 to Office 365 Cutover Mirgation

    I am getting the following error message shown below. Wondering if i could get some help on how to resolve this issue.

    My understanding is that the only way to resolve this issue is to install an Exchange 2010 or 2013 server in your on-premises organization and configure that as a hybrid server.  Once you configure your Autodiscover record to point to the Office 365
    hostname as shown in "domains", this should no longer be an issue.
    Ed Crowley MVP "There are seldom good technological solutions to behavioral problems."

  • Url redirects using the BC domain

    My url redirects are using the BC domain name instead of my "added domain".
    eg : 
    Inside the url directs section it shows
    http://mydomain.businesscatalyst.com       
    instead of
    http://www.mydomain.com
    as the source destination.
    Should that be happening?  Ind oing so its causing a few of my redirects not to work correctly.

    Hello Sydney,
    Thanks for the help.  We never used the .businesscatalyst.com domain as a link reference when building the site and looking over it again, as far as we can see, we've used all relative urls.
    The only way the .businesscatalyst.com may have been inserted is if BC itself inserted it somewhere (maybe a stray link somewhere). 
    I can add a screenshot of the reference but BC and CC seem to be down as its not logging me in (constantly loading).
    The reference itself is appearing in the "Url redirect section" of BC, in the "add redirect" window.
    For the source destination it asks for folder/filename and below that it is the auto generated url which is using the system url instead of the "added domain".
    I'll try and add a screenshot once Adobe let me log in.

  • Connecting EP7.0 to iSeries backend system using the connector framework

    Hello All,
    We are trying to setup a backend connection in EP7.0 to an AS/400 Legacy database using the JDBC Connector framework.
    We use the driver and url syntax from OSS note 773401 "Configuring Portal JDBC System connection properties"
    Driver:
    com.sap.portals.jdbc.db2.DB2Driver
    URL: jdbc:sap:db2://<server>:<port>;DatabaseName=<database_name>
    When performing a connection check using the Support Platform, we can see on the legacy system that the connection is being established but for some reason the Portal doesn't get a confirmation and runs in to an endless loop...
    Does anyone have a experience with such a connection?
    Can we use the standard db2 driver class as mentioned in note 773401 or do we need to create/deploy our own?
    Thanks in advance
    Ron

    Hello All,
    We are trying to setup a backend connection in EP7.0 to an AS/400 Legacy database using the JDBC Connector framework.
    We use the driver and url syntax from OSS note 773401 "Configuring Portal JDBC System connection properties"
    Driver:
    com.sap.portals.jdbc.db2.DB2Driver
    URL: jdbc:sap:db2://<server>:<port>;DatabaseName=<database_name>
    When performing a connection check using the Support Platform, we can see on the legacy system that the connection is being established but for some reason the Portal doesn't get a confirmation and runs in to an endless loop...
    Does anyone have a experience with such a connection?
    Can we use the standard db2 driver class as mentioned in note 773401 or do we need to create/deploy our own?
    Thanks in advance
    Ron

  • Form Based Authentication Redirect URL

    I'm using form based authentication in standalone OC4J 10.1.3.1. I have set the system property oc4j.formauth.redirect to true to force OC4J to redirect using 302 any successful authentication to j_security_check.
    The problem is that the redirect URL loses any query parameters. Here's the raw HTTP being posted:
    POST http://localhost:8988/manage/j_security_check HTTP/1.1
    Host: mvakoc-pc.peoplesoft.com:8099
    User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1
    Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
    Accept-Language: en-us,en;q=0.5
    Accept-Encoding: gzip,deflate
    Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
    Keep-Alive: 300
    Connection: keep-alive
    Referer: http://mvakoc-pc.peoplesoft.com:8099/manage/target?instanceName=denlcmlx1_entserver_1&targetType=entserver
    Cookie: JSESSIONID=0a8b7ff6231c049914997fdb4ebb93b4854b0956862b; SignOnDefault=18438; e1AppState=
    Content-Type: application/x-www-form-urlencoded
    Content-Length: 62
    X-Forwarded-For: 10.139.127.246
    j_username=username&j_password=password&url=%2Fmanage%2Fhome
    However the response back drops off the query parameters:
    HTTP/1.1 302 Moved Temporarily
    Date: Fri, 05 Jan 2007 21:59:22 GMT
    Server: Oracle Containers for J2EE
    Content-Length: 231
    Connection: Keep-Alive
    Keep-Alive: timeout=15, max=100
    Location: http://mvakoc-pc.peoplesoft.com:8099/manage/target
    <HTML><HEAD><TITLE>Redirect to http://mvakoc-pc.peoplesoft.com:8099/manage/target</TITLE></HEAD><BODY>http://mvakoc-pc.peoplesoft.com:8099/manage/target</BODY></HTML>
    Any workaround?

    It does not appear to be quite the same issue. That bug indicates that everything works fine in a standalone OC4J environment. This would be true with the use case specified as the original URL (/em/console/ias) does not include any query parameters. In my case the original URL contains query parameters so the ultimate redirected URL should also contain those.

  • Redirect URL rewriting in WLS8.1 and WLS9.2

    Hi,
    I am looking for help to solve the redirect URL issue for the following configuration:
    A hardware load balancer sits between the web clients and a weblogic cluster (one managed server at this moment, will add more later). The web clients use HTTPS to access the server; the load balancer converts the HTTPS to HTTP and then forwards the request to weblogic cluster.
    The problem I am trying to solve is, when a redirect is sent back to the web client, it should be in HTTPS and use virtual host name, not the actual host name which sends the redirect response.
    I've tried the "frontend host" parameters in the admin console; but could not see any effect. Any help will be greatly appreciated.
    Harry

    Problem solved by configuring the webapp to send relative (instead of absolute, which is the default) redirect URL back to the web client.
    Thanks.

  • URL object with https string throws malformed url exception: unknown protocol: https

    In WebLogic I am trying to connect to an HTTPS url by passing that url
    string into the contructor for URL object. This throws a Malformed URL
    Exception : unknown protocol: https.
    When i run this same block of code outside of weblogic (in a stand-alone
    app), it runs perfectly. (not exceptions when creating the URL object).
    why do i get this exception in weblogic?
    could weblogic be loading its own URL class rather than the java.net.URL
    class (which supports ssl)? if so how do i override that classloading?
    is there a weblogic security "feature" that prevents opening an ssl
    connection?
    thanks for any help
    mike
    [email protected]

    You need to modify your weblogic.policy file to allow you to change the
    the property java.protocol.handler.pkgs ... and any other properties
    that you may probably change using JSSE (for example:
    javax.net.ssl.trustStore for storing certificates of servers that you
    want to connect to from WLS )
    Regards,
    John Salvo
    Michael Harrison wrote:
    >
    thanks for the help dennis, but still get the "unknown protocol https".
    the URL object sees that the URLStreamHandler ==null and get the value for
    java.protocol.handler.pkgs (which should be
    com.sun.net.ssl.internal.www.protocol) then it tries to load that class. i
    believe that the GetPropertyAction("java.protocol.handler.pkgs","") is not
    returning com.sun.net.ssl.internal.www.protocol. therefore the class is not
    getting loaded
    i think that my classpath is set up properly for classpath and
    weblogic_classpath so i think that i me calling
    System.setProperty("java.protocol.handler.pkgs",
    "com.sun.net.ssl.internal.www.protocol"); is not effective.
    do you know anyway i can trouble shoot this.
    thanks
    mike
    Dennis O'Neill <[email protected]> wrote in message
    news:39d23c28$[email protected]..
    Https is an add-in so to speak. Try this before you create your url:
    System.setProperty ("java.protocol.handler.pkgs",
    "com.sun.net.ssl.internal.www.protocol");
    // add the default security provider (again, in JSSE1.0.1)
    int iap = java.security.Security.addProvider(new
    com.sun.net.ssl.internal.ssl.Provider() );
    dennis

  • Portal Logoff redirection URL

    Hi,
    I want to redirect the URL to another page from the default log on page when the user logs off. I know we can change it in ume.logoff.redirect.url and give the desired URL. But the problem is we have two different sites and each sites should return to different screens once the logoff is clicked. So the URL cannot be maintained in this property. We have two mastheads for both this sites.
    I tried to figure it out in the code. The URL to be mentioned is present in logOutComponent which is part of the jar file which comes with masthead. I cant change the desired URL in that component. Where can i change the URL to get the desired result?
    Regards,
    p188071

    Hi <name>,
    I decompiled the "logOutComponent" .class and it containts the following code:
    // Decompiled by DJ v3.6.6.79 Copyright 2004 Atanas Neshkov  Date: 19-1-2008 18:04:06
    // Home Page : http://members.fortunecity.com/neshkov/dj.html  - Check often for new version!
    // Decompiler options: packimports(3)
    // Source File Name:   LogOutComponent.java
    package com.sapportals.portal.navigation;
    import com.sap.security.api.UMFactory;
    import com.sap.security.api.util.IUMParameters;
    import com.sapportals.portal.prt.component.*;
    import com.sapportals.portal.prt.pom.IEvent;
    import com.sapportals.portal.prt.runtime.IPortalRuntimeResources;
    import com.sapportals.portal.prt.runtime.PortalRuntime;
    // Referenced classes of package com.sapportals.portal.navigation:
    //            INavigationGenerator
    public class LogOutComponent extends AbstractPortalComponent
        public LogOutComponent()
        public void doOnNodeReady(IPortalComponentRequest request, IEvent event)
            String externalUrl = UMFactory.getProperties().get("ume.logoff.redirect.url");
            boolean silent = UMFactory.getProperties().getBoolean("ume.logoff.redirect.silent", false);
            if(externalUrl != null && !externalUrl.equals("") && !silent)
                request.redirect(externalUrl);
            } else
                INavigationGenerator navigationService = (INavigationGenerator)PortalRuntime.getRuntimeResources().getService("com.sap.portal.navigation.service.navigation");
                String URL = navigationService.getPortalURL(request, null);
                request.redirect(URL);
        public void doContent(IPortalComponentRequest iportalcomponentrequest, IPortalComponentResponse iportalcomponentresponse)
    As you can see this module just gets the property "ume.logoff.redirect.url", does an adittional check and then gives back this url..
    Not that fancy..
    My suggestion to you would be to edit the portalapp.xml, look for the component "default" and extend it with an additional component property called "MyCustomLogOffURL" for example. To do this just copy the allready excisting "Help URL" property and rename.
    Example:
    <property name="MyCustomLogOffURL" value="http://yourloggofurlforthismasthead.com">
      <property name="plainDescription" value="My Custom Logoff URL" />
      <property name="category" value="Navigation" />
    </property>
    Adding this property here makes you set it seperately for both the masterheads you use, because you can just set it in the Property editor of the PCD
    In addition you now need to modify the "HeaderiView.jsp" a bit to use your custom parameter instead of the "logOutComponent".
    To do that add the following initialisation at the beging of the jsp file:
    final String MY_CUSTOM_LOG_OFF_URL = "MyCustomLogOffURL";
    ....and change the function GetLogoffURL so that it will look like this:
    private String GetLogoffURL(IPortalComponentRequest request)
         String value = (String)request.getNode().getValue(MY_CUSTOM_LOG_OFF_URL);
         return value;
    <h3>PLEASE TAKE NOTICE OF THE FOLLOWING</h3>
    <h5>Never change the SAP component always create a copy and rename it to your own namespace!!!</h5>
    Good Luck,
    Benjamin Houttuin

  • OIM - Redirection URL in a Authentication Rule Action must not contain "?"?

    Hello,
    we run OAM to secure some APEX-Application. For one or two reasons we have to use a redirection URL to forward after successfull authentication with Form-Based-Authentication to the application. This works wonderfull with "normal" HTML-Pages. But as soon there is a parameter to be delivered, the Parameter Redirection URL isn't interpreted correct anymore.
    An Example:
    Redirection URL: https://test.net/test/index.htm
    works wonderful, after authentication user is forwarded to the specified URL.
    Redirection URL: https://test.net/pls/htmldb/f?p=300
    does not work, after authentication user is forwarded to https://test.net/pls/htmldb/f. Everything after the "?" (within ?) is being cut off.
    Is it possible to enter a URL for redirection with parameter identifiers like "?" ?
    Regards
    Hans

    Already found a solution,
    when entering only /pls/htmldb/f?p=300 it works...
    strange..

Maybe you are looking for

  • Retrieve recording from fios

    I guess this topic was discussed before and it was all over the internet. here is the issue.  I just got new plan and sign up with fios tv with dvr.  I am new to this and actually first use dvr.  I recorded some shows on tv and want to take it out pu

  • Using Weblogic to Deploy Simple Flex App

    Hi,    I am trying to deploy a simple Flex application in a weblogic8.1  server , so that I can use it locally. Can any one please guide me where and how I have to deploy my flex app . I am pretty new to this can any body provide me a guide or walk t

  • SQL Developer and External Procedures not in tree.

    Does sql Dveloper add external procedures to the object browser tree? I have SQL Developer 1.5 and if you have external procedures/functions before your regular PLSQL objects they will not display in the tree. I can make the tree work but the tree st

  • Problems selecting bootdisc

    To be able to run multiple systems, I've created several partitions. When booting up the machine I should be able to select which partition to boot by holding down the option/alt key. But when I do that with my Apple Aluminium Keyboard (wired) nothin

  • Cursor variable - long process to populate

    Dear all I have an ASP.NET 2.0 application calling an Oracle 9i stored procedure. The stored procedure creates and populates some tables. I then construct some SQL which I use in the following statement: OPEN report_data FOR sql_string; (report_data