How pass us session ID user to a custom JSP page

Hello

I developed a custom JSP called from the register function in the menu of a user defined responsibility Oracle applications.
We are unable to transmit the connection user id to the current address at this custom jsp.

How to get the user ID in the JSP costom!

Any help is appreciated.

Thank you
René-coral

Salvation;

Please check below which could be useful for your question:

user logging (EBS)

Re: find users that connect each day to the EBS and find what users are currenty...
Re: existing connection users

Respect of
HELIOS

Tags: Oracle Applications

Similar Questions

  • Dreamweaver connection "How can I get the user name to the other page?

    im a beginner in Dreamweaver CS4 and I'm learning to just watch the tutorial videos...

    I have a big problem...

    ADWCS4 is easy to make a login form...


    for these tutorials I watch I have not meet how to get the user to another page name which connect...

    I'm using PHP

    hope you can answer my question

    http://forums.Adobe.com/thread/417437

  • How to apply correction to button mode remove customized my page in Peoplesoft

    Hi guys,.

    I have effdt and effseq in my app grid. I use the Delete on the grid operation using delete custom through the exec sql instructions.

    I want to make sure that the user must remove this record for correction Mode.how could check the status of the user that it is deleting in the correct story mode.

    Please help me

    Thank you and best regards,

    Ramanantsoa

    Use Mode system variable.

    If Mode = Action_Correction % % then

    / * Remove * /.

    on the other

    / Measures appropriate if not in Correction mode * /.

    end - if;

  • How to view the session of users in active directory remotely...

    Hello...


    I work with the environment of windows server 2008 Active Directory Domain Services (AD DS), Clint computers are joined in the field and having the xp Machines in. Now I want only to see the users session (session) or how to interact with the user desktop when users connected and without disconnect from their session and using the third-party applications. I tried with third party software, but they're expensive.

    Hello

    Your question of Windows is more complex than what is generally answered in the Microsoft Answers forums. It is better suited for the IT Pro TechNet public. Please post your question in the Technet Forum. You can follow the link to your question:
    http://social.technet.Microsoft.com/forums/en/category/WindowsServer/

  • How to create session refnum imaq?

    Hello all,.

    I have an app where I would like to pass a Session IMAQ by refnum Sub several screws, however, I am unable to find all the information on the creation of Session IMAQ refnums. I saw it was in a previous post to an old version of labview, but can't seem to duplicate (the example http://forums.ni.com/t5/Machine-Vision/how-to-pass-IMAQ-session-to-subVI/td-p/2089804 snapvi)

    I use LV2013 and I have the VDM 2013 installed with all options (and be used at other functions imaq, so I don't think its an installation problem)

    I tried looking in the following locations:

    Controls palette (Refnum or under the controls-> range of Vision).

    Rapid decline (the research of refnum imaq or session)

    Assembly of the control and the indicator IMAQ Session (right-click menu)

    Hoping someone could point me in the right direction.

    Thank you

    If you go to any VI IMAQ, who holds the refnum and right-click on the entry of the session, you can select "Create control" and it will create one for you.

  • How-to: set up another user to connect separately

    How to set up another user to open a session on their desktop separately from myself?  Is it not logical to have more than one user name on a PC when there is more than one user?

    How to set up another user to open a session on their desktop separately from myself?  Is it not logical to have more than one user name on a PC when there is more than one user?

    In general, for the purposes of personal confidentiality, each user has access to his user account and so own name username and password which will be known only to this particular user.

    Which means... every user will log on access to his own office with access to its own username and password.

    Based on this principle, Yes, it is quite logical.

    In addition, the general tule of thumb is that, there is an account administrator accessible only to the administrator.
    The rest of the accounts are standard accounts that do not have administrator privileges.
    For preventive measures, it is also wise to have 2 Administrator accounts. One will be a "backup" for an emergency so that if an admin fails to connect, there is another to retreat.

    I guess you don't know how to create user accounts. Yes?
    If not, please after return.

  • Help! How to link to information users at the user page?

    I created the connection index, register, and sign the php pages. MySQL. Now I'm trying to create the user profile page. But I can't link their information to the user page. So, how to link to information users at the user page? @

    maniragav26 wrote:

    I created the connection index, register, and sign the php pages. MySQL. Now I'm trying to create the user profile page. But I can't link their information to the user page. So, how to link to information users at the user page? @

    Can I assume you are using Dreamweaver server behaviors (I guess if you ask this question, it is likely that you would be).

    Go to the mode code in your "login" page Find the section of code that creates the DW:

    $LoginRS__query = sprintf ("SELECT Uname, Pword OF USERS WHERE Uname = %s AND Pword = %s",

    GetSQLValueString ($loginUsername, "text"), GetSQLValueString ($password, "text"));

    $LoginRS = mysql_query ($LoginRS__query, $connUsers) 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;

    INSERT THE CODE in RED below: 'id' is the name of the id column in your database table - if it were 'user_id' that's what you have inserted.

    $LoginRS__query = sprintf ("SELECT users id Pword, Uname, Uname WHERE = %s AND Pword = %s",

    GetSQLValueString ($loginUsername, "text"), GetSQLValueString ($password, "text"));

    $LoginRS = mysql_query ($LoginRS__query, $connUsers) or die (mysql_error ());

    $loginFoundUser = mysql_num_rows ($LoginRS);

    $row_rsUserDetails = mysql_fetch_assoc ($LoginRS);

    If {($loginFoundUser)

    $loginStrGroup = "";

    Declare two session variables and assign them

    $_SESSION ['MM_Username"] = $loginUsername;

    $_SESSION ["MM_UserGroup"] = $loginStrGroup;

    Now to find the under section of code in the 'login' page: (this implies that you have defined a 'success' page to return IF the connection information is correct):

    If (isset($_SESSION['PrevUrl']) & false) {}

    $MM_redirectLoginSuccess = $_SESSION ["PrevUrl"];

    }

    Header ("Location:".) $MM_redirectLoginSuccess);

    }

    else {}

    Header ("Location:".) $MM_redirectLoginFailed);

    }

    INSERT THE CODE in RED below: 'id' in $row_rsUserDetails ['id']; is the name you gave the id column in your database user table, so if it was "user_id" it would read as - $row_rsUserDetails ['user_id'];

    If (isset($_SESSION['PrevUrl']) & false) {}

    $MM_redirectLoginSuccess = $_SESSION ["PrevUrl"];

    }

    $_SESSION ['id'] = $row_rsUserDetails ['id'];

    Header ("Location:".) $MM_redirectLoginSuccess);

    }

    else {}

    Header ("Location:".) $MM_redirectLoginFailed);

    }

    NOW, you create your user details page.

    Create a Recordset, select the table of database you want to gather information about the user. Select the filter to 'none '.

    Go to the view code and at the top of the page, insert:

    <>

    $userId = $_SESSION ['id'];

    ?>

    NEXT FIND THE CODE THAT SELECTS DATA FROM THE DATABASE: (your will be slightly different as you use different details of connection and recordset)

    @mysql_select_db ($database_connUsers, $connUsers);

    $query_rsUserDetails = "SELECT * FROM USERS";

    $rsUserDetails = mysql_query ($query_rsUserDetails, $connUsers) or die (mysql_error ());

    $row_rsUserDetails = mysql_fetch_assoc ($rsUserDetails);

    $totalRows_rsUserDetails = mysql_num_rows ($rsUserDetails);

    Change the second line above to: (add red code below for your SELECT string) (remember WHERE 'id' - 'id' is the name of the column in your database table.)

    $query_rsUserDetails = "SELECT * FROM users WHERE id = '". " $userId. » ' ";

    It's her!

    You can now start "liaison" details on the user Details page.

  • Number of concurrent Sessions per user mismatch with profile settings

    Hello

    Version of DB Oracle Database 11 g Enterprise Edition Release 11.2.0.1.0 - 64 bit Production
    OS RHES 5U2

    I created a profile MYPROFILE and set the value of simultaneous (per user) Sessions on 30. DB has rebounded after the creation of the profile. I made this default profile for a specific user 'MYUSER '. I checked that questioning DBA_USERS (select profile from dba_users where username like "MYUSER") I checked v$ session with this particular user after awhile and noticed that it showed 34 sessions. Certain ASSETS and the INACTIVE.

    My question is, if I set the maximum number of concurrent sessions per user on 30 to myprofile and made it the default for MYUSER profile, so how did I am still able to see more than 34 sessions of myuser regardless of the State? I don't know if it's relevant or not, but the IDLE TIME is set to 15 minutes.

    Thank you for your help

    Published by: user560883 on July 4, 2010 12:45 AM

    user560883 wrote:
    Hello

    Version of DB Oracle Database 11 g Enterprise Edition Release 11.2.0.1.0 - 64 bit Production
    OS RHES 5U2

    I created a profile MYPROFILE and set the value of simultaneous (per user) Sessions on 30. DB has rebounded after the creation of the profile. I made this default profile for a specific user 'MYUSER '. I checked that questioning DBA_USERS (select profile from dba_users where username like "MYUSER" ;)) I checked v$ session with this particular user after awhile and noticed that it showed 34 sessions. Certain ASSETS and the INACTIVE.

    My question is, if I set the maximum number of concurrent sessions per user on 30 to myprofile and made it the default for MYUSER profile, so how did I am still able to see more than 34 sessions of myuser regardless of the State? I don't know if it's relevant or not, but the IDLE TIME is set to 15 minutes.

    Thank you for your help

    You have the parameter resource_limit = true ? You must do so before test sessions_per_user. You can do the following,

    alter system set resource_limit=true;
    

    After that, yet try and post comments.

    HTH
    Aman...

  • How to find sessions to 11i forms

    Hello

    can someone tell me how to find sessions dead forms to 11i of Unix

    Thank you

    Please refer to:

    Note: 457381,1 - troubleshooting tips for spinning/hanging F60WEBMX process
    https://metalink2.Oracle.com/MetaLink/PLSQL/ml2_documents.showDocument?p_database_id=not&P_ID=457381.1

    The note made reference to another note with a script that should be useful in the search for methods of spinning f60webmx and attach it to the users of the application (Note: 185762.1).

    Also refer to Note: 177610,1 - Oracle Forms in Applications FAQ (what is FORMS60_CATCHTERM?)
    https://metalink2.Oracle.com/MetaLink/PLSQL/ml2_documents.showDocument?p_database_id=not&P_ID=177610.1

  • FF22 parameters adjusted to resize the large icons - but the text user interface - (bookmarks, etc.)-is too small to read... How to enlarge text in user interface only?

    I adjusted the FF22 settings to resize the icons large - but the text of the UI - (bookmarks, history, etc.)-is too small to read... How to enlarge text in user interface without enlarging the text of the page Web - or re - expand FF22 icons?

    Have you tried the extension?

  • How can I see the user on a target disk library?

    Migration Manager does not work to move a user to a new iMac. We can slide on the user a little at a time, but how do you make the user visible on the disk library I target disk mode? (The old laptop will start is no longer)

    Open your home folder on this drive, choose go to folder from the Finder menu and provide the library as the path.

    (137598)

  • How to check if a user event is registered before you destroy?

    I have a number of screws running asynchronously each registrant to manage a common user event. During the shutdown, each of these screws is unregistered for this event. Now I want to destroy the event.

    Or reference material on user events recommends I wait that all event handlers are registered before destroying the event, and I would like to do this way, even though the waiting may not be necessary in a situation of judgment (suggested in another thread of discussion).

    So my question is: how to check if a user event is canceled completely before I have destroy it?

    In other words: is there a way to see the event handlers registered how a given user event has? I am currently using this VI (see below) to track the number of registered event handlers:

    (let's call it with + 1 when you register a handler,-1 when the cancellation of registration). However, it feels like a hack, and I wonder if there isn't a more appropriate way to do so. Ideally, a sort of built-in? This looks like something that LabVIEW would need to keep track of...

    Thanks in advance,

    -Kevin

    Kevin,

    I looked through a documentation to verify whether or not a VI as it exists and unforunately library VI does not contain a means for the user to track the number of events. If we had a VI in the library with the functionality you're looking for it would probably work very similar to your under the hood.

    -Nick-

  • How can I remove the user name and the image of Windows XP new Start Menu

    Two questions:

    1. How can I delete the user name and the image of Windows XP new start; and

    2. my computer keeps asking me to press the F1 key to start Windows.  How to skip this part?

    Thank you.

    Hello

    The image of user account can be removed by disabling the Welcome screen. Or, by opting for the classic Windows theme. Follow the method described in this article, if you want to remove the user name and the picture in the Start Menu, without disabling the Welcome screen and Windows XP theme.

    For those who want to delete the user name and the image of user account from the Start Menu, in order to have a blue white Panel at the top, try this:

    Registry warning
    Important: This section, method, or task contains steps that tell you how to modify the registry. However, serious problems can occur if you modify the registry incorrectly. Therefore, make sure that you proceed with caution. For added protection, back up the registry before you edit it. Then you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, click on the number below to view the article in the Microsoft Knowledge Base:

    How to back up and restore the registry in Windows
    http://support.Microsoft.com/kb/322756/

    Step 1:

    a. start Windows Explorer and go to this folder:
     
    C:\Documents and Settings\All Users\Application Data\Microsoft account images

    b. in this folder, rename the BMP file that corresponds to your user account.
     
    (For example, if your user name is Robert, rename Robert.bmp to old_Robert.bmp)

    c. then rename the following folder:

    C:\Documents and Settings\All Users\Application Data\Microsoft account Pictures\Default pictures
     
    to something else, for example,.
     
    C:\Documents and Settings\All Users\Application Data\Microsoft account Pictures\No_Default images.

    Step 2:
     
    To remove the user name, follow these steps

    a. Click Start, click "RUN" and type "regedit.exe" and navigate to this key:
     
    HKEY_CURRENT_USER-Software-Windows Microsoft\------CurrentVersion-policies-Explorer

    b. in the right pane, the value NoUserNameInStartMenu-value data 1.

    c. close Regedit.exe and restart Windows.

    You'll find yourself with a blue area at the top of the Start Menu.

    Regarding the pressing 'F1' to start Windows, you have made no changes or was there a system crash after which the problem started?

    You may need to change the boot sequence in the BIOS to the default settings. I recommend you contact your PC vendor for this.

    Warning of the BIOS:
    BIOS change / semiconductor (CMOS) to complementary metal oxide settings can cause serious problems that may prevent your computer from starting properly. Microsoft cannot guarantee that problems resulting from the configuration of the BIOS/CMOS settings can be solved. Changes to settings are at your own risk.

  • How can I block the users access to microsoft office?

    How can I block the users access to microsoft office?

    You must set "" permission to run on each of the Microsoft Office programs (word.exe, excel.exe, powerpnt.exe, etc.) such that the group 'Administrators' and the SYSTEM is allowed to run.  To do this, you do a right click on the .exe file, select 'Properties', then click on the 'Security' tab and change security as you wish.

    If you do not have a 'Security' tab, then it is because you have XP Home Edition, or if you have XP Pro with active Simple file sharing.  For XP Home, you must boot mode safe (repeatedly tap F8 at startup key) and login as an administrator to access this tab.  For XP Pro, follow the instructions in the following article:

    "How to disable the file sharing simple and how to set permissions on a shared folder in Windows XP"
      <>http://support.Microsoft.com/kb/307874 >

    HTH,
    JW

  • How can I prevent standard users access records personnel administrator for example. photos and documents

    How can I prevent standard users access records personnel administrator for example. photos and documents

    Hello bh51,

    Did you run your antivirus as well as any spyware removal?  As davidhk requested, then you are able to turn sharing off the coast, but it just doesn't work?   I suggest creating a new folder and move the data, and then see if other users are still able to view these.

    Please let us know status.

Maybe you are looking for