How to find our custom indexes in oracle apps

Hi Experts,
Can you please suggest how to find out unused custom index ( non-seeded).
Our DB Version is : 11.2.0.2
EBS Version: 12.1.3
Thanks

Hi,
You can query select * from dba_objects where object_name like 'ABC%' and object_type='INDEX' and OWNER='APPS';
and select * from dba_objects where object_name like 'ABC%' and object_type='TABLE' and OWNER='APPS'; for tables.
Cheers,
Sachin Thapa

Similar Messages

  • How to find .pld files version in Oracle apps

    Hi,
    How to find .pld file version in Oracle apps using unix command or any other way.
    Regards

    Connect to the forms server.
    In the $AU_TOP/resource directory run the following...
    strings -a <NAMEOFFILE>.plx | grep '$Header'
    For example...
    To find the .pld version of INVAMCAP.plx I would run this on the forms server.
    cd $AU_TOP/resource
    strings -a INVAMCAP.plx | grep '$Header'
    This will return the .pld version.
    Hope this helps!
    Jen

  • How we can find the customized workflow in Oracle Apps 11.5.10.2

    Hi all,
    I am new to Oracle Workflow and I want to know, How many customized workflow is running in my oracle apps 11.5.10.2.
    Thanks & Regards
    Rakesh Kumar

    An another possibility is to do the opposite to what I just wrote. Upload the true definition to the database an compare with the one you are not sure about via SQL:
    1. Backup the WFT file where the standard/seeded workflow is provided
    2. Edit it and change the name of the ITEM_TYPE. For instance, change it from OEOL to OEOL_TMP (cannot exceed 8 characters)
    3. Upload it to the database with WFLOAD
    4. Compare the design tables for the two if them (WF_ITEM_TYPES, WF_ACTIVITIES, WF_MESSAGES, WF_PROCESS_ACTIVITIES, WF_ITEM_ATTRIBUTES, etc). If the table provides a VERSION column then the query would need to use a WHERE END_DATE is null (so that you get only the active/current version of the object). A select... MINUM select would do the job.
    I would do this in test though, to avoid a mistake can cause any issues.
    Regards,
    Alejandro
    Edited by: Alejandro Sosa on Feb 4, 2013 7:07 AM

  • How to run a customized form in Oracle Apps (EBS)

    Oracle Apps - 11.5.10.2 on Linux As 4.5
    Oracle Database Version : 9.2.0.6.0 on HP UX Itanium 11.23
    Through (EBS)Apps can i run a Cutomized Form (Developed with D2K) , just like we run a report after
    defining a Concurrent Program for the same.
    If yes how to i do this.
    Kindly guide.
    Sakshi

    Hi,
    The KCUSTEST.fmb is present under au top and the .fmx is only present under kcus top.Are you able to access the form from the application if you rename the fmx file under the CUSTOM_TOP directory?
    There is one more issue, for testing i had registered a form KPAYDOCKET from from Application Developer ---> Application --> Form.
    I have alreday deleted the .fmb and .fmx but still not able to delete the entry from Application Developer ---> Application --> Form
    When i try to delete i get the error that the object is been referenced.Make sure the form is not not referenced in (Application > Function) and (Application > Menu).
    Regards,
    Hussein

  • How to add a custom shortcut in Oracle apps Tool bar

    Hie all,
    I have a requirement from our end users that all of them requires a shortcut button in toolbar for submitting a request instead of going the normal way in order to submit a single request.
    please can any one help me out in solving this query.
    APPS version : 12.1.3
    OS: OEL 5.5 64 BIT
    DB: 11G
    Regards,
    Hassan

    I have a requirement from our end users that all of them requires a shortcut button in toolbar for submitting a request instead of going the normal way in order to submit a single request.
    please can any one help me out in solving this query.Any reason you want to use a shortcut rather than using (Requests > Submit) window?
    You can use "FND_REQUEST.SUBMIT_REQUEST" API -- https://forums.oracle.com/forums/search.jspa?threadID=&q=FND_REQUEST.SUBMIT_REQUEST&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    How To Submit A Concurrent Request Set Using Fnd_Request.Submit_Request [ID 382791.1]
    How To Set ORG_ID When Submitting A Concurrent Request Using FND_REQUEST.SUBMIT_REQUEST in Release 12 [ID 1383266.1]
    Thanks,
    Hussein

  • How to find istore tangible id in oracle apps table

    Hi all,
    i have search tangible id in oracle istore table,but tangible id have two table one is IBY_TANGIBLE and another one is IBY_TRXN_SUMMARIES_ALL.but i need some another table,so help me.
    Thanks,
    raj.

    Connect to the forms server.
    In the $AU_TOP/resource directory run the following...
    strings -a <NAMEOFFILE>.plx | grep '$Header'
    For example...
    To find the .pld version of INVAMCAP.plx I would run this on the forms server.
    cd $AU_TOP/resource
    strings -a INVAMCAP.plx | grep '$Header'
    This will return the .pld version.
    Hope this helps!
    Jen

  • How to find fragmentation in INDEX segments

    Dear All,
    Please tell me the solution for how to find fragmentation in index segments.
    Waiting for your reply.
    Regards,
    .......................

    To minimize tablespace fragmentation is to use Locally Managed Uniform Sized Tablespaces. With Oracle 10g, even your system tablespace can now be LMT.
    The best way to remove fragmentation of a table or index is to re-create or rebuild it. The same can be accomplosihed this is to use the ALTER TABLE MOVE and ALTER INDEX REBUILD statements.
    Alter Table Tab1 move tablespace NEW_LMT_TS;
    Alter Index Ind1 rebuild tablespace NEW_LMT_TS;
    Even with LMT, indexes can sometimes become fragmented over time due to inserts and deletes of rows in the index leaf pages.
    Run an analyze index validate structure on your indexes.
    Query the index_stats table. If the percentage of deleted leaf rows to total leaf rows (DEL_LF_ROWS/LF_ROWS) is greater than 20%; then, the index probably should be rebuilt. but sometimes these may be a wrong.
    How to remove index fragmentation?
    There are two way to remove fragmentation.
    1. index coalesce
    2. index rebuild

  • How to find a customer who does not have any activity in the last 5 years

    HI all,
       How to find a customer who does not have any activity in the last 5 years.
    Thanks & Regards,
    Moderator message: not directly related to ABAP development, please have a look in the respective functional forum.
    Edited by: Thomas Zloch on Jan 3, 2011 2:20 PM

    Post Author: tzinser
    CA Forum: Formula
    Okay, I left off a lot of important information...
    I'm using two tables
    TWDATA
    EVENT
    From TWDATA I'm pulling the fields TWDATA.OrderNumber and TWDATA.DisbursementDate
    From EVENT I'm pulling the fields EVENT.EventCode and EVENT.CompletedDate
    The two tables are linked by OrderNumber.

  • How to create a custom plugin in Oracle Access Manager to create a cookie

    How to create a custom plugin in Oracle Access Manager to create a cookie or Header Variable..
    Vipin

    Its has more steps which you need to consider in addition to Note:101048.1 which is mentioned by Prashant_Pathak. Both notes have enough information. If not, let's know what else you need to set

  • How to find last DML operation in oracle ADF

    how to find last DML operation in oracle ADF
    Please help me
    Thanks
    Damby

    In the base EntityIml class, just override doDML() method as I said.
    (see http://docs.oracle.com/cd/E16162_01/web.1112/e16182/appendix_mostcommon.htm
    "Methods for Creating Your Own Layer of Framework Base Classes")
    So, put a some flag in the session.
    You should not call doDML() method in backing bean, it will be called by framework.
    In the backing bean, you only have to get that information from the session, as follows:
    String last_dml_op = (String)ADFContext.getCurrent().getSessionScope().get("last_dml_op");And voila...

  • How to find out custom enhancements module wise

    Hi ,  
    How to find out custom enhancements module wise (sd, mm,hr,fico).

    Hi
    Enter Tcode SMOD.
    In the next screen click on F4 help for enhancements:
    A Pop-up will come .
    Click on SAP Application.
    You will get list of application .
    Just click on any of the nodes and you can see the enhancements for that module.
    Regards
    Neha

  • How to find the customer exits for a particular transaction

    hi
    how to find the customer exits for a particular transaction

    Hi jyothsna vankadari ,
    ther is a convenient way to find all BADIS called. You may know that BADIS are the newer version of EXITs.
    I would suggest you to go for BADI.
    Follow the below steps to find out what all BADI's are called when you press any button in any transaction.
    1) Goto se24 (Display class cl_exithandler)
    2) Double click on the method GET_INSTANCE.
    3) Put a break point at Line no.25 (CASE sy-subrc).
    Now
    4) Execute SAP standard transaction
    5) Press the required button for which you need to write an exit logic, the execution will stop at the break point.
    6) Check the values of variable 'exit_name', it will give you the BADI name called at that time.
    7) This way you will find all the BADIs called on click of any button in any transaction.
    Regards,
    Clemens

  • How to find my SOA version for Oracle EBS?

    How to find my SOA version for Oracle EBS?
    Thanks!
    Wei

    please see
    SOA 11g Integration Support for Oracle E-Business Suite (Doc ID 1278194.1)
    AppsMaSti
    Sharing Is Caring

  • How to find the customer ledger account display for profit centerwise

    Dear All,
    how to find the customer ledger account display for profit centerwise
    Pleas give your valuable suggestion
    Regards
    Vishwajeet Sharma

    Hi
    check the tables
    A959
    A962
    A997
    The assignment depends on so many things
    with respect to which transaction you wants the PRCTR field for KUNNR?
    Regards
    Anji

  • How to find out difference between IAS Oracle Home patches and 10.1.2 Oracl

    How to find out difference between IAS Oracle Home patches and 10.1.2 Oracle Home patches.
    I have read me document but i could not able to understand.
    Please help me

    user10721329 wrote:
    How to find out difference between IAS Oracle Home patches and 10.1.2 Oracle Home patches.
    I have read me document but i could not able to understand.
    Please help meWhat docoument you are referring to?
    If you source the application env file APPS<CONTEXT_NAME>.env file under $APPL_TOP directory then this will set ORACLE_HOME to 10.1.2
    If you source the application env file <CONTEXT_NAME>.env file under $INST_TOP/ora/10.1.3 directory then this will set ORACLE_HOME to 10.1.3
    Environment Settings
    http://docs.oracle.com/cd/E18727_01/doc.121/e12841/T120505T120509.htm#F_92659x3Ax20H1x20Head1x3Ax20Environmentx20Settings
    Thanks,
    Hussein

Maybe you are looking for

  • PayPal and Firefox Problem

    Hi, I am using the newest OS and whenevr I try and log into my Pay Pal account, it just seems to take forever, sometimes it will eventually log in where as other times it will "time Out" I've tried it on Safari as well but it also seems to take ages.

  • I can't locate any of my music on iTunes, even my purchased tracks have gone

    All my music has disappeared from iTunes, even my purchased stuff & it has an explanation mark next to it. It says locate file but they are nowhere to be found in the iTunes or any folder. Also I can't play the missing tracks in the iTunes Store. Wha

  • RV180W Port Forwarding

    Hi There, I am updating our old Belkin router with this much more capable RV180W. On the Belkin it was easy for me to connect from outside the office to any individual client PC inside the LAN, behind the router's firewall. For instance, if I wanted

  • URGENT HELP IN SCROLLBAR  MOVE TO BOTTOM

    Joined: May 30, 2006 Messages: 19 Dear friends, I am using one Jtable in row also scrollbar .And requirement is while adding each row the table row and scroll bar will go to last row automatically. I atried below code. m_jTable.scrollRectToVisible(m_

  • Error Linking : Error in invoking target all_no_arcl

    Hi all Trying to install Oracle 10GR2 on Linux 2.6.9-5.ELsmp x86_64 . I got the following error , any help is appreciated. Regards Ab Error in invoking target all_no_orcl of makefile .....ins_rdbms.mk. /usr/bin/ld -- libirc.a ( fast_memcpy.o) : reloc