How to find forms dead sessions in 11i

Hi,
can any one tell me how to find forms dead sessions in 11i from Unix
Thanks

Please refer to:
Note: 457381.1 - Troubleshooting Tips For Spinning/Hanging F60WEBMX Processes
https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=457381.1
The note refers to another note with a script which should be helpful in finding spinning f60webmx processes and tie it back to the application users (Note: 185762.1).
In addition 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

Similar Messages

  • How to find form descriptor, that attribute is a collection

    Hi, simple question. How to find form descriptor, that attribute is a collection?
    I got a class name and attribute name (java attribute name not the name of a column in db). I need to decide if attribute is a collection = many_to_many/one_to_many mapping. I can use a reflection but I find using Toplink metadata better, because I need this information for qenerating Toplink query.
    This is how I can get mapping for attribute. How to continue? Is it a flag or what?
    Descriptor d = serverSession.getDescriptor(MyClazz.class);
    DatabaseMapping m = d.getMappingForAttributeName("attributeName");
    Thanks
    Fero

    I found this solution:
    Descriptor d = serverSession.getDescriptor(MyClazz.class);
    DatabaseMapping m = d.getMappingForAttributeName("attributeName");
    boolean isCollection = m instanceof OneToManyMapping || m instanceof ManyToManyMapping;
    Is it OK? Or is there something better?

  • How to find the max session count and process count for a database

    Hi All,
    How to find the maximum session count and process count reached for a database over a period of 15 days?
    DB version:11.2.0.2
    OS:AIX

    Thanks for the link.
    The output of the below query that is given in the link shows the results for the last 10 or 12 days.. Is there a query which gives a result for the last 30 days?
    col metric_unit for a30
    set pagesize 100
    Select trunc(end_time),max(maxval) as Maximum_Value,metric_unit
    from dba_hist_sysmetric_summary
    where metric_id in ( 2118,2119) group by trunc(end_time),metric_unit order by 1;

  • How to find and kill session similar to forms user session

    We have a forms and reports based system that uses the oracle sessions. Sometimes if a form takes a long time we have the need to navigate to iAS>Forms>User Sessions, find the IP of the machine where the form is not responding and kill it based on the IP of the troublesome machine.
    I want to add this into our forms environemnt so people can kill their own sessions if need be but not sure how this is handled
    is it a simple alter system kill session in the db or something different.
    also how is the ip found to match the session?
    Thanks

    hi,
    Instead Set session timeout parameters..So that user gets logged off automatically from the application after a particular interval of time
    For this you have to make changes in httpd.conf file,web.xml file and env file
    Regards
    Fabian

  • How to find forms/reports version 11i EBS

    Hi Gurus.
    one of my colleague asked me to find out forms/reports version in 11i system on Linux OS.
    Thanks

    Please see these threads.
    how to find the developer version
    Re: how to find the developer version
    Report Builder version
    Re: Report Builder version
    Form patch set level
    Re: Form patch set level.
    Always search the forum before posting similar questions.
    Thanks,
    Hussein

  • How to find Forms user ?

    hi,
    How can i find out the forms user name, accessing 11i / r12 instance ??
    Thx.

    Hi,
    I checked the following SQL on 11i (11.5.10) but I don't know if it will work on 12i...
    select distinct usr.user_name,
    l.start_time,
    ses.sid,
    ses.serial#,
    ses.module,
    v.spid,
    ses.process,
    null,
    null,
    frm.user_form_name,
    ff.type,
    f.start_time
    from fnd_logins l,
    fnd_login_resp_forms f,
    fnd_user usr,
    fnd_form_tl frm,
    fnd_form_functions ff,
    gv$process v,
    gv$session ses
    where l.end_time is null
    and l.user_id = usr.user_id
    and l.pid = v.pid
    and l.serial# = v.serial#
    and v.addr = ses.paddr
    and l.login_id = f.login_id(+)
    and f.end_time is null
    and f.form_id = frm.form_id(+)
    and f.form_appl_id = frm.application_id(+)
    and frm.language(+) = 'US'
    and f.audsid = ses.audsid
    and ff.form_id = frm.form_id;
    If you need an information about all connection types (OA Framework screens, responsibility with no form opened) you can also look at:
    http://oracle-apps-dba.blogspot.com/2007/07/apps-user-connection-details.html
    Regards,
    Aviad

  • How to find the killed session and machine name

    Hi,
    At the time of batch job running .somebody killed that session .let me know how to find out the particular user name db level or oslevel .from which machine they killed how to find out at OS level . but when i have set the audit_trail=os only SYSDBA user activities are audited not the other user activities.
    The server is AIX and db version 11i .provide the query for finding or os level .
    thanks,
    DBC.
    Edited by: dbc001 on Mar 26, 2013 9:48 PM

    Are you sure that somebosy had killed the session? Did you get any error regarding kill session? Is there any other errors you can see in logs?its suspect only....
    >
    How that job was scheduled?...actually we have lot of source systems, from those source system we are getting the data into BI machine, by using BI apps team process data and trigger load jobs @db
    Apps team is having database unix logins aswell as db logins to process their requests.
    Your OS admin can check the history upto some extent? Check if he has auditing enabled at OS level?we are in the process of checking with OS sysadmin.
    upto now we didnt got any clue....apps team successfully re-ran failed job.

  • How to clean the dead sessions in the database?

    Hi,
    sqlldr user/passwd@dbtns DIRECT=TRUE SKIP_UNUSABLE_INDEXES=TRUE SKIP_INDEX_MAINTENANCE=FALSE control="test.ctl"
    3M records
    The OS shutdown when i sqlldr, and start another sqlldr into the same table
    but the table is locked.
    sqlldr failed
    SQL*Loader-951: Error calling once/load initialization
    ORA-00604: error occurred at recursive SQL level 1
    ORA-00054: resource busy and acquire with NOWAIT specified or timeout expired
    how to use ORACLE system maintenance procedure to clear the database dead session?
    Which procedure?
    I don't want to use the solution:
    alter system kill session

    HI..
    What is the status of the session in V$sesison view.Does the session exist.
    COLUMN username FORMAT A15
    col osuser for a15
    col module for a15
    COLUMN machine FORMAT A30
    col program for a20
    COLUMN logon_time FORMAT A20
    SELECT NVL(s.username, '(oracle)') AS username,
           s.osuser,
           s.sid,
           s.serial#,
           p.spid,
           s.status,
           s.module,
           s.terminal,
           s.machine,
           s.program,
           TO_CHAR(s.logon_Time,'DD-MON-YYYY HH24:MI:SS') AS logon_time
    FROM   v$session s,
           v$process p
    WHERE  s.paddr  = p.addr
    and AND    s.status = 'ACTIVE'
    ORDER BY s.username, s.osuser;Anand

  • Newbie Question: How to find Forms/Reports Server Version

    Hello,
    Is there a way to easily find out what is the patchset installed for the Forms and Reports Server. I know that presently using AS 9i rel1 and Forms 6i, but how do you find out more information on the installed patches on Windows? thanks

    Please see these threads.
    how to find the developer version
    Re: how to find the developer version
    Report Builder version
    Re: Report Builder version
    Form patch set level
    Re: Form patch set level.
    Always search the forum before posting similar questions.
    Thanks,
    Hussein

  • How to find concurrent reqest completed in 11i

    Hi,
    how to find concurrent reqest completed with warning in PCP environment in 11i DB 10g R2,please let me know any query to find out reports in node.

    Sawwan,
    thanks ,
    I have modified my existing script to display completed with warning using date, but its not giving me expected results,please check it and let me know where it went wrong.
    select t.request_id request_id,
    t.request_date request_date,
    v.PROGRAM_SHORT_NAME PROGRAM_SHORT_NAME,
    v.PROGRAM PROGRAM,
    v.REQUESTOR REQUESTOR,
    b.USER_CONCURRENT_QUEUE_NAME,
    a.NODE_NAME,
    Decode(t.phase_code, 'C', 'Completed', t.phase_code) phase_code,
    Decode(t.status_code, 'G', 'warning', t.status_code) status_code
    from FND_CONCURRENT_REQUESTS t, FND_CONC_REQ_SUMMARY_V v,fnd_concurrent_processes a, fnd_concurrent_queues_vl b
    where t.phase_code = 'C'
    AND t.status_code IN ('G', 'Q', 'E', 'F')
    and v.PHASE_CODE = 'C'
    and t.status_code IN ('G', 'Q', 'E', 'F')
    and t.request_id = v.REQUEST_ID
    and t.actual_completion_date > TRUNC (SYSDATE - 1)
    and t.hold_flag = 'N' ;

  • Urg : how to find form for standard transactions

    Hi
    How to find smart forms for standard transaction and how to call or change the existing form to another zform .how to implement the  forms ..
    give helpful hints.
    thanks
    suresh

    Hi,
    for Smartforms material
    http://www.sap-basis-abap.com/sapsf001.htm
    http://www.sap-press.com/downloads/h955_preview.pdf
    http://www.ossincorp.com/Black_Box/Black_Box_2.htm
    http://www.sap-img.com/smartforms/sap-smart-forms.htm
    http://www.sap-img.com/smartforms/smartform-tutorial.htm
    http://www.sapgenie.com/abap/smartforms.htm
    How to trace smartform
    http://help.sap.com/saphelp_47x200/helpdata/en/49/c3d8a4a05b11d5b6ef006094192fe3/frameset.htm
    http://www.help.sap.com/bp_presmartformsv1500/DOCU/OVIEW_EN.PDF
    http://www.sap-img.com/smartforms/smart-006.htm
    http://www.sap-img.com/smartforms/smartforms-faq-part-two.htm
    Re: Need FAQ's
    check most imp link
    http://www.sapbrain.com/ARTICLES/TECHNICAL/SMARTFORMS/smartforms.html
    step by step good ex link is....
    http://smoschid.tripod.com/How_to_do_things_in_SAP/How_To_Build_SMARTFORMS/How_To_Build_SMARTFORMS.html
    regards
    Sudheer

  • How to find form names in Gems

    Hi Friends,
    We are using the SAP Portal,through portal we are changing the bank information.Here my question was
    how to find which form is used for bankinformation change?
    How to find the form name?
    Thanks in advance.
    regards,
    Venkat

    Hi Venkat,
                    "TNAPR" is the table were you will get all the information.
    Regards,
    Sathish

  • How to find out which session is consuming the most of sga

    Hello,
    I have a server that is running out of swap space. I like to find out which oracle session is using a lot of the sga. Which data dictionary has this view? Thank you. 9208, linux 4.

    How did you configure SGA memory managment?
    How much real memory is available on the machine?
    How large did you make the SGA?
    How much PGA do you think you need?
    See Oracle version# Reference manual and start with
    v$process -- show pga per process and can be joined to v$session to identify front-end process
    v$pgastat
    v$sga
    v$sgastat
    HTH -- Mark D Powell --

  • How to find forms which have associate a DFF

    Hi all,
    I need to look for all forms with a DFF associate, but I don't know how to looka for it.
    I try to made a "find" from my unix machine but it doesn't work.
    Any idea about it?
    Thanks,
    bpf

    Hi,
    Every form having a DFF would have the DFF definition under the WHEN-NEW-FORM-INSTANCE (fnd_flex.define('Items')) where the item name and the DFF name are associated. Please get the FMT file which is the ASCII format of FMB. I am not very sure whether the fnd_flex.define(dff_name) is shown in FMT. Please open one of these and check. Thereafter grep on this should help.
    Thanks

  • How to find out user session??

    I have deployed application using Oracle 9iAS server. At times
    the IAS server cpu goes 100% and if I see the task manager only
    one (or) two ifweb60 (forms session) session taking the maximum
    cpu time out of 60 ifweb60 sessions. I want to know which NT
    user has initiated the session. When I see the session info. in
    my backend, all the session showing the same account which is
    nothing but Service account configured for IAS. Is there any way
    to identify this???

    dear Ragothaman
    I work under 817, if I see that someone is doing a killing/resource select I do this:
    first I query the view V$SQLTEXT and V$SQLAREA
    then...
    select SID, SERIAL#, USERNAME, MODULE from v$session where username='USER_NAME';
    then I get the SID & SERIAL# and get him/her out of the way :)
    ALTER SYSTEM KILL SESSION '48,2285';
    in which the SID=48 and SERIAL=2285
    nasty isn't it? :>
    rjh

Maybe you are looking for