New user session from an existing logged in user browser window

Hi,
I have a requirement that says, a new browser window should be popped up with a new user session from the current "logged in user" browser window when he clicks a button event.
What I have with me is the "UserID" of that new user. Is it possible in portal?
Let me know.
Thanks,
Megha.

Megha,
I know that you can manually click CTL-N to open a new browser window and the user is still authenticated. 
So I would think that you could code a similar function into the button event.
Hope it helps.
Regards,
Keith

Similar Messages

  • How to delete last user session from backend SQL query?

    Sometimes user session gets closed between some work by any reason.
    When next time that user logs to P6, he gets some error or particular functionaly dosen't work for that user or system hangs.
    In that case if i decided to clear last session history of that user from database, how to write SQL query?
    I don't want to delete all user sessions from table USESSION and USESSAUD, i simply want to delete last user session of particular user (E.g XYZ).

    I am quoting this from MOS Doc Id "Why would multiple session records be present in the User Sessions screen in P6 Web, and why might some of them have different IP addresses? (Doc ID 1600172.1)"
    Multiple sessions show up for users since different sections of P6 Web have their own sessions associated with them. If a user is authorized to use multiple areas of the software they will have multiple sessions each time they log in. Additionally, if users are closing their browsers before logging out of P6 Web Access you might see some past sessions still appearing in the list. These will eventually be cleared out by background jobs, however you can also reset the sessions in the software by clicking the "Reset User" link (Administer > User Sessions > Manage User Sessions), or by choosing the "Reset All Users" link (Administer > User Sessions > Manage User Sessions) to do this for all past sessions.
    Multiple IP addresses for sessions can happen when a user logs in from different machines. For example, a person may login at their desk, but then go to a colleagues workstation to discuss a project, and log in from there. Doing so will leave them with multiple IP addresses in the session records.
    Hope this helps
    Regards,
    Sachin Gupta

  • Help with creating a new XML file from an existing DOM tree!!

    i want to create a new XML file from an existing DOM tree
    i used this code to create a new document:
    static public Document createDocument(String fileName) throws ParserConfigurationException//,IOException,SAXException
              try {
                   DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
                   factory.setIgnoringComments(true);
                   factory.setIgnoringElementContentWhitespace(true);
                   factory.setValidating(true);
                   DocumentBuilder builder =factory.newDocumentBuilder();
                   return builder.newDocument();
    //          handle exception creating DocumentBuilder
              catch ( ParserConfigurationException parserError ) {
                        throw new ParserConfigurationException();
              }then i used this code to transform the DOM :
    public void exportDocument(Document document) {
              try {
                   Source xmlSource = new DOMSource( document );
                   Result result = new StreamResult( System.out );
                   TransformerFactory transformerFactory =
                        TransformerFactory.newInstance();
                   Transformer transformer =transformerFactory.newTransformer();
                   transformer.setOutputProperty( "indent", "yes" );
                   transformer.transform( xmlSource, result );
           //then catching the exceptions
    But the file was not created and i didn't find where can i specify the DTD that the XML file should use and where can i enter the name of the XML file itself
    Another questoin can i write a DTD file dynamically during the execution of the program??

    Cross-post: http://forum.java.sun.com/thread.jspa?threadID=784467&messageID=4459240#4459240

  • Creating new graphics object from a existing one and sending it for print

    Hello,
    i have a graphics object which is big in size, I am creating a new graphics object from the existing one as given below
    //map is a graphic object
    Graphic g1 = (Graphic)map.create(x,y,width,height);
    Graphic g2 = (Graphic)map.create(x,y,width1,height1);
    Graphic g3 = (Graphic)map.create(x,y,width2,height2);
    arrayList.add(g1);
    arrayList.add(g2);
    arrayList.add(g3);
    Now I want to send the graphic object g1,g2,g3 for print in the method
    public int print (Graphics g, PageFormat pf, int idx) throws PrinterException {
    // Printable's method implementation
    if (curPageFormat != pf) {
    curPageFormat = pf;
    pages = repaginate (pf);
    if (idx >= 3)) {
    return Printable.NO_SUCH_PAGE;
    g = (Graphics) arrayList.get(idx);
    return Printable.PAGE_EXISTS;
    This is not working... what is wrong. can anybody suggest..
    I tried standardprint.java to print a object inside a scrollpane, it is not printing the entire diagram. so I am thinking of something like this.... Please let me know what to do....
    Thanks
    Serj

    The easy way to do this is create a copy using Windows Explorer.
    Open the project and go to File > Rename.
    Then you have your 2013 ready made project.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • HT3406 Can I restore a new Iphone 5 from an existing 4GS backup and then still use the existing backup?

    Can I restore a new iphone 5 from an existing 4GS backup and then still use the 4GS backup for another phone?

    Sorry, a 4G. Its not my phone. its for my employer. He just got a 5 and wants both phones to use the same backup information in itunes.

  • I loaded microsoft office on my mac airbook. I have no problem accessing it from my user. When the other log on user is clicked the software icons are not avauilable. How do I have any user on my airbook have access. i.e. my wife

    I loaded microsoft office on my mac airbook. I have no problem accessing it from my user. When the other log on user is clicked the software icons are not avauilable. How do I have any user on my airbook have access ? . i.e. my wife

    Greetings Niel
    I was able to copy down the Word, Excel and PowerPoint icons and access "however" when I exit out of the guest user it deletes them from the tool tray at the bottom.... I need them to stay there not have to copy them down..
    Can you still assist?

  • Concurrent users sessions from same machine issue

    Hi there
    We have 10.1.2 OIM environment and SSO. We are running reports from Oracle portal.
    The issue is that when I have multiple users sign on on same machnie and running user id specific reports - all users see report from last login users.
    Each user has owne IE or Firefox browser window.
    It looks that cookie that contains SSO authenticated information is shared between multiple browser sessions. How can we control cookie to work only within one browser not for the other web browser sessions.
    The same issue exists even when we go SSO - Portal - Forms - Reports.

    If I open two different browsers (e.g. Firefox and IE) those browsers don't know about each other. No session sharing happens automatically.
    Theoretically you could use the user's IP address for session tracking. But that will fail miserably for users who come from the same IP address, e.g. through a NAT firewall.
    I don't think you can fill that requirementreliably & without breaking something.

  • How a new application derivated from an existing application?

    I have built a application in jdev10g using ADF BC and JSF. It has been tested and deployed for user to use.
    Now, my another subsidiary company wants to use this application too, but the functions requested is just the subset of the application deployed. They may also asked some changes eg. image, logo etc.
    I prepare to derivate a new application from the existing application. of course, these two applications will be deployed on the same application server but with different project name and deploy directory in the application server.
    please guide me on that, Thanks in advance!
    Rgds!

    In 10g you'll basically need to make a copy of your whole application directory and in the project properties set a different context-root for your Java EE application.
    Then you'll be doing the changes you want on the new copy.
    If you were using 11g you could have used MDS to do the customization and then keep a single instance of the application.
    Basic demo:
    http://download.oracle.com/otn_hosted_doc/jdeveloper/111demos/mds/mds.html

  • Problem with transfered user sessions from a 10.4 system

    On my new MacBook pro with ML, I tranfered the user sessions of my previous mac (power book G4 working with OS 10.4).
    With these "old" users accounts,  part of the trackpad features (like scroling up and down with 2 fingers) does not work, whereas it is working with new users.
    Any idea on how to solve this?
    Thanks in advance

    That was a good idea, I tried to delete the com.apple.finder.plist and the com.apple.systempreferences.plist but that did not work.
    Eventually to solve the problem, I transferred all the files I needed to a session created with the new system. I'm waiting a week or two just to see if I have not forgotten something important and then I will delete the "old session".
    Thanks anyway for your help.

  • Best Practice for Creating a New WebHelp Project from an Existing One

    I'm currently working in WebHelp Pro (RH version is 9.0.2.271).
    I have a WebHelp project which currently supports the 2012 version of one of our projects. What I needed to do was to create a separate 2013 project, using the 2012 files as the starting point. I couldn't find a way in RH to create a new project by importing an existing WebHelp project, so I copied the 2012 files to a new directory, opened up the project, and renamed it.
    What prompts this question is that following this exercise, all seemed well, for a time. However, I have recently had to create new topics in the 2012 version. However, when I imported these topics to the 2013 project and compiled, they vanished--although the htm files still appear in the appropriate 2013 file folder (when viewed with Windows Explorer).
    After reading some forum postings, I thought that I might have corrupted my database by improperly creating the new project--but if what I did is the wrong way to go about it, I'm not sure what the correct way is. I will be grateful for any suggestions.

    The easy way to do this is create a copy using Windows Explorer.
    Open the project and go to File > Rename.
    Then you have your 2013 ready made project.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • How to end user session correctly as sys or system user

    Hi,
    Database version Oracle 10.2.0.3
    We have to end user sessions to update database content. We cant stop/shutdown the instance but we have to assure that some users are not logged on.
    So we are looking for a solution to end some arbitrary user sessions as sys or system user without using the KILL USER SESSION option. We want to assure that the user sessions end correctly.
    Is there a possibility or a command in Oracle 10g to end a user session correctly ?
    Thanks for your assistance.

    http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/statements_2013.htm#i2053602
    I think DISCONNECT SESSION Clause is what you are looking for.
    Let us know if this is not the case.

  • How to retrieve the all user name from system domain(including login user)?

    Hi, I am trying to get the system domain all users name. But I unable to get the all user name except domain login user name. I used the below code. What I want to do to get the all user name from system domain. Kindly any one help me.
    Properties envVars = new Properties();
    Runtime r = Runtime.getRuntime();
    String OS = System.getProperty("os.name").toLowerCase();
         if ((OS.indexOf("nt") > -1) || (OS.indexOf("windows 2000") > -1 ) || (OS.indexOf("windows xp") > -1) )
              p = r.exec( "cmd.exe /c set" );
         BufferedReader br = new BufferedReader ( new InputStreamReader( p.getInputStream() ) );
         String line;
         while( (line = br.readLine()) != null )
              int idx = line.indexOf( '=' );
              String key = line.substring( 0, idx );
              String value = line.substring( idx+1 );
              envVars.setProperty( key, value );
         String domainDNSName = envVars.getProperty("USERDNSDOMAIN");
         String userName = envVars.getProperty("USERNAME");
         System.out.println("\n\n\n DOMAIN NAME == "+domainDNSName +" USERNAME == "+userName);
    Thanks & Regards
    Palani

    Thanks kajbj,
    I don't know, How many users in domain. I neet to get all the user names from my domain. User like A, B,C,D, E,F. I need to get this users name.
    public class Env {
         public static void main(String[] args) {
              System.out.println("USERDOMAIN: " + System.getenv("USERDOMAIN"));
              System.out.println("USERNAME: " + System.getenv("USERNAME"));
    Here , I am getting the login user name only. So i needs all user name. How to retrive or get this.
    Regards
    Palani

  • Network printer issue - User can't print once logged back in. Windows 7

    Hello
    I have a bit of a mystery. We have a networked printer which everyone can printer to a part from one user.  When you try printing from any application the "print" gets sent then nothing, not even in the print queue.
    However in the same office everyone else can print.
    I have tried the following.  
    Made sure the printer is set to default.
    Sign in as Admin - I can print
    Other users - Can print
    Removed the device in the users profile re-added the device user can print.
    But when the user logs out and logs back in they can't print.
    Restarted print spooler. - No luck.
    No errors and printer always showing online.
    Any help/suggestion would be appreciated.
    Windows 7 machine 
    Thank you
    Adam

    1. Have you used the printui.exe tool to remove the print drivers? 2. If you sign the user to other machine can he print there? 3. Have you tried to recreate the user profile on that machine?

  • How to Stop one users ipad from backing up to My User iTunes

    I have 3 Users on the mac.
    We each have either an iPhone, iPad or iPad mini.
    They often all stayed plugged in for charging when not in use.
    When I open my user name iTunes, I want to jsut see and backup just my devices.
    is the a way to just select which devices connect to my user iTunes

    Ah, OK, I'll try again.  I went straight to the question, avoiding all the irrelevant distractions associated with so many posts, in order to prevent the thread going off on a tangent.  But I can see that that won't work.
    Getting the irrelevant stuff out the way first:
    MacTower with 6 USB PORTS, 4 on the back, two on the front.  No hubs.  All devices charge just fine.
    3 different Users of the Mac, each with their own loggin Username.  Two of them are computer incompetent, and just can't seem to look at iTunes when there are different iDevices plugged in without choosing or otherwise changing sync settings of devices that are not theirs.... despite the fact they are named with their own names.
    So, back to the question.
    3 different iDevices ( iPod, iPad & iPhone) are all plugged in.
    Each device belongs to different User
    User A comes along and logs in
    Fires up iTunes
    iTunes recognises all three devices and connects to them all
    iTunes  backs  up a each connected device, and shows them all in the sidebar.
    I want to set iTunes up so it only backups Users A's device.
    Better still, not have Users B&C's devices appear when logged in as User A

  • SetCookie Javascript call from applet pops up the launcher browser window

    Hi,
    With Jre 1.5 we started seeing a strange problem.
    From our applet code at the end of loading the applet we call a setcookie on our parent browser window (Browser window used to access our html/applet page).
    Once we make this call the browser window comes on top of our applet window.
    This was working fine earlier, with jre 1.5 we started seeing this issue. Any thoughts?
    A workaround is to call the toFront() function on the applet window's mainframe and set it in the front again. I was wondering if any one have seen similar problem.
    It happens only with IE on windows, no issue on netscape/mozilla.
    Thanks
    RT

    this is now resolved. My call to the transaction was slightly incorrect. This is now the working code:
    CONCATENATE 'http'
    '://' host ':' port
    '/sap/bc/gui/sap/its/webgui/?~transaction=*MIR4 RBKP-BELNR=5105600751' ';DYNP_OKCODE=SHOW'
    into url.

Maybe you are looking for

  • How to use a timer together with an event.

    Dear All, Today I tried all day to accomplish someting with labview, but I didn't succeed. Perhaps you can help me. The problem is as follows.  I have an event structure inside a while loop. The events are all triggered by booleans. Those booleans in

  • SCAC Field Should have Drop Down Values and ASN should have Storage locatio

    Hi , We have a requirement while creating ASN in which we have to add SCAC ID  in the SCAC field ( Carrier)  this SCAC ID comes in Shipping details  - We want to have drop down values in this field and also if we dont enter value in this field An Err

  • File operation process at the background

    Tell me please is background copying in explorere is action by design ? As well as confirmations on delete/remove - they are appearing at the background too. For example i am at some folder, i choose some iso and press ctrl+c, then i press ctrl+v and

  • RMI Class Loader

    Hi, i Have an application which uses RMI and I need to change at runtime the codebase property to point to a local directory which is not on the CLASSPATH environment variable, so the JVM default Class Loader cannot load the classes located at that l

  • Multiple browsers open causes authentication or session problems

    Hi Folks, I have a strange problem. It's strange to me in any case as I'm primarily a back-end guy so I am not an expert on some of the web features of APEX. I have built an application that accesses many remote databases through database links. I op