How to get information from forms osuser

Hello
We use Forms 10 of IAS 10.1.2 (with plugin Sun Java) with old fashioned defined database users (IE select user of double shows the database user connected to the application Forms).

Now, I want to get my hands on the user name of the operating system (in this case, the lan account) to the user from a form.

If I try SYS_CONTEXT ('USERENV', 'OS_USER') I'll of course only 'oracle' since it's oracle who runs the container or the applet or whatever on the application server.

When I look in the "User Sessions" tab in the Application server control I can see the database user and an IP address, but no osuser it no more.

Is it not possible to do? I googled my fingers off...

We have logging the osuser which goes back into the client-server version but now it shows just oracle for all users which is quite unnecessary to open a session.

Someone has an idea?

Thank you
Josefine

Try webutil_clientinfo.get_user_name

Tags: Oracle Development

Similar Questions

  • How to get information from web interface tables

    Hello

    How to get information from web interface tables

    as in the forms... Go to help-> Diagnostics-> review
    Block = SYSTEM field is LAST_QUERY.

    Kind regards.

    Salvation;

    Please see the paragraphs below:

    How to determine the Table and the name of the column to a field in a form in 11i [ID 259722.1]
    How to find the query that succeeded recently? [241628.1 ID]

    Respect of
    HELIOS

  • How to get information from my old iPod to my mac

    I have an old iPod touch without the camera. It was on the manual settings and now I can't get my laptop to synchronize with it. I get this message "iTunes could not connect to the iPod"xxx"because an invalid response was received from the device." I tried to access from devices, but it just does not recognize. Anyone know how I can get it working with my laptop. Its fully functioning, play music and charge, but I cannot sync.

    Help, please. Thank you

    try to reset the unit.

    Learn how to reset your iPod - Apple Support

  • How to get information from a user on another account user account?

    We have two user accounts on our computer (which is a shared computer). One, I'm going to call the 'A' and the second 'b '. I can't get on the account 'A' because it has got a virus or something, and we cannot log on to this one. But that account is the principal that we all use, we have our photos, music, documents, videos, EVERYTHING. And since it does not work, must use 'B', which is basically like a guest account. It has absolutely nothing about it. We cannot synchronize our iPods, otherwise it will just wipe and replace stuff on it with, well, nothing.

    My question is, what can I (if so, how) to download our music, photos, etc., etc., on our account "B"?

    Thank you for your help, but I got the stuff I needed. :) I just went to computer, local disk (c :)), users, then my account was, and he had all the photos, music, downloads and all the records!  :)

  • How to get information from the owners of devices (NMP and Powerpath) using the VI SDK

    Hello

    I just started to work with VI SDK in C++ using gsoap. I am

    facing a problem. Using VI SDK, where can I get more information

    regarding who manages the paths. Inside of the VI GUI client we can

    see that in the owner field. The GUI shows if the owner is NMP

    or powerpath. Can I get the same information by using VI SDK API? I'm not

    able to conclude within ScsiLun HostMultipathInfoLogicalUnit or

    HostMultipathInfoPath Dataobjects.

    Kindly help me.

    Thank you

    Gesner

    Ah good to know it is where it is located.

    national immunization days , you can find more info here: http://www.vmware.com/support/developer/vc-sdk/visdk400pubs/ReferenceGuide/vim.host.PlugStoreTopology.html#path

    =========================================================================

    William Lam

    VMware vExpert 2009

    Scripts for VMware ESX/ESXi and resources at: http://engineering.ucsb.edu/~duonglt/vmware/

    repository scripts vGhetto

    VMware Code Central - Scripts/code samples for developers and administrators

    http://Twitter.com/lamw

    If you find this information useful, please give points to "correct" or "useful".

  • How to get information from the view on the columns referenced in the tables

    Hi all

    I was looking for view DBA Oracle DB that displays information on the notice. In particular, I want to find information for each column in a view - of which table is this column and what his original name of the column. Is this possible at all?

    Thanks in advance!

    If you are looking for a view dictionary

    question

    Select *.
    dict
    where table_name like '%%'
    ;

    or consult the Oracle reference manual for your unknown version of Oracle.
    The answer is so obvious...

    -----------
    Sybrand Bakker
    Senior Oracle DBA

  • How to get information from the database server log?

    Oracle 9.2 UNIX
    We got an error block in the database of production last midnight for 40 minutes and nothing has been treated during this time which delayed our process by lots of night production. Then he disappeared after 40 min. I would like to know what was going on during this time in the database. My question is where can I find an error in the database server? In bdump? Appreciate any ideas.

    Thank you
    S.

    If you have jobs regularly collect statspack report, then it will be easier to troubleshoot. You can just pull the report of the time period.

    A couple of things you can check if there is a problem of storage during the time, as a backup or other work running took all storage OS, so Oracle hung because no space for archiving of newspapers. Usually it will record errors in the alert.log, but if bdump as complete destination, the error will not be recorded.
    Check the activity of the BONE during the time, which is CPU and IO activity. See if you have installed and configured sar
    Check the message of OS file.

  • How to transfer information from my laptop to my data traveller or flash drive?

    Original title: IM having a blond momet LOL

    How to get information from my laptop to my data traveller or flash drive not sure leave which is the correct name

    Hi DeborahCoffin,

    You can try dragging them on, or you can insert the USB key, right click on the file/folder you want to copy, then select COPY. Then find your USB drive icon, then right-click again and select PASTE.

    See also:

    http://Windows.Microsoft.com/en-us/Windows7/transferring-files-and-settings-frequently-asked-questions

  • get information from the sms message

    How to get information from sms

    ex: 1. the sender's phone number

    2. sms text

    Check the interface messages and methods like getAddress(), text, getPayLoadText.

  • How to get information of parameters of a procedure in my schema?

    Mr President.

    My oracle database is ee 11g.

    My schema name is ash.

    I have a procedure in it. How to get its parameter information.

    the code of procedure is

    create or replace PROCEDURE "EXPORT_DB_PROC" AS    
       h1   NUMBER;    
       dt   VARCHAR2 (20);    
       myschema VARCHAR2(32):='ash';    
    BEGIN    
       SELECT TO_CHAR (SYSDATE, 'YYYYMMDD')    
         INTO dt    
         FROM DUAL;    
        
        
       h1 :=    
          DBMS_DATAPUMP.OPEN (operation      => 'EXPORT',    
                              job_mode       => 'SCHEMA',    
                              job_name       => myschema||'_EXP_' || dt,    
                              VERSION        => 'COMPATIBLE'    
                             );    
       DBMS_DATAPUMP.set_parallel (handle => h1, DEGREE => 1);    
       DBMS_DATAPUMP.add_file (handle         => h1,    
                               filename       => myschema||'_EXP.LOG',    
                               DIRECTORY      => 'ADMIN_DIR',    
                               filetype       => 3    
                              );    
       DBMS_DATAPUMP.set_parameter (handle      => h1,    
                                    NAME        => 'KEEP_MASTER',    
                                    VALUE       => 0    
                                   );    
       DBMS_DATAPUMP.metadata_filter (handle      => h1,    
                                      NAME        => myschema||'_EXPR',    
                                      VALUE       => 'IN('''||myschema||''')'    
                                     );    
       DBMS_DATAPUMP.add_file (handle         => h1,    
                               filename       => myschema||'_EXP_' || dt || '.DMP',    
                               DIRECTORY      => 'DATA_PUMP_DIR',    
                               filetype       => 1    
                              );    
       DBMS_DATAPUMP.set_parameter (handle      => h1,    
                                    NAME        => 'INCLUDE_METADATA',    
                                    VALUE       => 1    
                                   );    
       DBMS_DATAPUMP.set_parameter (handle      => h1,    
                                    NAME        => 'DATA_ACCESS_METHOD',    
                                    VALUE       => 'AUTOMATIC'    
                                   );    
       DBMS_DATAPUMP.set_parameter (handle      => h1,    
                                    NAME        => 'ESTIMATE',    
                                    VALUE       => 'BLOCKS'    
                                   );    
       DBMS_DATAPUMP.start_job (handle => h1, skip_current => 0, abort_step => 0);    
       DBMS_DATAPUMP.detach (handle => h1);    
    END;    
    /
    
    

    How to get information on the parameters (names and types etc.)

    Concerning

    Hello

    SQL > create or replace procedure proc (tes1 number) start the null; end;
    2.

    Created procedure.

    SQL > desc proc
    Proc PROCEDURE
    Name of default input/output argument type?
    ------------------------------ ----------------------- ------ --------
    TES1 NUMBER IN

    Are you referring to the right parameters of proc right?

    Think simple

    -Thank you

    Pavan Kumar N

  • How to get assistance from mozilla to answer questions for windows when I use a macintosh computer

    How to get assistance from mozilla to answer questions for windows when I use a macintosh computer?

    Look on the right side of the knowlegde base articles, where it is said ' help to ". Here, you can change the operating system and the version of firefox. The content of the article will adjust.

    If you ask a question on the help forum, you can simply say this in your question.

  • Why can't get information from frequency of NI USB-5132

    Hello

    I use NI USB-5132 and try OR Scope example measure a library.

    I wonder why I can't get information from the input signal frequency.

    Thank you

    In the flexible Panel, you need to adjust the time/Div and, possibly, the Volts/Div to get a consistent result. Make a note of the settings.

    Based on what you used in the soft cover, you must change the parameters of the VI until you see a signal. If you don't see something here, then obviously you can not perform a measurement. Try other examples to see if you can capture at least the waveform.

  • How people get viruses from Facebook and how to avoid it?

    I wondered how people get virus from Facebook, what are the best way to avoid these, and what are the symptoms of these?

    Thanks in advance.

    Welcome to the Microsoft Answers Ted site.

    The only way you can get a virus from Facebook is by clicking on a bad link. Be always careful with links on which you click, especially of foreigners who are not your friend on Facebook. If you find a link TinyURL (not a bit.ly link), copy (click the link, press Ctrl + C) then paste (click on the address bar, then press Ctrl + V), but add "Preview". (without the quotes, including the period) before the rest of the link. Then, you can see a preview of where you're going. After that, you can continue or go back.

  • currently still have PP CS5.5 & want to install on another office, understand that I can only use one at a time. don't have a CD, can I get information from the current installation and a link to download PP CS5.5?

    currently still have PP CS5.5 & want to install on another office, understand that I can only use one at a time. don't have a CD, can I get information from the current installation and a link to download PP CS5.5?

    Download & install instructions https://forums.adobe.com/thread/2003339 can help

    -includes a link to access a page to download the Adobe programs if you do not have a disk or drive

    Find your http://helpx.adobe.com/x-productkb/global/find-serial-number.html serial No.

  • How to extract information from the ovf file from a file of eggs by programming?

    How to extract information from the ovf file from a file of eggs by programming?

    Hello

    Please provide details:

    -On what OS you are programming (Linux, Windows,...)?

    -What programming or scripting language do you use?

    An EGG file is just a tarball of hard, .ovf and .mf files. The .ovf file is always the first. For example, on a Unix like operating system, this should be easy.

    For Windows, there are several options available to manage programmatically the tarballs. See for example http://www.codeproject.com/Articles/470999/tarlib-Windows-TAR-Library.

    And the ovf itself file is in XML format. For handling XML files are libraries available for literally every OS and programming language.

    Google is your friend.

    Andreas

Maybe you are looking for

  • New iTunes 12.4.3.1 update has Me Confused

    About the 12.4.3.1 new iTunes update, how can I do my playlists display in list view? I used to be able to in all previous versions.  I looked in the menu bar, and this option presents itself.  I use these list views for my radio show and need to loc

  • Is there a way to insert a registered trademark (r) or other special characters in the text of the e-mail?

    I can't be able to find this in Thunderbird and can cut and paste from other applications in here, but that's getting old. Please advise on how to do this please. Thank you!

  • Is there a default value for NC_ATTRIB_BKD_PERIOD

    I got a project and the value of NC_ATTRIB_BKD_PERIOD has been set to 10. I changed this value to 1 (I guess that's milliseconds) and the software runs much faster save about 20 seconds on a second test period formerly 60. I have used NEITHER CAN bef

  • HP pavilion 500-274 a: question

    Hi my problem is that whenever windows wants to update a student its ugly head flaw which happens is that updates will be download then install them but when it comes to cofiguring updates, it gets as much as 99 percent completed, it says failed canc

  • Logitech headset plugged in, but does not work.

    I have a logitech USB headset H540.  When I plug it into my pc I hear no sound either, I tried to reinstall each sound driver, but it does not always work.  When I go to properties or to solve problems, it keeps saying my devices are turned off, but