JDeveloper 2.0: Drilling down into a class

I can't drill down into a class by double-clicking on an object
node in the Structure pane. The Content pane should display the
source code for the ancestor class of that particular object.
Thanks in advance!
null

Hi
The doc for 'oracle.jdeveloper.servlet' can be found in the
JDeveloper Help System.
Launch the help system
and in the contents tab double click on 'JDeveloper 2.0 Reference
Documentation' book icon.
In the right hand frame select 'Oracle JBO Reference' link and
you can drill down further.
best regards
raghu
John Ritz (guest) wrote:
: Were can I find more detailed documentation for the classes in
: the 'oracle.*' packages? I'm specifically interested in how to
: use the classes in 'oracle.jdeveloper.servlet.*'
: and 'oracle.jdeveloper.html.*' packages. Some classes have a
: JavaDoc file but with little content, others have no
: documentation at all. Also Is the source code available for the
: classes in the oracle packages? Thanks for your help.
null

Similar Messages

  • Drill down into a report

    Hi!
    I've been working on a report to be able to drill down into another "detailed" one, and I was able to do it but not exactly the way i needed.
    I created an action link for the column values, but my problem is that for EVERY value, i always drill into the same exact report, and my idea is to drill into the same report for all of them, but with different parameters for each one
    Example:
    Sales representative revenue
    John 230K
    Mark 100K
    Martin 500K
    I've set a drill down for the revenue column, but all 3 values are obviously drilling into the same exact report, and I want to set it in a way I can tell the sub report "give me the detail report but only for the corresponding sales representative"
    If i click on 230K, I want to see the "detailed report" only for John's oppties. If i click on 500K, I want to see the "detailed report" only for Martin's oppties. And so on...
    That's the whole deal. I don't know how to do that.
    Thanks for your help,
    Martin

    Hi, thanks for your answer
    I'm navigating from a master to a detailed report, and i have already set the attribute as "is prompted" but Its not enough. Let me try to explain why
    Lets say I have this example report:
    Prompts: Primary position
    Table:
    Primary position | forecast
    John | 768687
    Paul | 200000
    George | 923882
    then I drill down on "Paul" to the next position level, so the report changes to something like this:
    Primary position | secondary position | forecast
    Paul | Jane | 100000
    Paul | Martin | 100000
    So, now... I want to drill into Martin's 100.000 forecast (drill into a detailed report) and despite I have the primary position set as "is prompted", I have no prompts for second, third, or n-position... So If I drill down from martin's 100000 forecast, I will only be able to pass the primary to the detailed report, and It will only be able to show Paul's 200000 forecast details
    I want the detailed report to pull Paul for primary, Martin for secondary, and show only the detailed report for that 100000 forecast value
    That's the issue
    I hope I was clear enough
    Thanks,
    Martin

  • Drill-down into AWR reports

    Hi experts,
    any can help me in this topic Drill-down into AWR reports.

    A typical AWR report - produced in html format- includes its main categories(for example Top 5 timed events) hyperlinked. By clicking on each one , you can navigate to a thorough analysis of all db parameters regarding it......
    Anyway....Can you more specific of what exactly do you want...?????
    Greetings...
    Sim

  • Drill down into va22

    It's a drill down into va22, I've done it the standard way, but
    it fails:
    set parameter id 'AUN' field t_tab-vbeln.
    call transaction 'VA22' and skip first screen.
    The set parameter executes okay, and if you F1, F9 on the
    quotation field in va22 it says the parameter id is AUN.
    However, it doesnt appear that it is AUN. If you set that
    parameter id to '123' and then go to va22, it's still got the
    last quote you used. If you then go to VA03, it's got '123' in
    the order field.
    I can only assume that sap's incorrectly reporting that AUN is
    the parameter ID for VA22, would anyone know what it actually
    is?

    Hi,
    AUN is displayed because this is specified in the data dictionary for
    the used data element.
    When defininte a dynpro field, based on this data element, the parameter
    id AUN is proposed.
    However, in the PBO of the dynpro, the actual Parameter id AGN is used.
    Cheers,
    Chaitanya.

  • How to drill down into specfic row?

    I am new to this website and to APEX, I have a question about having a report and when clicking on a row, it drill down to a page which only shows the row data about the clicked row.
    Would be grateful if you tell me how to do that? I really need to know that..

    Hi,
    first i would create a master table and afterwords a detail table incl. foreign key (i.e. dept, emp). And then create a master detail form as i mentioned before. Further i recommend the documentation '2 Day + Developer's Guide' - see http://www.oracle.com/technetwork/developer-tools/apex/documentation/index.html
    Regards,
    Martin

  • Drill down into another query

    hi,
    Right now using report to report interface  I am able to drill into other queries .but I need to do a right click and go to the subsequent query.
    My customer wants to go to the subsequent query with one click on the data.
    Is there any possibility to achieve this?
    Edited by: venkat s on Dec 26, 2007 1:07 PM

    LOL...i cant stop laughing.
    Venkat,
    Going from one query to another is really a simple 2 step process. I think you need to convince the user that he/she has to give burden to his fingers and click twice.
    This exercise is not possible with single click.

  • ABAP objects, drilling down into methods/parameter/method/parameter...

    Hello all,
    When creating or changing purchase orders using the enjoy transactions ME21N and ME22N, I want to force the users to have the same delivery address on every line item. I have found and activated the BADI ME_PROCESS_PO_CUST. I have added some code in method CHECK and put a breakpoint on that code. The transaction is stopping on my breakpoint. So far so good.
    Parameter IM_HEADER is of type IF_PURCHASE_ORDER_MM,
    that has method GET_ITEMS,
    that has parameter RE_ITEMS that is a table of  of type PURCHASE_ORDER_ITEMS,
    method GET_DATA
    with parameter RE_DATA
    with fields ADRNR &  ADRN2
    From inside of the method CHECK of BADI, what syntax do I need to create an internal table of the line item fields that are in parameter RE_DATA of method GET_DATA?  I am just starting to work with ABAP objects.  Any help would be greatly appreciated.
    Thanks
    Bruce

    Uwe,  thanks for the quick response.
    Your solution,
    DATA: lt_items      TYPE purchase_order_items,
               ls_item       TYPE purchase_order_item.
    CALL METHOD im_header->get_items
       receiving
         re_items = lt_items.
    Short version:
      lt_items = im_header->get_items( ).
      LOOP AT lt_items INTO ls_item.
      do something
      ENDLOOP.
    got me very close to the solution.  The table lt_items contain the number of entries corresponding to the actual line items.  But the data element ls_item does not contain the fields I'm expecting from:
    method GET_DATA ,
    parameter RE_DATA,
    type MEPOITEM.
    How do I populate ls_item with the 197 fields from structure MEPOITEM?
    If I knew more about ABAP objects, I'm sure I could easily change the code myself.  But today, I need the generosity of others to help me solve this.
    Thanks
    Bruce

  • How do I create a drill down for my summary data?

    I have 7 fields of summary data with all having a common link called the customer account number.
    I have tried the following steps several time carefully and was unable to get my drill down to work.
    Insert menu > Group and chose the customer account number as my group field
    copy and paste the summary fields to the group header ( which I now have hundreds of GH1)
    Right click on the details section and chose Hide.
    Suppress the Group Footer
    File Menu > Report options and check on Show All Headers on Drill Down.
    I must be missing a step somewhere here.  I end up with no summary fields showing (to drill down into), and the customer account numbers showing.
    Can some check this out for me?

    hi Michael,
    you need a group to have drill down. you can't drill down on a report footer. if you can't group by these categories then you can't have drill down.
    your other option is to create an on demand subreport that you can open. i would suggest that you go through a bunch of the e-learning tutorials on crystal reports here. after that go to the online help for crystal reports and use the search tab and search for "creating an on demand subreport"
    you'd need to create an on demand subreport for each total that you are showing. again, please see the elearning topics especially on subreports, grouping. and then do follow the steps on on demand subreports in the online help.
    -jamie

  • How to reset drill-down column-chart based on map-chart?

    Hi guys,
    I'm facing pritty common issue while designing one of my dashboards.  Let me describe a little bit  more:
    1. I have some data extracted from BW using Query as WebService into my Xcelsius spreadsheet.
    2. I have map-chart - regions for some country.
    3. I have a drill-down column-chart, which displays data for a selected region.
    At the beginning column-chart displays results for entire country (which, in fact, is not exactly drill-down). The issue I'm fasing is, that in case I select any region and the data is drilled-down into my column-chart, I have no option to show data for the entire county in the column-chart anymore (the only one way is to restart the report).
    Are there any possible way to do this, or am I doing a design error while displaying data, which is not drilled-down, into a chart which is intended to display drill-down data only?
    Any help would be highly appreciated.
    Thanks in advance.
    Ivaylo Mutafchiev
    Varna Business Services
    Project Manager BOBJ

    Ivaylo Mutafchiev,
    I understand your problem now. So your column chart data which is coming from the QAAWS query should be having a prompt which is bound to some cell in excel. and your map might be passing the values for prompt isn't it? in your case the map might be passing a region.
    All you need to do is put the prompt in the web service for region as a optional prompt. Now pull in a check box or a Push button(name it as reset or something.). while binding the data to the check box or push button (source data) bind it to a blank cell. when user clicks on it , it passes a blank vlaue to the region(this is ur input for region) which will inturn makes the prompt optional for the region web service. which should pull all the data for all the region.
    The whole idea lies in somehow passing a blank cell to your  web service whose region prompt is optional.
    Thanks,
    Karthik

  • GL Account drill down crashing in 8.8

    Forum,
    In 8.8 PL17 when in the Chart of accounts screen, if any user tries to drill down into the account balance they get the following message:
    System Message
    (-100) Anything but a memory problem.
    This was not an issue on 2005 for this particular data set. Has anything changed with 8.8 due to the introduction of the archive function, or is it a computer resource issue?
    Regards,
    Juan

    Hi Juan,
    Gordon is right, there is some data integrity problem that is making the code go in loops. This can happen when users work directly on queries, or some bad data entered in user defined fields or perhaps power failure etc may have crash ms database problems, or it could even be sap b1 bug.
    Please contact your partner who in turn will contact sap and perhaps sap will dial in to fix the problem on work on your system directly.
    Hopefully you have recent database backup you can use, but then you may lose lot of production data. Hopefully it is not your production server.
    In anycase, go customer partner portal and open a medium severity defect or high if that is your postiion.
    Take it from there.
    Goodluck.

  • How to setup the drill down on union report

    Hi,
    I'm setting the union report.
    I want to set the drill down to another report.
    But I can't setup it.
    Would you please tell me how to setup.
    Thank you.

    Hi Hemlatha
    In Crystal Reports, to prevent the ability to drill down into a subreport when published on the Web, add a text object that is filled with blank spaces, created by pressing the 'Space Bar' and 'Enter' for line returns, to eclipse the subreport.
    This workaround is applicable only to subreports that does not grow in size. For example, subreports that display only a chart or graph.
    Steps to Add a Text Object over a Subreport
    1. In the Crystal Reports Designer of the main report, insert a text object over the subreport.
    2. Resize the text object to be the same size or a little larger than the subreport object on the main report.
    3. Fill the text object with blank spaces created by pressing the 'Space Bar' and 'Enter'. This is necessary because resizing a text object without
    the blank spaces will not maintain its size when it has been published on the Web.
    ====================
    NOTE:
    You can format the text object with a hyperlink to another report, another file or a URL.
    ====================
    Now, when the Crystal report is previewed on the Web, the text object that fully eclipses the subreport will prevent the ability to drill down into it.
    Regards
    Girish

  • Viewing reports with Drill Down option

    Hi all, here is the complaint that we received:
    Please try to find a means to help!
    When I’m in my Report and when in an account and I go to a deal to alter or look at it, when I return to reports I always am driven back to the top of the report file. If I’m in December and looking at the entire year I have to go through all accounts once again to get to the same starting point. A great irritant. I can’t help but think that there is a better way.
    Anyone know if this can be changed? Thank you in advance!!!

    Sorry, let me explain...
    The problem isn't with the report, they have issues with what happens after you drill down into the account from the report and go back to the report.
    When they go back to the report after adjusting the account/opp it doesn;t go back to what they were looking at, the view will go to the top of the report. Say they were looking at Account #100 out of 250 (250 total accounts in the report), if they drill down into account 100 and then go back to the report they will be taken back to account #1.
    Is that more clear?
    What they want is to be able to go back to the view of Account #100.

  • Diplaying matrix with drill down (toggle visibility) enabled for 4 row groups

    Hello,
    I have a matrix in SSRS 2012 with 4 row groups representing a product hierarchy.   Product Sub Group, Product, Sub Product and Account Number are the levels of the hierarchy.  I have enabled drill down (toggle item visibility) on the first
    3 of these levels. 
    This works great, but my matrix is very wide when it is first rendered.  Ideally I want my matrix to expand horizontally as I expand/drill down into each grouping.  So when the report is first rendered, and 3 of the groups are invisible, the
    matrix will be thin.  Is this possible?
    Thanks,
    Gabe

    Hi Gabe,
    Based on my test, it cannot achieved in SQL Server Reporting Services (SSRS).
    We can hide these column contents in matrix, however, we cannot hide the space in the report. In this situation, I recommend you use table to display these data.
    Alternative, we can add a drill-down in the column group to hide the column group when it is first rendered. Please refer to the following screenshot:
    If you have any questions, please feel free to let me know.
    Regards,
    Alisa Tang
    Alisa Tang
    TechNet Community Support

  • Trial Balance - Details with Drill Down

    Hello Experts,
    I know that SAP has a default Crystal Report for Balance Sheet , P&L which gives us a summary of accounts. Is there anyway i can drill down into the details for each account balance using this report. Is there a default report that i am requesting? How about creating Subreport using default report and link to the summary report? Please advise.

    Hi Praneeth.....
    Creating SubReport may create problem.
    I guess you have to make your own query.
    But Option for subreport is also not bad but it creates problem sometimes to execute the report.......
    Regards,
    Rahul

  • REPORT PAINTER DRILL DOWN REPORT

    Hi,
    i need to develop report painter report with drill down for cost elments and month wise
    out should be cost elements and all months
    Please suggest how to use drill down
    Thanks and Regards
      RAVi

    Along these same lines. I have a user that cannot drill down into a drill down report. Let me clarify. This  report does have drill down capability as some people can drill down into it but others cannot. If a user has authorization to run a report via GRR3. When they click on an item to drill down they do not get an authorization error statement, all they get is a statment that says "list contains no data". Any ideas why some can drill down and some can't? Thanks
    Mark

Maybe you are looking for

  • How to temporally link layers in prem cs5?

    Hi I have a complicated project and for various reasons the producer has asked me to drop in a extra gfx making my framing all off.. so I need to simple move a section of the project to the left, but I need to move near 20 layers and have them all mo

  • Setting bind variable for a view object from the Managed Bean

    Hi, i am using JDeveloper 11g, i have to create LOV in the JSF. To show the LOV, it has to populate data using View object and its query parameter need to be sent from the Managed Bean. For the View object i want to set the bind variable parameter fr

  • Lightroom Backup problem

    Lightroom does not backup my catalog.  I think I move Backup folder to the wrong place.  It does not give me the Backup dialog when I exit.  This is how I set it up to Back up. Where should the Backup file be located for Lightroom to find it and back

  • Rsync script - ignore some files, include others?

    I am using an rsync script to backup files from one Mac to another. I have the "--ignore-existing" flag set to avoid copying files that haven't changed. However, there are certain files that I ALWAYS want to sync, regardless of whether or not they've

  • Multiple HP97 print cartridge failures

    I have an HP Deskjet 6940 printer that has problems with  three color cartridges.  Pointing my web browser to the printer, the status is "Color ink cartridge has failed."   All are genuine HP97s that have never been refilled.  I admit that they may b