Pls help me any one, ADF Faces EO,VO creation in mutiple table..

problem here:
table1
field1 (pk)
field2 NAME
table2
field1 (pk)
field2 (fk for table1)
field3 NAME
table3
field1 (pk)
field2 (fk for table2)
field3 NAME
Here each table having separate panel tabbed, i want to show table1 of
field2 in third panel tabbed(screen). How i can create EO,VO to show
with success.
When i'm showing the table1 of field2, is not require to do a DML operations.
like this my third screen's adf table
field2(table1) field2(table3) field3(table3)
(showing for
user identify)
Urgent Requirement pls help me.
In case of any query please free to mail @ [email protected]
Thanks & Regards,
Rengaraj
Edited by: user11129216 on May 4, 2009 7:21 AM

Like Frank, I'm not 100% sure I'm understanding your requirement, but here are some observations.
Your three tables look like master/detail/detail, let's say it was Regions->Countries->Locations
So, you would build a RegionsView VO to show the Regions information.
You would build a CountriesView VO to show the Countries information.
You would build a LocationsView VO to show the Locations information.
Then you would create a view link between RegionsView and CountriesView to coordinate that master/detail relationship.
Then you would create a view link between CountriesView and LocationsView to coordinate that master/detail relationship.
All of the above will be created automatically for you if you have foreign keys defined in the database when you use the Create Business Components from Tables wizard. (including the underlying entity objects for your database tables, associations that reflect your foreign key relationships).
If you want LocationsView to show information from its parent, you can include the Country EO as an entity usage in the LocationsView and include the attributes from country that you want to appear in that (join) query. You can repeat to also add the Region EO as an entity usage to join all three.
Then, you would drop RegionsView from the data control palette onto tab1, CountriesView onto tab2, and LocationsView onto tab 3.

Similar Messages

  • My iphone 3gs downgrade 5.0 to 4.33 and unlock with redsnow but network no  help me any one pls

    my iphone 3gs downgrade 5.0 to 4.33 and unlock with redsnow but network no  help me any one pls

    hi
    dear
    ......downgrade is currect   use ireb tinyumberla edit host and itune  no any error

  • Hi pls give me any one update routine, transfer routine scenarios

    hi pls give me any one update routine, transfer routine scenarios for to telling interviews (easy scenario for interviews)

    Hi Venkat,
    Pls chk this nice paper:
    How To… Routines within Transformations
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/6090a621-c170-2910-c1ab-d9203321ee19
    Pls chk this links for samples & Examples:
    http://help.sap.com/saphelp_nw04s/helpdata/en/e3/732c42be6fde2ce10000000a1550b0/content.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/43/c3963dfbde4dede10000000a422035/content.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/43/bcdb7801344defe10000000a422035/content.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/43/bcdc6001344defe10000000a422035/frameset.htm
    Hope this helps,
    Regards
    CSM Reddy

  • Hi..............I Stuk up with a problem in JTree Please, help me any one..

    Hi,
    I created a JTree where the DefaultMutableTreeNode is created at run time and for this node, the leaf items are added dynamically.....Now my problem is, I should get a popup menu when i click on the treenode particularly-----
    * Node1
    -------Node11
    -------Child1
    In this I want a popup only for the Node11 & its child elements if there is any Node2 also i don't want a popup and also for Node1 i don't want, when I am trying this I am getting the Popup to all nodes and child elements, please, help me any one who cross over this problem.............
    Thanks In Advance,
    Regards,
    Sarikakiran

    Firstly, do you know how to detect the right click? (Use a MouseListener.)
    When you receive the MouseEvent for the right-click, you can get the coordinates of the click (i.e. where on the JTree the mouse was clicked).
    You can then use JTree.getPathForLocation to get the path for the clicked node, which is a TreePath object. Use TreePath.getLastPathComponent to find which node was actually clicked on.
    Having determined which node was clicked, you can then make a decision about whether to show a popup menu.

  • I have a hp photosmart B8550 that has stopped printing black. Any help from any one?

    i have a hp photosmart B8550 that has stopped printing black.  I put in a new black cartridge, but still no luck.  i am about ready to trash the unit.  It never has worked well and uses a lot of ink.  Any help from any one?

    Hi sydnoid_615 
    Sorry to hear that you are having this issue and I hope you are otherwise doing well;
    What Operating System?
    If windows Xp or later try this  HP Hardware Diagnostic Utility
    Veriify the printer firware and software up to date  Go Here select your OS and verify 
    How your printer is connected to your computer USB, Wireless, Ethernet ,ETC)
    if networked check the firware of the printer is the latest as well
    Hope it hepls;
    RobertoR
    You can say THANKS by clicking the KUDOS STAR. If my suggestion resolves your issue Mark as a "SOLUTION" this way others can benefit Thanks in Advance!

  • I jailbroke my ipod and its in recovery mode i cant take it out of it and i cant restore becasue i changes host to sariks sever i need help can any one help me

    i cant take it out of it and i cant restore becasue i changes host to sariks sever i need help can any one help me please please i just got my ipod i realy need help

    Sorry, due to the Terms of Use, problems with jailbroken devices can't be discussed here.

  • Need query... help me any one...

    Hi,
    i have the table like this,
    | city | caste | cnt |
    | 1 | 1 | 2 |
    | 1 | 2 | 3 |
    | 2 | 1 | 1 |
    | 2 | 2 | 2 |
    | 3 | 1 | 3 |
    | 3 | 3 | 1 |
    i want to select the top caste which is having the most cnt value for the each city.
    expecting output
    | city | caste | cnt |
    | 1 | 2 | 3 |
    | 2 | 2 | 2 |
    | 3 | 1 | 3 |
    Can you any one help me...?
    Thanks,
    S.Ashokkumar.

    Hi,
    i have tried like this...
    select t.city,t.caste,max(t.cnt) as mm from (
         select city,caste,count(caste) as cnt from city group by city,caste)t
    group by t.city
    order by count(t.city) desc
    it gives the wrong result set.
    Is it correct or not?
    Thanks
    S.Ashokkumar.

  • One ADF Faces submission results in 3 requests being received...

    Hi
    In my current application, whenever I clicked on a ADF Faces commandButton to submit a form, I received 3 requests on the server side.
    Have anyone encountered this issue before?
    This is causing problems with my request-scoped bean which is being created three times. I have a counter within the bean constructor and this behaviour effectively messed it up.
    Thanks for any info.

    Additional info.
    Just found out that the 3 requests received only happens for FireFox.
    IE 6 only receives 1 request.
    Weird ....

  • ADF Faces - issue with Portal and af table

    I wonder if anybody could help me with a problem we are experiencing with running our ADF Faces app inside a portal (NOT Oracle Portal). We are using the af table tag with the rows attribute set as follows:
    <af:table emptyText="No items found"
    rows="10" banding="row"
    bandingInterval="1"
    binding="#{backing_ModuleSearchReg.table1}"
    id="table1"
    var="row">
    What this does is if we have more than 10 rows to display it will display
    a table header that has a label 'Previous 1-10 of nnn' Next 10. However, when you click on 'Next 10' it produces a Javascript error.
    When we run the app outside of the portal we do not get this problem.
    I believe this is related to known issues with JSF and Javascript inside a 'framed' web page. But if anybody help me with this or point me to a resource that can help it would be very much appreciated.
    Many Thanks in advance.
    Chris

    Hi,
    I remember a similar issue with inner frames that should be fixed in JDeveloper 10.1.3.3. The problem was that the ADF Faces JavaScript did not get the correct document root.
    Frank

  • Can any one share the Oracle Reports 6i Developer demo table scripts?

    Hi,
    I have to learn the Report 6i for my office project, I have installed the report 6i developer but I could not get the Demo CD, can any one share the Scripts for table (viz. Stock, stock_history , indcat ) creation and also the insert script for data population or provide the URLs where I can find the same.
    thanking you in advance.
    regards,
    Sham.

    Hi Denis,
    Thanks for the reply, I have the setup for forms and reports 6i, what i was looking is the script to create the tables used in the
    Oracle® Reports Developer
    Building Reports
    Release 6i
    January, 2000
    Part No. A73172-01
    the table names are stocks, indcat etc, generally these demo script come along with the demo CD provided by oracle as i don't have the CD i am looking for these table creation script. if you have these scripts kindly share the same with me.
    regards,
    Sham.

  • Katrina S Pls Help, it's one of those external HD issues

    Hello,
    I noted a dicsussion last night involving external hard disks, and I'm having some problems which definitely fall into this category.
    I've got my external HD storing my iTunes library.
    Yesterday the drive must have disconnected, or changed it's ID, causing iTunes not to be able to locate any of my music.
    Thanks to Katrina S's excellent advice, i permanently assigned the HD it's own drive letter, launched iTunes holding shift prior to it booting, and restored the library. This seemed to work to a degree yesterday, but it only found about 50% of the music on my HD.
    The remaining 50% has an explanation mark next too it, and I don't appear to have any older *.its files from which to boot iTunes.
    What's the best way of having iTunes scan my HD to find and replace the music?
    Do i either rescan, and lose all my playlists, or do I go manually add lot's and lot's of songs?
    Or, (what i'm secretly hoping!) is there a third way.
    If someone could help, i'd be a very happy boy.

    Hey, Jimmythewriggle, I just saw this.
    Did you get it solved?

  • PLS HELP! Any ideas to make editable text on iPad easier for user to access?

    I am finding it difficult to easily allow the user to edit the text to the risks on the below project on ipad? It is easy via click on browser preview, but very fiddly on ipad.
    Does anyone know of any easier ways for the user to edit the text via touch on ipad?
    Thanks!
    https://www.dropbox.com/s/7i2xu9n0pv8qqf2/RISKRADAR%20EDGE_fin.zip

    HI there, your current implementation seems pretty legit to me. I was able to edit the text prety easily the first time, but then when I try to edit the text again, I can't seem to select the text. Not sure if your drag behavior is overriding the input text.

  • URGENT HELP ME ANY ONE

    HI,
    My problem is when i enter kunnr corresponding VBELN will display by using F4.  upto it is comming correctly.
    But if i enter kunnr and vbeln is not related to kunnr in the selection screen it is not showing error. It is displaying report.
    Now my client want Kunnr not related to vbeln enter by enduser it will display error. 'This sales order not related to Customer'.
    How can i achive this.
    PARAMETERS: P_KUNNR TYPE VBAK-KUNNR.
    SELECT-OPTIONS: s_vbeln FOR VBAP-VBELN.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR S_VBELN-LOW.
       PERFORM GET_VALUE.
    FORM GET_VALUE.
    CLEAR s_vbeln.
      SELECT VBELN
      FROM VBAK
      INTO TABLE JTAB
      WHERE KUNNR EQ P_KUNNR.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          RETFIELD        = 'SALES ORDER NUMBER'
          DYNPPROG        = SY-REPID
          DYNPNR          = SY-DYNNR
          DYNPROFIELD     = 'S_VBELN-LOW'
          VALUE_ORG       = 'S'
        TABLES
          VALUE_TAB       = JTAB
        EXCEPTIONS
          PARAMETER_ERROR = 1
          NO_VALUES_FOUND = 2
          OTHERS          = 3.
    *IF SY-SUBRC = 0  .
    *loop at jtab.
      s_vbeln-low = jtab-vbeln.
      append s_vbeln.
    MESSAGE E000(0) WITH 'Enter correct sales order number '.
    endloop.
    endif.
    ENDFORM.

    Hi,
    After the select query check sy-subrc value.
    If it is '0' then write the code for attaching F4 help, else give the error message 'This sales order not related to Customer.'
    PARAMETERS: P_KUNNR TYPE VBAK-KUNNR.
    SELECT-OPTIONS: s_vbeln FOR VBAP-VBELN.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR S_VBELN-LOW.
    PERFORM GET_VALUE.
    FORM GET_VALUE.
    CLEAR s_vbeln.
    SELECT VBELN
    FROM VBAK
    INTO TABLE JTAB
    WHERE KUNNR EQ P_KUNNR.
    if sy-subrc eq 0.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
    RETFIELD = 'SALES ORDER NUMBER'
    DYNPPROG = SY-REPID
    DYNPNR = SY-DYNNR
    DYNPROFIELD = 'S_VBELN-LOW'
    VALUE_ORG = 'S'
    TABLES
    VALUE_TAB = JTAB
    EXCEPTIONS
    PARAMETER_ERROR = 1
    NO_VALUES_FOUND = 2
    OTHERS = 3.
    *IF SY-SUBRC = 0 .
    *loop at jtab.
    s_vbeln-low = jtab-vbeln.
    append s_vbeln.
    MESSAGE E000(0) WITH 'Enter correct sales order number '.
    endloop.
    endif.
    ELSE.
    MESSAGE E000(0) WITH 'This sales order not related to Customer'.
    ENDIF.
    ENDFORM.
    Hope it will help you.
    Reward points if helpful.
    Thanks,
    Parul.

  • Cant get help off any one , too much messing about to get you tube to work what a load of sh...

    why has you tube stopped playing

    You can try basic steps like these in case of issues with web pages:
    Reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Hold down the Shift key and left-click the Reload button
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (Mac)
    Clear the cache and the cookies from websites that cause problems.
    "Clear the Cache":
    *Firefox > Preferences > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox > Preferences > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • G580 Smart Fan Noise PLZ Help me Any One...PLZZZZZZZZZZZZZZzz

    PLZ help me. My lenovo g580 When power on ..Just hearing Noise . Its Smart fan Noise. Plz Help Me Bro...........

    hi Arif664
    Welcome to Lenovo Community Forums!
    You may want to try a software Called speed fan, This gives control to your Fan and also shows Temperature readings.
     Other Lenovo Motherboard have Restrictions for controlling the Fan. But give it a shot If it detected your fan then you're all set. adjust the Fan to your desired speed and fine tune it with the Temp that you're getting
    If the Fan really get too Loud, beyond normal, I would still suggest to call Lenovo Technical Support for Assistance.
    Best Regards
    Solid Cruver.
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

Maybe you are looking for

  • Unable to install iTunes for Windows Vista

    I recieved an apple ipod touch 32g for christmas and am unable to use it because I can not install iTunes. I've tried following all the suggestion on other topics with similar problems. Ive deleted Temp files and tried to install, Uninstalled all app

  • Issue with dialer in 4.4.4 update for z1 compact?

    How to write names or digits it doesnt appear when i hold the buttons?! with regards

  • Applications always transfer even when unchecked in itunes!

    I have 2.2.1 firmware and i've just re-installed itunes hoping this would solve my issue, unfortunately it has not. Even though application sync is turned OFF in itunes applications installed from the iphone not itunes always try and transfer to itun

  • Multiple Persistence Units in persistence.xml

    Hi, in my session bean I want to read data from two ORACLE-database tables, which are located in two ORACLE-schemas (same ORACLE-instance). So I have defined two datasources, one for each schema. Then I defined two persistence-units in my persistence

  • Hyperion 5.5 Windows XP

    I have a lot of old Hyperion Enterprise 5.5 data sitting on a server, but our firm upgraded to 6.4 some time ago. Are the applications from 5.5 compatible with 6.4 and if I setup a new box to hold the 5.5 data is Windows XP pro compatible? Thanks for