How to find the invalid form session in oracle Apps

Oracle Apps R12
Hai All
How to find the invalid form session in oracle Apps R12 and How to Kill the that.
Thanks & Regards
Srikkanth.M

Hi,
Please refer to these docs (for 11i and R12).
How to Kill Inactive Sessions Based on the Information in the Monitor User Form [ID 103516.1]
Script: How To Identify The apps User Using The O/S PID For Forms Users In 11i [ID 185762.1]
Thanks,
Hussein

Similar Messages

  • How to find the Standard DFF Name  In oracle apps

    hi,
    How to find the Standard DFF Name In oracle apps
    thanks

    1. Open the form
    2. Choose Tools--> Diagnostics
    3. In the block field choose $DESCRIPTIVE_FLEXFIELD$
    4. Field will show the list of all the DFF's enabled for that form.
    5. Choosing one will display the name of the DFF in the value field.
    Thanks
    Nagamohan

  • How to Locate the Custom Form Name  in Oracle Apps

    Hi hussein,
    We had a migration project from 11.0.3 NT to 11.5.10.2 AIX, and it include
    1 form I guess. The client user is showing me the navigation tree where the customized form was located.
    She opened the NT Oracle Apps 11.0.3 and it is showing the following:
    Cash Management Responsibilty
    + Other
    Enter Adjustment >> this is the customized form that she showed me
    When the form opened, i shows a block with parent table "AP_BANK_ACCOUNTS_ALL" and a child table
    "CEC_ADJUSTMENT_RECON".
    My question is, based on the navigation, how do I know which is the location of the forms.fmx? of what
    module was it registered to?
    ==============
    I tried to navigate to the custom form and open it, then click "Help --> About"
    from the menu bar, but it does not show you the form name and the forms executable location path,
    (not like the standard forms of oracle where it shows the form name),
    the "help" being shown is the help of the runtime form in a normal default oracle form window.
    so I assumed that the custom form has been registered but not following the standard procedure.
    ==============
    How do I reverse locate it? base on the "tree" > Enter Adjustment
    Thanks a lot

    Hi,
    Please see (Note: 176852.1 - Integrating Custom Applications with Oracle Applications Release 11i), Step 10-f.
    For the (Help > About) issue, please see if (Note: 556755.1 - Forms Version Not Showing On 'About Oracle Applications' Form From Help Menu) helps.
    Btw, I guess we had a similar discussion before in this EBS 11i Customized Oracle Forms and Reports.
    Regards,
    Hussein

  • How to find the Invalid Pll after applying a Pacth

    Hi,
    How to find the Invalid Pll after applying a Pacth
    Thanks & Regards
    Sivaraman.G

    You can get the list of PLL files from the patch log file.
    To determine the invalid objects you have in the database, run the following:
    SQL> select owner, object_name, object_type
    from dba_objects
    where status = 'INVALID';To get the list of invalid packages:
    SQL> select owner, object_name, object_type
    from dba_objects
    where status = 'INVALID'
    and object_type like 'PACKAGE%';To compile invalid packages, issue the following:
    SQL> alter package <package name> compile; (to compile package header)
    SQL> alter package <package name> compile body; (to compile package body)

  • How to Find the Current Instance Id in Oracle 10g

    Hi,
    how to find the current instance id in oracle 10g studio,
    I have the below code :
    if (InstanceScreenFlow.processInstance.id.id.indexOf(text : ins.id) < 0) {
    /// do something
    it is saying that "'processInstance' is not a function"
    Thanks,
    Brijesh Kumar Singh.

    Why not just pass in the "id" predefined variable into your screenflow? Once you do that you'll be able to refer to it as "id.id" anywhere inside your screenflow.
    Dan

  • Urgent    How to find the password of dblink in oracle

    How to find the password of dblink in oracle
    Iam currently working
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    PL/SQL Release 10.2.0.4.0 - Production
    I don't have dba rights
    please help me

    John Spencer wrote:
    You are correct, it is not populated in 11g, but is in 10G.
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Prod
    PL/SQL Release 10.2.0.4.0 - Production
    CORE    10.2.0.4.0      Production
    TNS for 32-bit Windows: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
    SQL> create database link test_link connect to scott identified by tiger using 'sol10';
    Database link created.
    SQL> select db_link,password from user_db_links where db_link like 'TEST%';
    DB_LINK                                       PASSWORD
    TEST_LINK.REGRESS.RDBMS.DEV.US.ORACLE.COM
    SQL> select name,password from sys.link$ where name like 'TEST%';
    NAME                                          PASSWORD
    TEST_LINK.REGRESS.RDBMS.DEV.US.ORACLE.COM
    SQL> select name,passwordx from sys.link$ where name like 'TEST%';
    NAME                                          PASSWORDX
    TEST_LINK.REGRESS.RDBMS.DEV.US.ORACLE.COM     05C9AF8C3A16DBE5F47715B67FD0652BE4
    SQL> SY.

  • How to find the appraisal form for an appraisal model

    Hi group,
    We want to implement the BAdI that defaults dates for an appraisal.  However, it should only kick in for certain appraisal models.  When entering the BAdI, I have APP_MODEL_ID available to me.  Based on this ID, I need to find which appraisal form the passed appraisal model belongs to - and only carry out code in BAdI if appraisal form = 5.
    I find AFORM_ID in table T77BF, but I cannot find how to determine this based on the APPL_MODEL_ID passed to the method.
    Any hints greatly appreciated.
    /Kirsten

    You can do a look up of the Table HRP1043 for the Appraisal Model & retrieve the Appraisal Form ID.
    data: w_form_id type AFORM_ID.
    select AFORM_ID into w_form_id up to 1 rows
                               from HRP1043
                               where plvar = '01'
                                   and otype = 'BS'
                                   and objid =  "Appr Model ID
                                   and istat =1
                                   and begda le sy-datum
                                   and endda ge sy-datum.
    endselect.
    if sy-subrc eq 0.
    * w_FORM_ID will ahve the form no
    else.
    * error.
    endif.
    ~Suresh

  • How to find the users of teamviewer using oracle database?

    Friends,
    DB: 9iR2
    OS: RHEL AS 3
    Client pc: win xp
    We have 3 branches. One of our user accessed our application from the other branch using teamviewer.
    is it possible to find the user from the database side?
    i mean from the v$session or from any other table.
    thanks

    Hello,
    you can use folloiwng script to see the OS user, database user and the programme they are using to connect to database.
    SET TRIMSPOOL ON TRIMOUT ON ECHO OFF VERIFY OFF HEAD OFF FEEDBACK ON LIN 150 PAGES 10000
    set linesize 150
    CLEAR BREAKS COMPUTES
    COL type_grp NOPRINT
    COL logon_time NOPRINT
    COL logontime FOR A14
    COL osuser FOR A21
    COL username FOR A28
    COL lastcall FOR A14
    COL program FOR A50
    --COL program   FOR A&plen
    BREAK ON type_grp SKIP 1
    --PROMPT
    PROMPT **************************************************************** SESSIONS INFORMATION ****************************************************************
    PROMPT
    PROMPT |------- O/S -------|--------- ORACLE ----------| Logon | Last Call | |
    PROMPT |Username | Pid |Username | Pid | 'SID,Ser#'| DateTime | DateTime | TYPE | PROGRAM
    PROMPT |_________|_________|_________|_____|___________|______________|______________|__________|____________________________________________________________
    SELECT ' '||rpad(nvl(osuser,p.username), 9) ||lpad(nvl(s.process,p.spid), 10) osuser,
    rpad(nvl(s.username,' '),9) ||lpad(decode(s.sid,'','',p.spid), 6) ||lpad(decode(s.sid,'','',''''||s.sid||','||s.serial#||''''),12) username,
    to_char(logon_time,'mm/dd hh24:mi:ss') logontime,
    to_char(sysdate - (s.LAST_CALL_ET / 86400),'mm/dd hh24:mi:ss') lastcall,
    s.type,
    nvl(s.program, p.program) program,
    s.type type_grp,
    logon_time
    FROM v$session s, v$process p
    WHERE spid is not null
    AND s.paddr (+) = p.addr and s.username not in('SYS','SYSTEM','SYSMAN','DBSNMP')
    ORDER BY s.type, logon_time, s.sid;
    set head on;
    Regards,
    Anil Malkai

  • How to find the code for a lost Mac App gift card?

    I received a Back-to-School gift card with my purchase of my laptop that had $100 on it back in 2012. I used it once last year to purchase Roller Coaster Tycoon 3 Platinum. I wanted to buy The Sims 2 yesterday, but I had to update the version of OS X I had to run the program. I had to wait overnight to let it update since I had school in the morning. Long story short, the card somehow disappeared over night and I've been searching like crazy this morning to find it. To no avail, it didn't show up. I was wondering if there is any way I could find the code somewhere since I had made a purchase on it a while ago. I was able to view the purchase through iTunes, but I wasn't able to find a code. It's already been redeemed on my Apple ID and everything. All I need is the code. Any help, please?
    I have a MacBook Air and the update I just installed was OS X Yosemite 10.10.1

    I know the amount left on it, which is about $60. The issue is I'd like to use my card again, but I lost it and I need the code on the back to use it again. When I tried to make the purchase, it wanted me to reenter the code despite that the gift card was already redeemed on the account.
    There was no expiration date on the card and my account is still showing the amount left on it.

  • How to find Server location for Attachment in Oracle Apps?

    We are trying to find the location of an attachment that is stored in FND_ATTACHED_DOCUMENTS.
    We need to know the full location for the file.
    Please help.

    Pradeep Kalyan wrote:
    We are trying to find the location of an attachment that is stored in FND_ATTACHED_DOCUMENTS.
    We need to know the full location for the file.
    Please help.https://forums.oracle.com/forums/search.jspa?threadID=&q=Attachment+AND+Location&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    FND_LOBS.FILE_NAME
    http://etrm.oracle.com/pls/et1211d9/etrm_pnav.show_object?c_name=FND_LOBS&c_owner=APPLSYS&c_type=TABLE
    Thanks,
    Hussein

  • How to find the Script form

    Hi
    I am getting an error "Start_form is invalid, Open_form is missing" when i try to save the entries in transaction CO40.
    How can i resolve this issue?
    Regards,
    Sujai

    Check if your form is active .
    Check in page settings you have assigned correct page & you have also mentioned the next page  & both the pages exist.
    Also check if you have created a main window as a page window .
    Message was edited by: Yogesh Joshi

  • How to find the last downloaded patch for oracle

    Hello everybody ,
    I am new to Oracle DBA.
    where to look the oracle last patch available in software , is we get this information from OS files or from the database tables .....which data dictionary table
    i have oracle 10.2.0.4 version
    os is solaris

    SQL> SELECT * FROM v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Prod
    PL/SQL Release 10.2.0.4.0 - Production
    CORE    10.2.0.4.0      Production
    TNS for 32-bit Windows: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
    SQL>

  • How to find list of master tables in oracle apps GL

    Hi Friends,
    Is there a way to find all the master tables in GL?
    Thanks
    Prasuna,

    You could run a quick query to see which tables have the most rows for GL:
    -- TABLES
      SELECT owner
           , num_rows
           , table_name
        FROM all_tables
       WHERE num_rows > 0
         AND owner = 'GL'
    ORDER BY num_rows DESC;

  • How to find the SAP Standard form given the variant name.

    I am working on forms, How to find the standard form given
    print program name or the variant name .
    for eg:
    given
    print program is RKFORD10
    varinat is SAP06
    The SAP standard Form is F140_ACC_STAT_01.
    I need to find the standard form given the variant as SAP13.

    In SPRO,
    SAP Customizing Imp guide->Financial Accounting->Fin Account Global Settings->Correspondence
    Under this-
    'Assign Programs for Correspondence Types'(Tcode OB78) &
    'Define Form names for correspondence print'
    should be useful to you
    Message was edited by: Sravanthi

  • How to find the configuration status of REDO logs files?

    I am in the process of moving the redo log files.
    Before that I want to find out whether it is set up as duplex or any other configurations.
    How to find the REDO log configurations.
    Oracle 10g R2
    Thank you,
    Smith

    Example:
    Not duplexed redo log - if number of member is 1, then it is not duplexed:
    SQL> select group#, members from v$log;
        GROUP#    MEMBERS
             1          1
             2          1
             3          1
    SQL> select group#, member from v$logfile;
        GROUP# MEMBER
             1 /u01/app/oracle/oradata/db1/redo01.log
             2 /u01/app/oracle/oradata/db1/redo02.log
             3 /u01/app/oracle/oradata/db1/redo03.log
    SQL> alter database add logfile member '/u01/app/oracle/oradata/db1/redo01_2.log' to group 1;
    Database altered.
    SQL> alter database add logfile member '/u01/app/oracle/oradata/db1/redo02_2.log' to group 2;
    Database altered.
    SQL> alter database add logfile member '/u01/app/oracle/oradata/db1/redo03_2.log' to group 3;
    Database altered.Duplexed redolog
    SQL> select group#, members from v$log;
        GROUP#    MEMBERS
             1          2
             2          2
             3          2
    SQL> select group#, member from v$logfile;
        GROUP# MEMBER
             1 /u01/app/oracle/oradata/db1/redo01.log
             2 /u01/app/oracle/oradata/db1/redo02.log
             3 /u01/app/oracle/oradata/db1/redo03.log
             1 /u01/app/oracle/oradata/db1/redo01_2.log
             2 /u01/app/oracle/oradata/db1/redo02_2.log
             3 /u01/app/oracle/oradata/db1/redo03_2.log

Maybe you are looking for

  • Problem with TSNNAMES.ORA

    Hi all, I have a problem with tsnnames.ora file. After i installed obiee and when i careated dsn and when i test it the connection is failed. My OS is windows vista and i cant find the path for the TSNNAMES.ORA in my system. Any help is highly apprec

  • Date Picker Alingment is not proper when we open Date in new Tab

    We are facing Date Picker Alignment issue with Safari 5 browser on MAC 10.7.3. Our application is developed in Seam framwork ( which includs JSF and EJB). The issue which we are observing as follows- There are some links on our application JSF page w

  • Photo folders on Apple TV

    I have a comprehensive photo collection on my PC arranged in a folder structure by decade, year and specific topic eg \My Pictures\2000\2009\2009-10-01 New Year pics. If I sync the folder 2000, on the ATV I get the individual year folders, but no fol

  • How to export and import custome functions...

    Hi Biddies, I am wondering is there any way the custome functions in an existed report can be exported. If there is, how can I do it? For example,   "Custome Functions.rpt", which was distributed  with Crystal Reports, has a custome function library.

  • LightRoom corrupting issue

    All of a sudden I'm having weird color issues in LightRoom 5.7.1.  running on Mac Yosemite.  I'm getting blue and red spots popping up on my images but the raw images are unaffected and I do not see this issue in Photoshop.  Any ideas?Lighr