How to put a forwarder on BO Login page

Hello,
We only want our users to login through our customize login page and never through BO default login page. In some cases where session is getting expired, BO sends the user to the BO default login page automatically and this confuses the user.
http://bo.abc.com:8080/PlatformServices/service/app/logon.do?appKind=InfoView...
Is there a way to modify this logon.do page where we can put a forwarder in there that forwards any user coming to this page to our customize login page?
Thanks in advance.

Hello,
Making changes to Infoview is not supported, so there will be very few people who might know how to do this. You might be able to find the correct page you want to edit by finding the various pages that make up the login page. Any changes you make to any Infoview pages might be overwritten if you apply a patch or service pack. That means you'll need to keep good notes on your edits.
You do have the ability to redirect to a specific page after logging off from Infoview, however I don't know what the behavior will be if the Enterprise session just times out and the log off button isn't actually clicked. To redirect to a specific page see KBase article (KBA) [1281092 - "How to redirect to a specified page after logging off from InfoView?|https://bosap-support.wdf.sap.corp/sap/support/notes/1281092]". You'll probably have to be logged into the [Service Marketplace|http://service.sap.com/support] (SMP) in order to view this article.
If you can't get to the KBA here's the information it covers:
+++++++++++++++++++++++++++++++++++++++++++++++
For BusinessObjects XIR2
Modify the web.xml file for the desktop.war.
1. Under the default Tomcat installation, the web.xml fileis located under:
<Tomcat install>\webapps\businessobjects\enterprise115\desktoplaunch\WEB-INF
2. Search for the following key: url.exit
3. Modify the param-value to contain the page you want to redirect to after logging off from InfoView
Sample excerpt of the web.xml showing the default value for the "url.exit":
<context-param>
     <param-name>url.exit</param-name>
     <param-value>../../default.htm</param-value>
</context-param>
Sample excerpt of the web.xml showing a modified value for the "url.exit":
<context-param>
    <param-name>url.exit</param-name>
    <param-value>http://www.google.com</param-value>
</context-param>
Restart Tomcat
For BusinessObjects XI 3.x
Modify the web.xml file for the InfoViewApp
1. Under the default Tomcat installation, the web.xml file is located under:
<Tomcat install>\webapps\InfoViewApp\WEB-INF
2. Search for the following key: url.exit
3. Modify the param-value to contain the page you want to redirect to after logging off from InfoView
Sample excerpt of the web.xml showing the default value for the "url.exit":
<context-param>
    <param-name>url.exit</param-name>
    <param-value/>
</context-param>
Sample excerpt of the web.xml showing a modified value for the "url.exit":
<context-param>
    <param-name>url.exit</param-name>
    <param-value>http://www.google.com</param-value>
</context-param>
+++++++++++++++++++++++++++++++++++++++++++++++++++++
Sincerely,
Dan Kelleher

Similar Messages

  • How to change header and footer in login page in oracle apps r12

    Hi all,
    how to change header and footer in login page in oracle apps r12 and login button background color, please help me
    thanks
    saran

    how to change header and footer in login page in oracle apps r12 and login button background color, please help meTips For Personalizing The E-Business Suite R12 Login Page (MainLoginPG) [ID 741459.1]
    How to Personalize Login page in R12? [ID 579917.1]
    R12 Login Page: How to Personalize the Logo ? [ID 849752.1]
    Thanks,
    Hussein

  • HOW TO PUT TWO PANNEL IN THE SAME PAGE

    HI ALL
    I NEED TO KNOW HOW TO PUT TWO PANNEL IN THE SAME PAGE TO FULLY UTILIZE FULL PAGE AREA BECAUSE THE PANNEL WIDTH IS TOO SMALL , SO I WANT TO MAKE THE PAPER CONTAIN TO PANNELS VERTICALLY.
    THANK YOU

    So Barb,
    I like to use multiple desktops and move back and forth between then using gestures. At the moment I have 5 open: Chrome, Firefox, Safari, Photoshop CS 6 and a desktop. I use "gestures" to navigate between them:
    Mac Basics: Multi-Touch gestures - Apple Support
    and I use Mission Control (F3) to move the various desktops around in the order I want them.
    Mac Basics: Mission Control - Apple Support
    So say I'm searching for a photo to open in CS 6, I find it on the open desktop then hit select "open" in CS 6 and go to that folder in the select pane.
    Even right now I'm typing this in Safari and "gesturing" back to Chrome where I did the search about multi touch and mission control. I drag copy the URL there  and gestured back here to paste the URL into this text.
    If you did a lot of photo searches, I set professional clients of mine in Chicago up with dual monitors (In this case you'd have an external monitor on extended desktop.). So all you need to do is just glance over at the second monitor slide your cursor over there open stuff up find your photo and go back to Photoshop and open it up.
    Hope this helps.

  • How to put multiple photos on 1 A4 page

    Hi
    Can someone tell me how to put multiple photos on 1 A4 page,
    many thanks

    Try this:
    File >> New
    Set your width and height dimensions of A4 in mm.
    Set resolution e.g. 72 for web use/email or 240-300 for printing.
    Set background color to white (or whatever you prefer) and click OK
    Now get your first image
    File >> Place Embedded
    Select your first image and click place
    Drag to position and scale with the corner handles whilst holding down Shift.
    Click the check-mark to commit.
    Repeat for each of your other images.

  • How to enable https or SSL for login page only?

    Hi,
    My application is runnnin in iPlanet web server 4.1 version.
    how to make my login page only secured (SSL)?
    previously we have done https enable for the whole application. but client specifically wants for login page only, not for the whole application. how can i make SSL for login page only in iPlanet 4.1.
    I searched through iPlanet console, but i didn't get any option such.
    i found one more thing console,i.e., "encrypt on or off". if i put encrypt "on" means, it will be for the whole application? How can i make it for login page only.
    Do i need to do any code changes for that?
    i tried through web.xml security constraints tags, but it is not working and taking that file as we are doing everything in servlet.properties and rules.properties files.
    can anybody help me in this regard?
    Regards,
    Chandu

    You specify SSL in web.xml of your application. So, in that case other web applications in same server would not be affected.
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>myresources</web-resource-name>
    <url-pattern>/*</url-pattern>
    </web-resource-collection>
    <user-data-constraint>
    <transport-guarantee>CONFIDENTIAL</transport-guarantee>
    </user-data-constraint>
    </security-constraint>Following link will help you to setup SSL in tomcat:
    [http://techtracer.com/2007/09/12/setting-up-ssl-on-tomcat-in-3-easy-steps/|http://techtracer.com/2007/09/12/setting-up-ssl-on-tomcat-in-3-easy-steps/]
    Thanks,
    Mrityunjoy

  • How to Put the orientation to Landscape in Page Setup?

    Hi All,
    I put the orientation property for header section as Landscape with:
    width & height :11, Report Width : 90, Report Height: 66
    and put orientation property for main section as Landscape with:
    width : 15, height :11, Report Width : 90, Report Height: 66
    and put orientaion property for trailer section as Landscape with:
    width : 11, height :11, Report Width : 90, Report Height: 66
    and then put the orientation in page setup to Landscape, but when I press the button OK and open Page setup window agian the oreintaion returned to Portrait, and when I print the report the right side of the page appeared blank which make the report imperfect.
    How to solve this problem and make the page to appeared landscape not portrait??

    Can you please tell me how to specify the Landscape format in system parameters. I am also facing this issue.
    The Orientation of my rtf template is 'Landscape' but the report that is getting generated in .xls Format is showing the orientation as 'Portrait'.

  • How to add a picture to the login page only

    Hi,
    I'd like to add a picture to my login page (without changing the standard template).
    Can anyone tell me how to do this?
    Thanks.

    user 601980,
    Please, have a look here:
    http://htmldb.oracle.com/pls/otn/f?p=31517:1
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/apex/f?p=107:7
    http://htmldb.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • How and where to add code to login page

    I have a login page which uses the Dreamweaver Login Behavior.  I want to add code to:
         Check the status of the person loging in (status is the last field in the mySQL authentication table).
              a.     If the person is already logged in, display an error message, and reject the attempt.
              b.     If the person is NOT currently logged in, set his status accordingly, and log him in.
    Since the behavior is generated code, and well above my head, I don't know what code to enter, and where to enter it.  Here's the code for the form:
    <?php require_once('Connections/login.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    ?>
    <?php
    // *** Validate request to login to this site.
    if (!isset($_SESSION)) {
      session_start();
    $loginFormAction = $_SERVER['PHP_SELF'];
    if (isset($_GET['accesscheck'])) {
      $_SESSION['PrevUrl'] = $_GET['accesscheck'];
    if (isset($_POST['username'])) {
      $loginUsername=$_POST['username'];
      $password=$_POST['password'];
      $MM_fldUserAuthorization = "";
      $MM_redirectLoginSuccess = "WOTCPg1.php";
      $MM_redirectLoginFailed = "loginerror.php";
      $MM_redirecttoReferrer = false;
      mysql_select_db($database_login, $login);
      $LoginRS__query=sprintf("SELECT UserID, Password FROM authentication WHERE UserID=%s AND Password=%s",
        GetSQLValueString($loginUsername, "text"), GetSQLValueString($password, "text"));
      $LoginRS = mysql_query($LoginRS__query, $login) or die(mysql_error());
      $loginFoundUser = mysql_num_rows($LoginRS);
      if ($loginFoundUser) {
         $loginStrGroup = "";
        //declare two session variables and assign them
        $_SESSION['MM_Username'] = $loginUsername;
        $_SESSION['MM_UserGroup'] = $loginStrGroup;      
        if (isset($_SESSION['PrevUrl']) && false) {
          $MM_redirectLoginSuccess = $_SESSION['PrevUrl'];
        header("Location: " . $MM_redirectLoginSuccess );
      else {
        header("Location: ". $MM_redirectLoginFailed );
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <script type="text/javascript">
    function setFocus()
    document.getElementById("username").focus();
    </script>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Log-in to IOD</title>
    <style type="text/css">
    <!--
    #apDiv3 {
    position:absolute;
    left:5px;
    top:101px;
    width:760px;
    height:612px;
    z-index:2;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14pt;
    font-style: normal;
    line-height: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    color: #009;
    text-align: center;
    background-image: url(images/grid_gray.gif);
    border: medium ridge #009;
    #apDiv1 {
    position:absolute;
    left:94px;
    top:227px;
    width:629px;
    height:282px;
    z-index:3;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14pt;
    font-style: normal;
    line-height: normal;
    font-weight: bold;
    font-variant: normal;
    text-transform: none;
    color: #009;
    text-align: center;
    #apDiv2 {
    position:absolute;
    left:178px;
    top:248px;
    width:564px;
    height:254px;
    z-index:3;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14pt;
    font-style: normal;
    line-height: normal;
    font-weight: bold;
    font-variant: normal;
    text-transform: none;
    color: #009;
    text-align: left;
    border: medium groove #036;
    #apDiv4 {
    position:absolute;
    left:178px;
    top:245px;
    width:566px;
    height:242px;
    z-index:3;
    border: medium groove #009;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14pt;
    font-style: normal;
    line-height: normal;
    font-weight: bold;
    font-variant: normal;
    text-transform: capitalize;
    color: #009;
    .SubmitButton {
    color: #009;
    -->
    </style>
    </head>
    <body onLoad="setFocus()" >
    <span style="position:absolute; left:3px; top:2px; width:758; height:89;"><img src="sitebuilder/preview/sitebuilder/clipart/bars/regular/horizontal/sleekLines_blue.gif" width="760" height="90" alt="" /></span>
    <div id="e2" style="position:absolute; left:13px; top:14px; width:670px; height:32;"><span class="text"><b><span style="font-size: 22px"><font color="#FFFFFF">Sign-in to Information On Demand</font></span><font color="#FFFFFF" size="4"><span style="font-size:22px;line-height:26px;"><br soft="soft" />
    </span></font></b></span></div>
    <div id="apDiv3">
      <p><span style="text-align: center; text-decoration: underline; color: #009; text-transform: capitalize; font-variant: normal; font-weight: bold; line-height: normal; font-style: normal; font-size: 18pt; font-family: Arial, Helvetica, sans-serif;">Customer Sign-In</span><span style="position:absolute; left:12px; top:23px; width:151px; height:65;"><img src="sitebuilder/images/redInfoOnDemandLogo-150x65.jpg" width="149" height="65" alt="" /></span></p>
    </div>
    <div id="apDiv4">
    <form ACTION="<?php echo $loginFormAction; ?>" id="login" name="login" method="POST">
        <p>     </p>
        <p>User Name:<br /><input name="username" type="text" id="username" tabindex="1" size="30" maxlength="30" />
        </p>
        <p>User's Password:<br />
          <input type="password" name="password" id="password" tabindex="2" />
        </p>
        <p>
          <input name="submit" type="submit" class="SubmitButton" id="submit" tabindex="3" style="color:#009; font-weight:bold" value="Sign-in" />
       <input type="reset" name="reset" id="reset" value="Reset" tabindex="4" style="color:#009; font-weight:bold">
        </p>
      </form>
    </div>
    <br />
    </div>
    </body>
    </html>
    Here's the code for the script "included" in the first line of the page:
    <?php
    # FileName="Connection_php_mysql.htm"
    # Type="MYSQL"
    # HTTP="true"
    $hostname_login = "localhost";  // Change to "mysql" when uploaded to Yahoo
    $database_login = "infoondemand";
    $username_login = "root";   // Change to "creacontech" when uploaded to Yahoo
    $password_login = "raisin4312";
    $login = mysql_pconnect($hostname_login, $username_login, $password_login) or trigger_error(mysql_error(),E_USER_ERROR);
    ?>
    Could someone help me with this?  I'd very much appreciate any assistance.

    I should have warned you ealier that I don't know PHP very well, but if I can help nail down the process then hopefully one of the PHP experts can jump in.
    I'm still a little fuzzy on what is going on.  If Susie and Rodunda both have their own UserIDs and Passwords, then they can both be logged in at the same time, insert records til their hearts content and there will be abolutely no confict at all. The only issue here that may present a problem is if one of them attameps to update a record while the other one is looking at it, or getting ready to make their own modifications.
    Also, if Susie and Rodunda have their own user accounts with their own credentials, how is it that one would try to log in using the others' credentials?
    At any rate, and hopefully to get closer to a solutions for you, When a user is successfully authenticated, the session variable MM_Username is created.  So, simpy by checking for the existence of this session variable can tell you if that use is logged in or not.  This check can be placed before any of the login script so that it doesn't interfere with the behavior generated code. And you can choose what to do depending on the condition that exists - such as redirecting immediately to another page, or displaying or hiding a certain region on the page.
    Keep in mind that when the page first loads, thel login code is placed in an IF statement that checks the form action, so at first it's ignored and loads the form.  When the form is submitted, the IF conditino is met and the code executes.  To update the database with a "Logged in or out" value, you first have to place a recordset just after the IF statement that checks the form action, wirte another IF statement to check the value of the field, and then redirect to a logout page or continue with the login.
    If you continue with the login, you'll need an Update statement to change the field in the database just before the successful redirect.  If you've redirected to a log out page, you'll also need s similar update statement there.
    To write the recordset code, you can use DW's wizard and just move the code to where it needs to go. But the DW's update code depend on predeifned recordsets and form actions, so you'll need to find a script or hand code it, I wouldn't recommend trying to use DW's code and then modify it.
    So, what do you think, are we getting closer?

  • How to put pictures inside the table in Pages for IPad?

    How can I put pictures inside the table in Pages for IPad? I can do that in Pages in my macbook, but I can't in IPad.

    It would appear that unless you are working from a document that already had section breaks (or the equivilent) ,you can't. I have some files in pages that began as MS Word documents with multiple sections that allow that by tapping on the footer (or header) and making the change. Files created in Pages (or from other sources but without section beaks) do not.

  • How to put a Flash movie on IWeb pages

    I am trying to find out how I can put flash movies on a website designed in IWeb. The .mov files are large and therefore load very slowly (and are also able to be downloaded by anyone with QT Pro I think).
    Does anyone know how to put flash videos (and what format they are supposed to be in - that SWV or FLV) on IWeb? I think I have to put a flash player on the page (or site, whatever) as well.
    Apple Care can't help me - and when I went for a One-on-One at the Apple Store it was a complete waste of time (I have to drive an hour just to get there).
    I have found a few programs on the internet that I can buy to convert my videos to Flash (without having to spend a fortune on Adobe Flash).
    Any help is GREATLY appreciated!
    Thanks,
    Kim

    I know. Look here:
    http://web.mac.com/wyodor/Embed_Media/Embed.html
    http://web.mac.com/wyodor/iFrame/
    Also search this forum. The question is not unique.

  • How to put a footer text in every page of the application

    How to put footer text in every page of the application without putting it page by page.
    Thanks.
    Jen

    Patick,
    Thanks for your reply.
    I still don't know how to do it.
    1. Have a look at the documentation for Page 0.
    There is no Page 0 in my application
    2. You can add your custom stuff to your page templates.
    Could you give me more detail on this?
    Thanks,
    Jen

  • How to get requested (target) URL from login page jsp.

    Hi,
    How can I get requested (target) URL from within login jsp page where unauthenticated user was redirected.
    IN other words I need to get target URL that user requested before he was redirected to login page.
    In Weblogic there is "j_target_url" session attribute for this purpose.
    Does NetWeaver have analogue?
    Thanks in advance.

    hi Alex,
    NWDS provides Authentication through Pre defined properties,
    We can trap unauthorised user.
    To know more about this,
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/4ecd6eb1-0301-0010-61bd-a3d6bee102c0
    thank you

  • How to insert an username from the login page to the form page

    Hi friends,
    I created one database apex application in which it consist of three pages...
    1)login page----->1
    2)form page along with report page(in same page) i.e. i created a report region within a form region
    3)form page(this page appears when i click the edit option in my previous report page
    (i.e.) my 3rd form page depends upon my 2nd report page, as soon after i click the edit option of each and every row in my report which is in 2nd page it has to go to the corresponding 3rd form page for making an updations in each and every row...
    I have created my above listed applications....
    But the scenario for me is since the login page contains two fields, that is
    user name:
    password:
    so i will be giving my name in the user name and also respective PW for accessing to my 2nd and 3rd page in my application...
    Since my 2nd form page consist of following fields like
    *) user name---------->
    *) assigned to
    *) status
    *) start date
    *) priority
    so my requirement over here is soon after i logging into my application through the user name and PW into second page, while coming to the second form page
    my user name field in my 2nd form page has to get inserted automatically with the user name that i have entered in the login page...
    example: my user_name in login page is :harry
    after going into the second form page with the user name "harry"
    the field of my 2nd form page "username" has to get automatically generated with the name "harry"
    Whether it is possible friends to do this in my application....i doesn't have any idea of it...Kindly help me friends to solve my scenario...please explain each and every steps in detailed manner...
    Since the user_name: harry, is of I got from the admin side as a developer for the workspace......
    Thanks in advance
    Harry....

    Hi Karthik,
    I made the following changes that you said, but there is just a one change in it...
    You told these changes
    Source Used: always, replacing any existing values in session state.
    Source Type: Database column
    Source value or expression: (respective column name)
    and in Default: u need to give-----> &APP_USER.(exactly the same including the full stop)....
    Thanks for your help Patel....I just worked and inserting for me in table of the corresponding user name who login.....

  • How to enable Logon Help link in Login Page?

    Hi,
    I need to implement the logon help like forgot password / password reset...in the portal login page the link is not showing...what to do to enable this Login Help Link in Portal login page? can you please guide me on this...
    Regards,
    Viswes

    Read about "Get support" http://help.sap.com/saphelp_nw70/helpdata/EN/52/4c6c3e58d0d064e10000000a114084/frameset.htm 
    http://help.sap.com/saphelp_nw70/helpdata/EN/45/82278050f3487fe10000000a114a6b/frameset.htm
    ume.logon.logon_help
    Regards.

  • How do I get my PHP based login page to work on my Earthlink site?

    I'm new to using the server-side behavior in Dreamweaver CS4. I built and tested a PHP based login page on my localhost and it works fine, but it does not work on my Earthlink account. Tech support at EL will not help beyond a certain point.
    I loaded my root folder (scc_website) to Earthlink's webdocs folder, but beyond my root folder I'm not sure what else to upload so I uploaded all the folders in htdocs to Earthlinks webdocs:
    _mmServerScripts
    _notes
    _Connections
    contrib
    forbidden
    restricted
    scc_website
    SpryAssets
    xampp
    Can someone please offer some advise?
    Regards,
    Ross H. Capaccio

    By default, php suppresses error messages. If you see a blank page, you've encountered an error. During development, you need to adjust the error reporting level. I don't really do php so I'm not sure if there are other ways, but here's a site with a simple explanation.
    http://www.stanford.edu/dept/its/communications/webservices/wiki/index.php/How_to_perform_ error_handling_in_PHP
    David Powers or one of the other knowledgeable php developers might suggest a different method.

Maybe you are looking for

  • Itunes 7 fails to install - QuickTime problem.

    I successfully used an earlier Itunes with an Ipod 1GB Nano. My new 2GB Nano (courtesy of Netgear promotion!) demanded V7 which I downloaded and tried to install. There were many errors installing Quicktime, but one was "Could not open key HKEYLOCALM

  • Strange e-mail Behavior

    I have been experiencing a strange phenomenon with my Mail account, the nature of which is as follows. Whenever, I send an e-mail via my mail account using my Hotmail account the recipient gets the message, however, it states that the e-mail is comin

  • Debugging WLS remotelly

    I would like to debug WLS (running on Linux) from MS Windows, without changing the code itself. I want to stop the execution (I can stop the whole WLS, also not neccessary to restrict stoping to a certain thread) at certain methode of class xxx. I ha

  • IPhoto is being difficult with exporting and previewing

    I recently bought my Mac Pro off of a friend. He still had it under his name, and I changed it to my name under system preferences. I think it messed up the uploading, exporting, importing, and viewing of my pictures. I can upload them to the compute

  • Please help, 3D animation play button Java Script

    The U3D file embedded into the PDF contains 3 procedure animations I would like to add a play button for each procedure. But I do not see the Animation Objects in the model tree of the pdf and I do not know how to connect to these animations with Jav