Several master / details

Hello

IM using jdev 11.1.1.6

Use case: have several masters / vo details with links, my scenario is that I need display the attribute unique to each VO as SOC, by selecting the first SOC SOC of the MasterVO Child1VO should get the refreshed n display... .new when Child1VO SOC is selected then Child2VO SOC should be reflected and so on...
as in the master-detail table

Thank you

Hi i done by dragged the master vo / details from control data such as soc which solved my problem

Tags: Java

Similar Questions

  • Master / detail: several lines in detail are selected default

    Hello world

    I use Jdev 12 c and facing a problem, in a scenario of master / detail, several lines are by default selected in the secondary table, I checked the line selection unique option in the configuration of the table. Please see the snapshot for clarity.

    Attachments.PNG

    Help, please

    Kind regards

    Crusher

    You normally see this problem when the vo or eo is not a primary key defined. Check that each OT and vo should have a defined primary key that is unique for the vo.

    Timo

  • The master/detail Page scroll, Incorrect rendering position

    I think that it is something simple that I am on and I hope that someone will be able to indicate what it is.

    I have a Setup master/detail, how they were created in the packed app go live Checklist for projects (see page 200) mirroring.

    • This means that my page template is a type of master/detail with a classic/region report selector in the master detail region. The classic report is set to not show in the region selector.

    Under it, I have several regions, each game to be included in the region selector.

    UPDATE: My first region on the page has several components display only in it. If I do not show this region then the problem of scrolling stops.

    My problem is when I insert in the page that the page is automatically past the master section, scroll up to the region selector. However I can scroll to top knowledge my master.

    Anyone have an idea what might cause this behavior?

    Hamster wheel engineer wrote:

    I think that it is something simple that I am on and I hope that someone will be able to indicate what it is.

    I have a Setup master/detail, how they were created in the packed app go live Checklist for projects (see page 200) mirroring.

    • This means that my page template is a type of master/detail with a classic/region report selector in the master detail region. The classic report is set to not show in the region selector.

    Under it, I have several regions, each game to be included in the region selector.

    UPDATE: My first region on the page has several components display only in it. If I do not show this region then the problem of scrolling stops.

    My problem is when I insert in the page that the page is automatically past the master section, scroll up to the region selector. However I can scroll to top knowledge my master.

    Anyone have an idea what might cause this behavior?

    The Cursor Focus of page property is set to the first item on the page? If so, change it to don't focus cursor.

  • How to display two dept details at the same time in the form of master-detail

    Hi Experts

    In Forms 6I, using the Scott schema, table DEPT & EMP has created a simple form of master-details relationships.

    Currently when user Dept Block shows all lines dept and EMP block display data based on the selection of deptno.

    It's only a deptno both.

    If the user in the No. 10, block EMP Dept will display all the data related to 10

    If the user moves to 20 Deptno, block EMP will display all the data related to 20.

    And so on.

    But our requirement, what happens if we want to see the 10 and 20 at once (both several deptno)

    Thank you

    Thanks for your information.

    In fact, our requirement is only to display data, he own be no matter what update of data/insertion.

    So below and working for our requirement

    • Remove relationship
    • Additional box on master block.
    • Write code cursor on the box selection - which will fill/clear data block information based on the checkbox selection on block Master.

    Oracle Apps training: how to display two Department employee details at the same time in the master/detail relationship

  • Master detail in bi 11g publisher report

    Hi all

    We use OBIEE 11 g (11.1.1.6).

    How to achieve master-detail or Parent/child relationships in BI Publihser reports. Selectiing or modification of a value in column in the parent report should make the report child/chart etc...
    I understand that this can be done through to join several sets of data in a data model.

    One cannot explain.

    Thank you.

    check the below

    http://www.Oracle.com/WebFolder/technetwork/tutorials/OBE/FMW/bi//BIP/advancedbip/advancedbip.htm#T3

    http://www.YouTube.com/watch?v=NPbKRnSkDVM

    using the rtf template

    http://bipconsulting.blogspot.com/2010/02/drill-down-to-detail-or-another-report.html

  • Master / detail prevent insertion line detail if the master does not exist

    Hello

    I have a complex page that has several pairs of master / detail on it. I have what should be a simple problem to work around that I can't understand. On each table (master or detail), I have a button create header and a delete button in each row. I have a few questions, I can't seem to cross.

    1. how to turn off the details create button if there is no master of the line or one has not been selected by the user? (At the moment you can create detail without a valid master line rows)
    2. how to disable the removal of main line button, if there is (or not) details of current lines?

    I think I only got 2 having a transient attribute on the main line that uses groovy and the accessor to link views to count the detail rows. It seems to work, but if there is a better solution, cleaner I'm all ears. I can't seem to operate 1 little matter what I try.

    Thanks for any help you can provide.

    Hello

    You can use iterator estimatedRowCount to disable the button of

    disabled="#{!(bindings.mastervoIterator.estimatedRowCount ge 0)}"
    

    and use the currentRow determint property if the current row is selected as

    disabled="#{!(bindings.mastervoIterator.currentRow ne null)}"
    

    Thus, the combination will be as follows

    disabled="#{!(bindings.mastervoIterator.estimatedRowCount ge 0 and bindings.mastervoIterator.currentRow ne null)}"
    

    I hope this helps...

    Kind regards.

  • Best structure for a master/detail relationship?

    Hello

    I would like to get some expert advice on the best architecture Oracle 11 g for a fairly simple storage situation: I have a table in a data warehouse with millions of records added every day. Each record can be associated with a (99.9% of the cases) or, more rarely, many under folders (up to 3 or 4).

    (1) the natural relational approach would require a relationship of the master / detail, with a key shared between the two tables. Some questions in the case:
    -Here, what would be the best structure? Because its lines are going to be quite small, the child table should probably be a table index. But consider a cluster?
    -Also what key will be used in the relationship? Master records are never accessible using full table scan, so that they have no primary key or an index. Is it possible to avoid creating a surrogate key only for reasons to join the master and detail tables, for example, by using a rowid any?

    (2) another reasonable approach, it seems, would be to use a nested table structure to store the detail records.
    -Is an interesting solution? It seems that he avoids the need for a surrogate key and looks "natural way" of doing things. But generally people seem not very keen on this feature, perhaps because of the lack of knowledge?
    -In this case, would it still possible to scan detailed records using pure SQL, as you would with a join in case 1?

    (3) although I have not yet studied the pb in detail, it seems that the right tools to populate two tables at the same time external tables would be to use PIPELINE and PL/SQL FORALL constructs, can anyone confirm?

    Thanks for your help,
    Chris

    In an environment of DW, things are generally modeled according to the fact dimension. The fact table would hold everything 'measurable' is a fact (in your case a call). It would be things like the date and time of the call, duration, charges total, possibly local/long distance/overseas etc. The dimension tables would provide additional information to the call and solve research etc. For example, you might have a date dimension which had every day, the year, month, day of the year, quarter, fiscal quarter (in my organization, they differ and we report both for different reasons) etc. You have also a time dimension indicating if the time if the call was during the day, evening, night, etc., depending on how you define them.

    Of course, all of this really depends on the types of questions you want to ask questions about the data you have.

    I'd be inclined to model along the lines of (note I guess anum and bnum are something like departure and destination phone numbers):

    CREATE TABLE calls (
       Call_Id      INTEGER PRIMARY KEY, -- this comes from a sequence
       Anum_key     NUMBER REFERENCES call_numbers,
       Bnum_key     NUMBER REFERENCES call_numbers,
       charging_key NUMBER REFERENCES charging
       Duration     NUMBER,
       charge       NUMBER,
       call_count   NUMBER);
    
    CREATE TABLE call_numbers (
       number_key    INTEGER PRIMARY KEY,
       phone_number  VARCHAR2(50),
       area_code?    VARCHAR2(50),
       country_code? VARCHAR2(50));
    
    CREATE TABLE charging (
       charging_key         INTEGER NOT NULL CHECK (counter BETWEEN 1 AND 19 or counter = -1),
       counter_description  VARCHAR2(50));
    

    with a line of calls for each combination of meter that must be loaded. The ETL code would assing a call unloaded (i.e. your first scenario a charge_key-1), and depending on how you want to count calls, 1 or 0 for call_count. For your second scenario, County of appeal would be 1 for the single record for this call. For the third scenario I would, more or less arbitrarily (i.e., max or min amount/meter) assign 1 in one of the recordings and 0 for the rest (which implies that even if the cost of a call to several counters, it's still only 1 call).
    Thus, in light of your three specimen he would look like:

    calls
    ID   Anum   Bnum   chg   Dur   amount   count
     1      1      2    -1     0        0       1
     2      3      2     1     2      610       1
     3      4      5     1     3      240       1
     4      5      6     6     3      520       0
    
    call_number
    key   number
    1     123456
    2     234567
    3     987655
    4     545678
    5     435467
    6     986234
    
    charging
    key   descr
    -1    Unanswered
     1    Counter 1
     2    Counter 2
     ...
    19    counter 19
    

    So, how many call where there?

    SELECT SUM(call_count) FROM calls WHERE ... 
    

    How much do we chanrge?

    SELECT SUM(charge_amt) FROM calls WHERE ... 
    

    How long they spoke?

    SELECT SUM(duration) FROM calls WHERE call_count = 1 and ... 
    

    How much we took in counter 6:

    SELECT SUM(charge_amt) FROM calls WHERE charging_key = 6 and... 
    

    How long was the 6 meter?

    SELECT SUM(duration) FROM calls WHERE charging_key = 6 and ... 
    

    As I said before, I'm not really fan of tables nested in the columns. :-)

    John

  • Join page master detail

    I am trying to create a master - master - detail page in PHP environment that uses the Assembly between two tables in the same db MySQL.

    The first page (chessmenu.php - chessmenu of the recordset object) displays a list of the types of the Exchequer in a MySQL table called chessmenu in the db of chess:
    The 3 areas are: itemID (auto_increment), itemName (IE. Marble) and itemType (M)
    (NOTE: in this test, there are 3 rows, marble, glass and theme - itemType is my field joining, M, G, and T respectively - which are all unique)

    I want this first page a link to the next page and send the URL = chessboards.php parameter? recordID = <? PHP echo $row_chessmenu ["itemType"];? >

    I created the second page (chessboards.php - chessboards recordset) and let the FILTER in the recordset as follows:
    itemType = recordID URL parameter

    When I run the first page, displays items appropriate, however, when I click on one of these elements (i.e. marble (M)) it does not display anything on the second page. I ran the TEST query on the second page in the recordset of filtering, and when I enter M, it displays the correct records (2 in total).

    They would then select the type of Exchequer of marble of the second page, which would then send them to the details page (3 pages total, so my comment about master, master, detail)

    What I am doing wrong? I send the incorrect URL parameter? Any help would be appreciated. I thought I was following the instructions in the TUTORIAL on this site:
    "If the recordsets is different, make sure the recordset on the detail page contains at least one column in common with the recordset on the master page." The common column is usually the record ID, column, but it can also be the join field from related tables. »

    BTW - the two fields of ItemType in the two Tables are the same (CHAR (1))
    Thank you

    Steve

    UPDATE: I figured out how to do this. Sorry for the useless posting.

    ANSWER: The above worked as is (I forgot to update the front page during the test after some change). To display correctly in the second page, however, DO NOT drag the fields as you would for a detail of the page. As always, the second page is a master page, create a dynamic table instead (this will allow you to have several lines instead of the method). The URL parameter will send the appropriate information to the dynamic table as well.

    See you soon.

  • Delete the Message to save Oracle Forms in a block of master / detail

    Afternoon and Happy Friday people.

    I use Oracle form 6i.

    I have a master-detail block in my form. They both have several records. When I make changes to the block of retail and I navigates to another record of the block Master, he asks me "do you want to save the changes that you have made?" Yes/No/Cancel options. This is the message embedded in Oracle and not our custom save the message. I also noticed that when I say 'Yes' to this message, it does not in the trigger key - Commit who defeated the purpose of having the trigger key validation.

    Now, this message is coming due to a relationship of the master / detail? Also, what trigger I would seek to trap this message?

    Finally, I also noticed that this message (oracle save message) appears after our own custom message when I said 'No' to our personalized Message to register.

    Any help would be appreciated.

    I was wondering why forms brings the Message of the Oracle of inbulit when I'm sailing up to recording the Master block next

    The retail block must be erased when you navigate to another master to "make room" for the details of this new form of Basic. So, if there are changes in the retail block, forms asking the user what should happen with the changes. If you want to manage this situation yourself, put your own code in the WE-CLEAR-DETAIL-trigger before the call to CLEAR_ALL_MASTER_DETAILS;

  • How can I download multiple files in a relationship master detail?

    I would like to be able to download several files to a record (one to many). I tried to use a form master detail, but the form of tables does not support browse file. I searched the forum and found several examples asking how to download multiple files at the same time. This is not what I'm trying to do. I just want the user to browse, select a file, provide a file name and description. Then select the next file. When they are made by selecting the files (it can be one or more files) I want to that they hit the button send and I'll run a procedure that saves files in the database.

    How can I do this? Thanks, you're the best. Elizabeth

    Elizabeth,

    I had this situation come once and here is what I did, thought, may not be exactly what you are looking for.

    I created a collection to store the ID of files that had been transferred, as well as the key, and other information. Her search for an input file will transfer your files in the table wwv_flow_files on submit. I store the documents in another table of the application.

    The after submit process captures the id of wwv_flow_files where the name is = to your input file.

    After you add this ID and your master key associated with the collection, your last submit process retrieves files from wwv_flow_files and inserts them into your own table.

    I put an example on apex.oracle.com if that would be helpful.

    Thank you

    Jeff

  • [ADF, JDev12.1.3] master / detail af:tables the link is handled by ExecuteWithParams: how to create a master report / detail in a loop on the lines?

    Hallo,

    I have a page with 2 legs and they both contains an af:table created by dragging an instance of VO in the user interface.

    The 1st tab uses a master VO while the 2nd uses a VO detail.

    Between 2 your, there is not a link of VO master / detail.

    Opening Details tab I update the secondary table by calling the method ExecuteWithParams of the detail VO instance (in a managed bean).

    I would now like to generate a report that loop on the master table and that, for each line of master:

    • He writes in the report;
    • loops of registration of details (which are based on the master record) and also writes the report.


    Could you kindly suggest me which is the best way to achieve that through a code to write in a managed bean?

    Here I am interested how do to loop through the data, not in how to write the report.

    Thank you

    Federico

    Yes it will affect the selected line. If you want to ignore try using this code

        DCIteratorBinding iter = (DCIteratorBinding) BindingContext.getCurrent().getCurrentBindingsEntry().get("DepartmentsView1Iterator");
        ViewObject vo = iter.getViewObject();
        for (int i = 0; i < vo.getEstimatedRowCount(); i++)
        {
          Row r = vo.getRowAtRangeIndex(i);
          System.out.println("DeptId= " + r.getAttribute("DepartmentId"));
        }
    
  • How to implement the concept master details in table advanced

    Hello

    I implement information master details in advanced table.

    I guess all the data are coming in the secondary table, but below that certain spaces more are coming and showing an image and next to this, there is a text like ""pull down to load ". "

    Can someone help me figure out why this extra space is coming this table below?

    Thank you

    Vijaya

    Is that you can set the value of the below profiles false and try?

    FND_ENABLE_RICH_TABLE_INTERACTIONS

    FND_TOUCH_GESTURES_ENABLED

    Beware that this will affect the gesture of support for touch devices

    Thank you

  • Master-detail - want to filter details VO

    Hello

    I have a master-detail with Show/Hide advanced table table advanced using a link. When the master is questioned (data providers), the secondary table (supplier Sites) returns all rows that is as expected.

    However, I want to further filter the secondary table based on additional parameters of an OAMessageTextInput Bean. I can recover the user entry of the bean of text input, but my problem is that I'm unable to filter the DetailVO.

    Pointers?

    Thank you

    p

    I thought about it. (always the case once you post)

    Blog link below gave me the advice I was looking for and managed to do the work.

    Framework OA Blog: research on the table of master / detail in OFA

    The key is to order

    OAAdvancedTableBean innerTable = (OAAdvancedTableBean) webBean.findChildRecursive ("detailTbl");
    OAInnerDataObjectEnumerator enum1 = new OAInnerDataObjectEnumerator (pageContext, innerTable);

    Browse objects then remove detail that I didn't.

  • Master-detail functionality between the regions of PL/SQL and IR possible?

    4.2.1

    THM 2

    Hi all

    We have two regions in a page. The upper region is a region of PL/SQL that lists the 5 best wages by Dept. This was not done using traditional reports because management wanted a "dashboard" as the look and feel that is already existing and what is happening in that it is a pl/sql block that has the sliders and the necessary HTML, CSS in there.

    Below that is an IR when the user clicks on the dept of region of PL/SQL, it will refresh the IR below to display all employees in this Department

    Top of the page shows region of PL/SQL

    EMP name Dept wage

    Emp1 10 10000

    EMP2 10 950

    Emp3 20 800

    The Dept field is a hyperlink.

    When we click on Dept on this region of PL/SQL

    The lower IR should be updated (without submit page)

    Output

    Emp1 10 10000

    EMP2 10 950

    It is a kind of master-detail relationship between PL/SQL and Report (Detail) (Master) area Interactive

    We can hyperlink in the SQL in pl/sql area, but you wonder how trap line and pass the dept id to the IR and get this region to refresh account?

    All suggestions from the experts?

    Thank you

    Ryan

    It is a way to pass the info in connection

    Perform the dynamic Action of the link column report

    The dynamic action can submit the session state value, and then refresh the IR.

    On either by the way, you must create dynamic PL/SQL region to solve this problem, see this

    APEX reports: layout custom with a column named (model line)

  • Import/Export of master detail Page lose columns on the MRU

    When I export and then import my request, master details page loses column on retail MRU on Version 4.2.3.00.08

    I tried to import and export in the same environment and our development environment to production environment with all the application and just the page and it still loses the columns.

    It's the work insert debug statement

    ...... Rank 1: insert into "SHARED_INFRASTRUCTURE". "" CODE_GROUP_VERSION values ' ('CODE_GROUP_VERSION_ID', 'CODE_GROUP_ID', 'VERSION_NO', 'VALUE_SET_OID', 'DEFINING_ORGNZTN_VERSION_ID', 'REFERENCE_TXT', 'REFERENCE_DSC', 'EFFECTIVE_START_DT', 'EFFECTIVE_END_DT', 'STATUS_CD', 'CREATED_DTS', "CREATED_BY_USER_ID") (: b1,: b2,: b3: b4,: b5,: b6,: b7,: b8,: b9,: b10,: b11,: b12)

    This is the debug statement insert to import and export which does not work properly.

    ...... Rank 1: insert into "SHARED_INFRASTRUCTURE". "" The values CODE_GROUP_VERSION "("CODE_GROUP_VERSION_ID","CODE_GROUP_ID") (: b1,: b2)

    This is resolved.  There are two editable under conditional display reports and he used the second update report.  Changed to a single display report and he picked up the first editable report.

Maybe you are looking for

  • Large movie file?

    When I add a 440 MB MP4 to iDVD, the draft blowing up 2.93 GB.  How can I reduce this size so I can get a handful of these movies on dvd?

  • M 30 freezes during surfing

    I have a 1, 8ghz.when M30 I am on the net, it suddenly freezes, the only thing to do is to turn off the hard way. It happens when I'm listening to web radio and surfing. Anyone whit the same problem or a sulution? Thank youVagn

  • Repair shop wiped the hard drive and gave the wrong version of XP

    I have an Acer Aspire one model ZG5, which came with XP home. While still under warranty, the pad has stopped working and would then start is more upward. I sent it in for repair, they wiped the hard drive and fixed my problems. Except, instead of re

  • Is spell check standard problem with outlook express 6

    I recently bought a new computer with Windows XP. The outlook express6 does not have a spell checker. Is - this issue of standard? The company I bought it off the coast doesn't know. When I open the tab options there is no spelling tab. How to get it

  • Why Microsoft Security Essentials not detect and prevent installation "Vista Anti-Spyware" Trojan?

    I had the ' Vista Anti-Spyware ' Trojan horse to visit a web site. Why Microsoft Security Essentials does not detect the Trojan horse? He diverted Security Essentials and rendered inoperative.