Is there a way to find which DB object is used in which all pages

Hi All,
Is there any way by which we can find out which All Database objects are used in which all pages in an Application. Our Application is quite big and has lots of pages, So is there any report like functionality where I can check the DB objects used on page basis or any underlying view where we can get this information.
Thanks,
Vikas

Hello Vikas,
There are a couple of APEX Views which provide you with that information.
If you go to Home>Utilities>Application Express Views
following views may be useful to you:
- APEX_APPLICATION_PAGE_DB_ITEMS
- APEX_APPLICATION_PAGE_PROC
There are a couple of others (for ex if you make use of flash charts, interactive reports etc) but if you start with the above you'll have a good starting point.
Regards,
Dimitri
http://dgielis.blogspot.com/
http://www.apex-evangelists.com/
http://www.apexblogs.info/

Similar Messages

  • Is there any Way to find Which case is Executing in LabVIEW VI programmat​ically and Display it..

    Is there any Way to find Which case is Executing in LabVIEW VI programmatically and Display it..
    Solved!
    Go to Solution.

    I wrote this a few years ago: http://lavag.org/files/file/199-state-machine-foll​ower/
    This JKI RCF Plugin sets the Visible Frame property of a Case Structure while the owning VI is running. Use it to follow the execution through the cases in your string-based State Machine/Sequencer when Execution Highlighting isn't fast enough (and, it's never fast enough).
    The use-case I wrote this to improve is setting a Breakpoint on the Error wire coming out of the main Case Structure and probing the Case Selector terminal so I can float-probe wires during execution. The problem with this is that I had to manually select the current frame every time. This is boring, so I developed this plugin to automatically set the Visible Frame to the case most recently executed.
    You might be able to adapt it to your needs.  The basic idea is that a custom probe on the wire to the Case structure's selection terminal sends a notification to a VI that displays the appropriate case.
    We might be able to help you develop something easier if you'll give us more information.  Is it OK if the code to display the case is in the same VI?
    Jim
    You're entirely bonkers. But I'll tell you a secret. All the best people are. ~ Alice

  • Is there a way to find which process s chain was scheduled?

    I am developing a query on 0TCT_C21. Is there a way to find which process chains were scheduled to run? I want to see only those process chains. 
    If 0TCT_C21 does not have the information, is it a way to get from somewhere else (i.e., some other tables using virtual characteristic or so  ...).
    Thanks a lot,

    You need to use a combination of tables and function modules.
    Table TBTCO contains list of jobs with job status 'S' for scheduled
    Table TBTCP contains the program name and variant scheduled in that job
    you need to use a function module to know the chain name using the above program name and variant.
    I have written a sample code to do this. feel free to change it as per your needs.
    REPORT  ztest4.
    TYPES: BEGIN OF l_s_scheduled,
           jobname  TYPE tbtco-jobname,
           jobcount TYPE tbtco-jobcount,
           sdlstrtdt TYPE tbtco-sdlstrtdt,
           sdlstrttm TYPE tbtco-sdlstrttm,
           progname TYPE tbtcp-progname,
           variant TYPE tbtcp-variant,
           chain   TYPE rspc_chain,
      END OF l_s_scheduled.
    DATA: l_t_scheduled TYPE STANDARD TABLE OF l_s_scheduled,
          l_t_valtab    TYPE STANDARD TABLE OF rsparams,
          l_w_valtab    TYPE rsparams.
    FIELD-SYMBOLS     <l_f_scheduled> TYPE l_s_scheduled.
    SELECT a~jobname a~jobcount a~sdlstrtdt a~sdlstrttm b~progname b~variant
    INTO CORRESPONDING FIELDS OF TABLE l_t_scheduled
       FROM tbtco AS a JOIN tbtcp AS b
                  ON a~jobname = b~jobname AND
                     a~jobcount = b~jobcount
    WHERE a~jobname = 'BI_PROCESS_TRIGGER' AND
          a~status = 'S'. "Scheduled
    LOOP AT l_t_scheduled ASSIGNING <l_f_scheduled>.
      REFRESH l_t_valtab.
      CALL FUNCTION 'RS_VARIANT_CONTENTS'
        EXPORTING
          report               = <l_f_scheduled>-progname
          variant              = <l_f_scheduled>-variant
        TABLES
          valutab              = l_t_valtab
        EXCEPTIONS
          variant_non_existent = 1
          variant_obsolete     = 2
          OTHERS               = 3.
      IF sy-subrc = 0.
        READ TABLE l_t_valtab INTO l_w_valtab
        WITH KEY selname = 'CHAIN'.
        IF sy-subrc = 0.
          <l_f_scheduled>-chain = l_w_valtab-low.
        ENDIF.
        WRITE :/ <l_f_scheduled>-chain, <l_f_scheduled>-sdlstrtdt, <l_f_scheduled>-sdlstrttm.
      ENDIF.
    ENDLOOP.
    The structure l_s_scheduled in the above program can be extended with more fields and can be used as extract structure in a generic datasource  of type function module and can be fed into a DSO for reporting.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/business-intelligence/d-f/functional%20module%20based%20generic%20datasource%20part%20i.pdf
    Hope it helps!

  • Is there a way to find which songs aren't on playlists in my library?

    I have more songs in my library than on my ipod because I must have forgotten to put some into a playlist. (I put the songs on my ipod by choosing the individual playlists I have finished). Is there a way to find out which songs aren't in a playlist so I can add them to the appropriate ones.
    P.S: I don't want to just sync all songs because I listen to my ipod by playlists and I would never end up hearing them if they're not in one.

    Yes, you can make a new Smart Playlist, with the criteria "Playlist is not Playlist_name", repeated for every playlist you have on your iPod. Have it set to "Match all of the following rules".
    http://home.comcast.net/~teridon73/itunesscripts/    

  • OIM11g: Is there a way to find out what method is used to create user

    Hello,
    I have a user pre-create event handler that gets called every time a user is created in OIM. In here, is there any way to find out if the user is created by self-service request, admin, or by an external client that used UserManager API? How can the Orchestration parameter be used to get this information?
    Thanks

    Once you have closed the file, the history in the palette is gone.

  • Is there a way to find the class objects memory size?

    Hi Friends,
    Please help.
    Is there a way to find the number of Objects created and total size?
    For example:
    class AgeRecord
    int start;
    int end;
    AgeRecord(int start, int end)
    this.start = start;
    this.end = end;
    In a loop if I create 1000 objects, how will I get the total memory size
    Thanks and Regards
    JG

    You might find this useful...
    package forums;
    http://weblogs.java.net/blog/dwalend/archive/2007/11/the_thing_about.html
    http://forums.sun.com/thread.jspa?threadID=457279&start=30&tstart=0
    http://www.velocityreviews.com/forums/t364574-size-of-boolean-type.html
    The JLS doesn't specify the size of a boolean, leaving it upto the JVM
    implementor to define. Sun's JVM stores booleans as:
    (1) a boolean is-an int; i.e. a signed 32 bit twos-compliment integer.
        At face value, this is an innordinate waste of space, but Java uses a
        32-bit stack frame, and most (modern) CPU's use a 32-bit word anyway,
        so the wasted space is worth the CPU cycles, and it's simple.
    (2) a boolean[] is-a byte array, using 1 byte per element, rounded up to the
        nearest 8, plus 8 bytes for the array-object itself.
        For example: boolean[] bools = boolean[100];
        100 mod 8 = 4; so that'd be 104 bytes + 8 bytes = 112 bytes.
        So, let's dis/prove the contention by experiment.
        1,000,000 mod 8 = 0 so 1,000,000 + 8 bytes for the array = 1,000,008
    class BooleanArraySizeTest
      public static void main(String[] args) {
        final Runtime rt = Runtime.getRuntime();
        System.out.println("The contention is that each iteration should use 1,000,008 bytes.");
        try {
          long before, after;
          final int TIMES = 32;
          boolean[][] bools = new boolean[TIMES][];
          for (int i=0; i<TIMES; i++) {
            before = rt.totalMemory() - rt.freeMemory();
            int n = 1000*1000-(TIMES/2)+i;
            bools[i] = new boolean[n];
            after = rt.totalMemory() - rt.freeMemory();
            System.out.print(n);
            System.out.print('\t');
            System.out.print(after-before);
            System.out.println();
        } catch (Exception e) {
          e.printStackTrace();
    999984 used=1000000 bytes
    999985 used=1000000 bytes
    999986 used=1000000 bytes
    999987 used=1000000 bytes
    999988 used=1000000 bytes
    999989 used=1000008 bytes
    999990 used=1000008 bytes
    999991 used=1000008 bytes
    999992 used=1000008 bytes
    999993 used=1000008 bytes
    999994 used=1000008 bytes
    999995 used=1000008 bytes
    999996 used=1000008 bytes
    999997 used=1000016 bytes
    999998 used=1000016 bytes
    999999 used=1000016 bytes
    1000000 used=1000016 bytes
    1000001 used=1000016 bytes
    1000002 used=1000016 bytes
    1000003 used=1000016 bytes
    1000004 used=1000016 bytes
    1000005 used=1000024 bytes
    1000006 used=1000024 bytes
    1000007 used=1000024 bytes
    1000008 used=1000024 bytes
    1000009 used=1000024 bytes
    1000010 used=1000024 bytes
    1000011 used=1000024 bytes
    1000012 used=1000024 bytes
    1000013 used=1000032 bytes
    1000014 used=1000032 bytes
    1000015 used=1000032 bytes
    ENVIRONMENT:
      Microsoft Windows [Version 6.0.6000]
      Copyright (c) 2006 Microsoft Corporation.  All rights reserved.
      C:\Users\Administrator>java -version
      java version "1.6.0_12"
      Java(TM) SE Runtime Environment (build 1.6.0_12-b04)
      Java HotSpot(TM) Client VM (build 11.2-b01, mixed mode, sharing)
    */Cheers. Keith.

  • Is there a way to find out what computer was used to make an order

    I found some charges on my account that I did not make assuming that it was either my 14 year old son or soon to be ex-husband, is there a way to tell what computer was used to make the order?

    rbailey60 wrote:
    Last update was 3/3/2011 which was the itunes update. So the problem must be w/the itunes update. Does anyone know how we can contact MAC to tell them of this problem?
    It's highly doubtful there's a general problem caused by that update, or the forums would be full of similar posts. More likely, it's specific to your setup somehow.
    Have you Restarted your Mac lately? If not, that's always worth a try.
    Then, make sure there isn't a problem with the file system on your internal HD. Verify it, per #6 in [Formatting, Partitioning, Verifying, and Repairing Disks|http://web.me.com/pondini/AppleTips/DU.html] (or use the link in *User Tips* at the top of the +Using Snow Leopard+ forum).
    If that's ok, then as GfulDedFan says, run +*Repair Disk Permissions,+* per #5 there.
    If that doesn't help, try connecting to your router via Ethernet cable instead of wireless, to rule out interference problems.
    If you have the same results via Ethernet, you can make an appointment at the Genius Bar of your nearest Apple Store: http://www.apple.com/retail/geniusbar/
    Or call AppleCare at: (800) APL-CARE (800-275-2273)

  • My ipod was stolen and all I have is an iTunes account. Is there any way to find it?, My ipod was stolen and all I have is an iTunes account. Is there any way to find it?

    My friend's ipod was stolen and she has no way of knowing how to track it or find it. She believes it is a nano but she's not sure because it's not completely new. It is an old type of iPod. Is there any way of tracking or finding it if she has an iTunes account?

    There is no way to track it. Sorry.
    Reporting a lost or stolen Apple product
    B-rock

  • Is there a way to print out the objects (controls) used in an application in VS 2012?

    My students are required to change the name property of all the control objects used in their applications (buttons, labels, etc.). I can have them print the code, but that only shows the names of the controls used in their code, not necessarily all of
    them. Is there a way for the students to print the names of all the control objects used in their application?

    Hi D Schultz,
    Based on your description, I'm afraid that it is not the correct forum for this issue.
    Just to make this issuce clearly, Which kind of app did you create? Which kind of language were you using?
    Like this case posted by you:
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/147a040a-e9e2-4e7c-b31e-334b6d21dffa/vb-code-to-create-formobjects-showing-in-code-window?forum=visualstudiogeneral#147a040a-e9e2-4e7c-b31e-334b6d21dffa
    If it is the VB winform apps, I suggest you post this issue to the VB language development forum or the WinForm forum.
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/home?forum=vbgeneral
    https://social.msdn.microsoft.com/Forums/windows/en-US/home?forum=winforms
    If not, please let me know the real project type, I will help you find a more appropriate forum.
    Best Regards,
    Jack
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How do I restore my old Firefox desktop. It was setup the way I like it and now its gone. is there a way to find the old URL so I can restore my page? I

    Some f___ing program change my FireFox home page which was set-up just the way I work and the way I like. I once wrote down the URL so if this happened again I could just type it in and then drag the URL over to the little house and it would restore my page. Now I can't find the URL, its bee so long since I used and now I'm stuck. I have lost all my items as I had them set-up. Any help in finding that old URL would be most appreciated.

    Can you remember what that page looked like?
    Was this a customized Google or Yahoo page?
    You can check the History (History > Show All History) and possibly the cache (about:cache) to see if some page looks familiar.
    *http://alternativeto.net/software/awesome-new-tab-page/

  • Is there any way to find available wifi networks programmatically using c#?

    Hi
    Am developing windows mobile 8.1 application, I want to scan for available wifi networks and display them in a listview can any body please help me?
    Thanks in advance.

    Please see
    https://msdn.microsoft.com/en-us/library/windows/apps/system.net.networkinformation.networkinterface(v=vs.105).aspx
    Matt Small - Microsoft Escalation Engineer - Forum Moderator
    If my reply answers your question, please mark this post as answered.
    NOTE: If I ask for code, please provide something that I can drop directly into a project and run (including XAML), or an actual application project. I'm trying to help a lot of people, so I don't have time to figure out weird snippets with
    undefined objects and unknown namespaces.

  • Way to find which tables are being accessed

    Hi Guys
    I have a large database and i want to find which tables are not being accessed (even select) from a specific period of time. is there any way to find out . I am using oracke 10g release 1
    Regards
    Khurana
    Edited by: Khurana on Sep 8, 2009 4:29 PM

    select sp.object_owner,sp.object_name,
    (select sql_text from v$sqlarea sa
    where sa.address = sp.address
    and sa.hash_value =sp.hash_value) sqltext,
    (select executions from v$sqlarea sa
    where sa.address = sp.address
    and sa.hash_value =sp.hash_value) no_of_full_scans,
    (select lpad(nvl(trim(to_char(num_rows)),' '),15,' ')||' | '||lpad(nvl(trim(to_char(blocks)),' '),15,' ')||' | '||buffer_pool
    from dba_tables where table_name = sp.object_name
    and owner = sp.object_owner) "rows|blocks|pool"
    from v$sql_plan sp
    where operation='TABLE ACCESS'
    and object_owner IN ('YOUR_USER_NAME')
    order by 1,2
    It will tell you that currently "OBJECT_NAME" is being accessed; but i think it is for full table scan.
    Source:http://www.oracle.com/technology/oramag/code/tips2005/032105.html
    Regards
    Girish Sharma

  • Is there a way to find all highlights made in the macbook ibooks library in the case that you cant remember the book in which the highlight was made?

    Is there a way to find all highlights made in the MacBook iBooks library in the case that you cant remember the book in which the highlight was made?

    Some things that might help:
    1. Only the most recently used apps actually occupy memory (used to be the most recent 4, but may have changed in the latest iPhones). After 4 (or so), IOS writes them out of active memory, as it does for even the latest 4 if there's no activity for a long time. So the business of closing all the open apps, apart from the most recent ones doesn't make a difference. Tis article has a good explanation:
    http://www.speirs.org/blog/2012/1/2/misconceptions-about-ios-multitasking.html
    2. There are settings about background app activity that might help:
    - Settings, General, Background App Refresh controls which apps can update their data in the background
    - Settings, Notifications controls which apps can tell you things, which they have to wake up to do.
    - Settings, Privacy, Location Services controls which apps monitor your location - another activity that uses resources
    Hope some of that helps

  • HT1665 Hello. Is there any way of finding a list of accessories which hold "made for iPhone" certification?

    Hello. There are a lot of new accessories available for iPhone 5 and iPhone 4 / 4S. Is there any way of finding a list of accessories which hold "made for iPhone" certification? I do not want to buy any accesories which may be harmful for my iPhone.

    Here is the start of the setup:
    Click on the Wi-Fi Options button and provide the needed info:
    Click on the OK button. Now check the Internet Sharing box to turn it all on. If the port box you checked is no longer checked, then uncheck Internet Sharing, check the port box again, then check the Internet Sharing box again.

  • I have an iPad1 which I have reset and am preparing to give to a kid.  I now find that I can't reinstall many apps as they now seem to require IOS 6 or greater.  This is IOS 5 and can't be upgraded.  Is there a way to find the older versions of the apps?

    I have an iPad1 which I have reset and am preparing to give to a kid.  I now find that I can't reinstall many apps as they now seem to require IOS 6 or greater.  This is IOS 5 and can't be upgraded.  Is there a way to find the older versions of the apps?

    One of these links may help:
    iOSSearch - search the iTunes store for compatible apps.
    Vintapps 3.1.3 - paid app.
    Apple Club - filter apps by iOS version.

Maybe you are looking for

  • How to split a report in several parts, displayed next to each other ?

    Hi all, I searched the forum, read the manuals, but couldn't find a way to do the following: I have a page, containing several regions. The bottommost region contains a narrow (2 small columns) report, with several tens of rows. This forces the user

  • Phantom Cross-References

    I have removed all cross-references from 17 documents collected into an InDesign Book. But when I try to export to PDF, I get an error message saying there are unresolved or out-of-date cross-references in 8 of the 17 documents.  There is nothing sho

  • FLV player component. Open Source/commercial options?

    I'm returning to a project I've had on hold for a bit. We're now receiving .flv files from our video team and we need to displaying them on our site. Can anyone recommend some Flash FLV player components? Open source preferred, but commercial or free

  • Which Database is not supported by SAP

    Hi gurus, What is the databse which is not supported by sap? Thanks, Mazhar.

  • Active Token For 15 days trail version of WEB Inspect tool

    Hi I am new to HP site. I am trying to use WebInspect tool 15 days trail version, For that I need a active token This active token suppose to send by HP through offcial mail. But I am not able to get this through my office mail id. could you please d