New session opening

Hi friends
I am in the Benifits and Payments tab and clicked on Leave enchasment request and it opened a page Now i clicked on other tab say Eg., Content administration tab then this is opened in another session like it is opened with the same user in another new session .This is not only happening with this tab but also if i click on leave request and click on Cancle button instead of navigating to the other page it is opening in another session .Could anybody please tell me what is the reaason for it and how can i stop it opening a new session.
Thanks in advance

This could be happening because of the Work protect mode setting on your portal.
You can configure work protect mode according to your needs.
http://help.sap.com/saphelp_nw04/helpdata/en/37/50fb5066f9db43b3b5d5fc8de0c051/content.htm
Also look at the following thread:
/thread/1041476 [original link is broken]
Thanks,
Shanti

Similar Messages

  • When i close window with multiple tabs angd start new session (open new window) old tabs open again, how can i stop it?

    when i close window with multiple tabs and start new session (open new window) old tabs open again, how can i stop it?

    It is possible that there is a problem with the files [http://kb.mozillazine.org/sessionstore.js sessionstore.js] and sessionstore.bak in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder]
    Delete [http://kb.mozillazine.org/sessionstore.js sessionstore.js] and sessionstore.bak in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder]
    * Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    If you see files sessionstore-##.js with a number in the left part of the name like sessionstore-1.js then delete those as well.
    Deleting sessionstore.js will cause App Tabs and Tab Groups to get lost, so you will have to create them again (make a note).
    See:
    * http://kb.mozillazine.org/Session_Restore

  • New Session opens automatically while executing the transactions

    When ever we run a new transaction after logging in a
    new session opens  automatically.
    We dont give any " /o" before the transaction yet ths happens........
    can any one get the reason for this????????

    hi,
    In the initial screen of the transaction check
    the start transaction,if the settings for it may be given as /o.just right
    click and see in it.
    if it is fine there then try to find out in debbuging,
    in initial screen give  /h and enter soe tcode.it will give u the reason y it is getting new session trigeered.may be if any exit.. or something is there.
    hope this helps.

  • I like to keep 2 sessions open, but today a new session opens with blank page and no bookmarks - why?

    I keep a session open pretty much all day but minimize it when I leave so someone else can use a session for whatever they want. Today when I open a new session (while mine is minimized) the page is blank and there are no bookmarks. I can hit the home icon and go to view and see my bookmarks but this is a pain

    Hey mate,
    I was having the same problem. If you upgraded to Lion - apparently there is a 'general tab' in the system preferences that has a box that you need to un check. (The box says something about restoring all last windows from last session)
    If you updated Safari but are not using Lion, here is how to fix it. Simply delete this item fromyour Mac HD and restart Safari.
    [USERHOME]/library/preferences/com.apple.safari.plist
    Hope this helps... It worked for me!

  • Open new session on submitting a program thru FM call

    Hi expertz...need your help up here.
    Have a situation where we need to trigger another program(say zabc : PO History) when the user selects a line in the ALV list and then clicks a button (to call zabc), the new program should run in the background and open up or display the results in a New Session.
    Have tried to use FM 'SUBMIT_REPORT' with STARTING NEW TASK but it dosnt work.  Please see the call below.
    CALL FUNCTION 'SUBMIT_REPORT' "STARTING NEW TASK 'TEST1'
      EXPORTING
      RDIR                   = TRDIR
        report                 = 'ZPRPP_WORKORDERPURCHASING'
       RET_VIA_LEAVE          = ' '
      VARIANT                = ' '
       VARIPROG               = 'ZPRPP_WORKORDERPURCHASING'
       SKIP_SELSCREEN         = 'X'
      EXPRESSIONS            =
    IMPORTING
      VARIANT                =
    TABLES
       SELECTION_TABLE        = i_rspar
    EXCEPTIONS
       JUST_VIA_VARIANT       = 1
       NO_SUBMIT_AUTH         = 2
       OTHERS                 = 3
    Any Idea!.
    Thanks
      Jaif

    Hi,
    copy your function module SUBMIT_REPORT to ZSUBMIT_REPORT and make it remote enabled.
    Now, where ever you want to call this FM, call as below,
    CALL FUNCTION 'ZSUBMIT_REPORT' STARTING NEW TASK 'T'
    EXPORTING
    * RDIR = TRDIR
    report = 'ZPRPP_WORKORDERPURCHASING'
    RET_VIA_LEAVE = ' '
    * VARIANT = ' '
    VARIPROG = 'ZPRPP_WORKORDERPURCHASING'
    SKIP_SELSCREEN = 'X'
    * EXPRESSIONS =
    * IMPORTING
    * VARIANT =
    TABLES
    SELECTION_TABLE = i_rspar
    EXCEPTIONS
    JUST_VIA_VARIANT = 1
    NO_SUBMIT_AUTH = 2
    OTHERS = 3.
    Check it out, it works for me.

  • Create new session for each window opening

    From a jsp page i open a page called student.jsp by clicking on students admision no.Therefore lots of pages can be opend in new windows with relevent student details.
    but when i click on the link i called a servlet, get relevent details and redirect to student.jsp. The problem is ,all opened windows have same session id and there are session conflicts.
    How can i create new sessions for each page thru the servlet or is there any other alternatives

    I actually was working on a problem that was similar to this, and the problem is with how each web-browser works with sessions...
    Each browser window (Except in one case with IE) will use the same session in each window.
    However, you might be able to use URL-Rewritting to manage your sessions and get around using cookies for for session tracking. I personally haven't tried this, but I'm betting that it will work.
    Best of Luck,
    Nate

  • Function Module to open a new session displaying a method of a class

    Hello All,
    I have a method A of class B.
    Now, in my current session, I have a button. When the user clicks on this button, what I expect is that a new session be opened and in the new session method A of class B be displayed.
    This is similar to the debugger, wherein, in the debugging mode, we can bring up the context menu in the Source Code (Edit Control) tool, and then select "Go To Source Code".
    So basically, I am looking for a Function Module which does the same.
    I came across Function Module CC_CALL_TRANSACTION_NEW_TASK, however, this will only create a new session.
    I could specify the transaction as SE24, but it then opens a new session with this transaction. That is it.
    My objective is to display the method of a class in a new session.
    Is there any Function Module in this case?
    Regards,
    Mithun
    Edited by: Mithun Kamath on Aug 9, 2011 5:35 PM

    Hello Sandra,
    Thank you very much. That was exactly what I was looking for.
    However, instead of calling EDITOR_PROGRAM directly, what I instea did was the following:
    1) Created a RFC enabled Function module.
    2) Inside this function module, I wrote the following code:
      SUBMIT tpda_editor_start AND RETURN
       WITH prgm  = is_alert_det-program_name
       WITH incl = is_alert_det-include_name
       WITH dynp = space
       WITH line = is_alert_det-line_no.
    The parameters above were similar to the one proposed by you.
    Borrowed the above from the class CL_TPDA_SERVICES_TOOLS, method NAVIGATE_TO_SOURCE.
    The above is basically called in the debugger, when we use the context menu in the editor tool and invoke the "Goto Source Code" functionality. This eventually calls the EDITOR_PROGRAM FM.
    The reason why I did this is because when I was testing the FM, it did not allow me to specify the include as CL_TEST=====CM01. I do not know why, probably I was doing it wrong. But it gave me a message saying that the object does not exist in table TADIR.
    Anyway, I did the above steps and it worked exactly as I wanted it to.
    I would like to thank you again.
    Best Regards,
    Mithun
    P.S. Forgot to add, I called the above RFC enabled FM as a new task.
    Edited by: Mithun Kamath on Aug 10, 2011 4:19 PM

  • When I open up my hotmail, it opens a new session and not a new tab. Why?

    After I launch your program with MSN as my home page, I then click on hotmail to open up my emails. When I complete the log-in, a new Firefox session opens for my emails and not a new tab like it has done in the past. This has been happening for the past two to three months. What caused this change?

    Check the [[Options window - Tabs panel]] and make sure the setting "Open new windows in a new tab instead" has been selected.
    There are also quite a few tabbed browsing add-ons that give you greater control over tabbed browsing, and can force all new windows to open in a tab. Some examples are:
    * [https://addons.mozilla.org/en-US/firefox/addon/1122/ Tab Mix Plu]
    * [https://addons.mozilla.org/en-US/firefox/addon/14439/ Tabberwocky]
    * [https://addons.mozilla.org/en-US/firefox/addon/59961/ Tab Utilities]
    * [https://addons.mozilla.org/en-US/firefox/addon/13288/ Super Tab Mode]

  • Open new session in another language - Helpdesk tool!

    Hi,
    We have a lot of Chinese and Indian colleagues who ring up our German hotline with SAP problems. Normally we are signed on in German (which we understand!) but we would like to open a new session in English, without having to sign on again, so we can call transactions in English and explain what is going on to our friends abroad.
    I understand from a colleague that this is possible....unfortunately I don't know how to do it!
    Any ideas?
    Best regards and a nice weekend.
    Mike
    P.S. I can create a new session like this:
      CALL FUNCTION 'ABAP4_CALL_TRANSACTION' STARTING NEW TASK 'TEST'
        DESTINATION 'NONE'
        EXPORTING
          tcode                 = 'SESSION_MANAGER'
        EXCEPTIONS
          communication_failure = 1
          system_failure        = 2.
    But even when I change my language (SY-LANGU/Language in SU01 etc.) my new session is in the "original" language.

    I am not sure whether its a feasible option for you or not as you have to create an RFC destination for English Login.
    You can create an RFC destination with your Login details and language as EN
    Then you can run the FM - 'ABAP4_CALL_TRANSACTION'  with destination as the One Created Above and Tcode as SESSION_MANAGER
    This will open a new login with EN language.
    You can also create RFC destination and just Click "Remote Logon" to open EN login session
    Regards,
    Aj
    Edited by: Abhishek Jolly on Aug 28, 2009 6:44 PM

  • How to open a new SESSION in another SESSION

    Hi!
    I would like to start a transaction in the current session (session 1); I want to open a new session (session 2), execute some updates, do the COMMIT (without commiting the data of the session 1) and close the session 2.
    I'm using JSPs and Data Web Beans.
    How can I open and close a new session?
    I would appreciate an answer?
    Thank you.

    hi,
    You can try to create another properties file only for that session. Then you instantiate the bean, that you want to create the new session, with that new properties file and i think a new session will be created. But im not sure .....
    Bye,
    RB
    P.S.: by the way, what does APAF stands for???
    null

  • Found 0 results for When I open Firefox I get a "Well this is embarrassing" message. Makes no difference if I click on "Start a new session" or "Restore", it crashes. Then I get a "crash report" which apparently goes nowhere. I have uninstalled and reinst

    Found 0 results for When I open Firefox I get a "Well this is embarrassing" message. Makes no difference if I click on "Start a new session" or "Restore", it crashes. Then I get a "crash report" which apparently goes nowhere. I have uninstalled and reinstalled twice with the same result, what do I do to restore Firefox?
    == This happened ==
    Every time Firefox opened
    == Last week when I opened Firefox.

    The crash reporter doesn't appear to be working...Here are the details that were contained in the report:
    Add-ons: {0538E3E3-7E9B-4d49-8831-A227C80A7AD3}:0.9.10.2, :3.63,{972ce4c6-7e08-4474-a285-3208198ce6fd}:3.6.3
    BuildID: 20100401064631
    Comments: I get an error message, " well, this is embarrassing"..and Firefox crashes
    CrashTime: 1274739017
    EMCheckCompatibility: true
    Email: [email protected]
    FramePoisonBase: 00000000f0dea000
    FramePoisonSize: 4096
    InstallTime: 1270304892
    ProductName: Firefox
    ReleaseChannel: release
    SecondsSinceLastCrash: 2699
    StartupTime: 1274738966
    Theme: classic/1.0
    Throttleable: 1
    Vendor: Mozilla
    Version: 3.6.3
    This report also contains technical information about the state of the application when it crashed.

  • I cant open it it because of a old or new session notice that fails to launch

    I've been running the Firefox 3.0.13 because later versions of firefox are not supported on my PowerPC mac running tiger 10.4
    It has been running great for a long time (since this version was made available without the required upgrade)
    It has been showing an urgent message about this version having possible security compromises but I have read in a forum a while ago to ignore this if I want to keep running it.
    When trying to launch it lately I have been getting the familiar notice that my session was closed unexpectedly with a choice of reopening last session or opening new one. This is a message and choice I've had before and has always worked to put me on the session of my choice.
    But now, no matter which choice I make, I get the tiny black spinning symbol (not the rainbow one) just below the cursor and after a couple seconds it goes away leaving just the normal cursor but I get no session page. As if the Firefox didn't launch.
    But if I go to "force-quit" from the apple menu it shows that Firefox is indeed running. So I force-quit and re-try to launch from either the alias or the application icon and the little notice asking about old or new session comes up again.. I'm in a dead end loop on this.
    I have loaded a fresh copy of the Firefox 3.00.13 which does the same thing. I'm currently limping on Safari for internet access but I need the Firefox for several things I'm doing online.
    This is a duplicate question because I made mistake on my registration email.
    Help please?

    Disable Javascript for those webpages.  Note, your Javascript is probably antiquated by now.  Try a different web browser, or contact the website and let them know they aren't as accessible as they could be*:
    http://www.macmaps.com/browser.html

  • Whilst using FF20.0.1 and now with FF21 the new tab thumbnails fail to open for each new session. Why?

    For a long time my chosen websites appeared as thumbnail images on the new tab page when I began a new session, maybe since about FF15, I don't recall for sure. Recently, however, whilst using FF20.0.1 this behaviour stopped and none of the thumbnail images for my selected websites opened up, although the links to them remained and this behaviour has continued to FF21, which I have been using since yesterday (19th May). This is not a serious issue, but I do like things to work properly and to understand why they don't. I don't know why there should be a relationship between the two events, but the problem began after having opened the new tab page and before the images opened up I clicked on one of the links - where the thumbnail image would normally be - to go to the website; thereafter FF failed to retain a memory of the thumbnail images from one session to the next. By the way, I never empty my history cache only my main web cache that has previously had no effect on my new tab thumbnails, not since about FF15 or so anyway.

    Cor-el, hi.
    When I opened FF about ten minutes ago I noticed that the new tab thumbnail image I had brought up from my previous session had been remembered, so I opened some of the other websites listed to bring back their images too; I then shut FF down, re-opened it and the new tab page to find all the images had been recalled. Next, I shut down the computer to determine whether or not the images were getting lost that way; on rebooting the computer and launching FF I again found the images were still there. Now I closed the new tab and emptied the main cache (43 MB); on opening the new tab the images were still opening (you will recall that when the new tab thumbnails first came out they disappeared on emptying the main cache). Bearing all this in mind I have not yet tried your suggestion of temporarily disabling the add-ons in safe mode because if the thumbnail images came up that would not currently tell me anything. Also, the problem I described in my first post does not remotely coincide with the installation of any add-ons, which have not been recent. Given then that my thumbnails are appearing after the cache has been cleared where does FF get them from now? I still don't understand this recent behaviour and why for the moment the problem is not occurring. Thanks again.

  • When I right-click a link to open in another tab, the new tab opens not in the original window but in the first firefox window of the session

    when I right-click a link to open in another tab, the new tab opens not in the original window but in the first Firefox window of the session.
    I deleted sessionstore.js from the profile and restarted Firefox but that did not help

    Sounds like this bug:
    * [https://bugzilla.mozilla.org/show_bug.cgi?id=644729 bug 644729] - Popup window with all toolbars visible causes new tabs to open in another browser window
    ''(please do not comment in bug reports; you can vote instead)''

  • How not to get back on the page i just closed when opening a new session

    How not to get back on the page i just closed
    when opening a new session?
    I do have a live stream radio on now...
    Therefor new session might not be the complete truth.
    Gerard

    A new tab opens by default as a blank tab (about:blank).
    If that isn't the case then an extension has changed that behavior.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode

Maybe you are looking for