Master with Detail Tab Pages

I have a master with multi-detail pages. I would like to have the master record appear on the top of each screen and have the user select one of the multi-tab pages to select which detail information they would like to see.
Is this possable with Forms 6i and if so how do I put them together. When I tried to create the form I could see the master and detail together ONLY when I navigated to the detail records.
To carry this a step further is it possable to have Multi-masters each with their own tab and each master have detail tab pages?
Thanks

You could try the following:
Create 1 canvas and place the header items on the top portion. Create another canvas - Tab type and place or create all you tabs with the details on then. Then stack the tab canvas on top of the main header canvas, resize so that the header is visible an that is it.

Similar Messages

  • Bank Details by corporation in Vendor Master Additional Details tab

    Hi,
    What is the use of "Bank Details by corporation" in Vendor Master Additional Details tab.
    How & from where the values are getting updated in these fields.
    Do suggest.
    Regards,

    Hi
    What you are telling in all probablity is an enhancement to std Vendor Master in SAP. There are various BADI which can be implemented to build in as per business requirements in SAP . Some of the BADI available are:
    VENDOR_ADD_DATA_CS
    VENDOR_ADD_DATA
    VENDOR_ADD_DATA_BI
    it is difficult to comment what has been implemented and with what logic. SAP Note 580266 provides details of these BADI. You should also check BADI implementations in SE18 or SE19 with help of your ABAP Colleague,
    Regards
    Sanil Bhandari

  • Vendor Master CIN Details Tab

    Dear All,
    Where will we do the field settings for the fields in Vendor Master CIN Details Tab?
    Points will be awarded.
    Thanks in advance!
    SAP FC

    Hi,
    U want the Cin tab on the vendor master rite.
    It comes on the address screen.
    In the spro under LG -- tax on goods movement---india...
    drop down and u have a place where we give ur user id ... (new entry) gv ur user id and put a star * and save.
    then when u create vendor master now u will get the CIN tab.
    I have no sap so i could not tell u the exact path.
    Thanks & regards,
    Kiran

  • Firefox 13 beta: problems with new-tab page

    I'm using Firefox 13 beta. The new-tab page is an awesome feature, but it does not work well.
    When i'm visiting sites it does not changes. It still like this: http://img195.imageshack.us/img195/2474/56130e74e4b842268628eba.png
    If I restart Firefox, the new-tab page will have some sites, but with no thumbnails, like this: http://img822.imageshack.us/img822/8289/74eadf18095b43a39696159.png
    Sorry for my bad English.

    I deleted the content of the cache folder, and now it seems to work.

  • Canvas with tab page

    i have a content canvas(blockA) with 2 tab pages(tab1 and tab2) on it. each tab has its own block (blockB and blockC, but they are not master-detail, they are populated by cursor). on the content canvas, i have a column such as DEPT. when i key up or key down the dept column,how can i re-populate all items on tab2? I wrote a 'when tag change'trigger. but when i am current on tab2, and i key up/down to change the deptno, how can i refresh the data on tab2 which are associated by deptno?
    thanks

    Key-Up & Key-down triggers did not fire??

  • OAF page with multiple tabs

    Hi,
       We are on R12 and I am new to OAF. I developed an OAF page with 3 tabs in it. tab1 is a simple search section. where user selects search criteria and data will be displayed in a table section. There is a radio button against each resulting row. Tab2 is to display master data and Tab3 is to display/enter detail records.
    The way it works is, when user performs search and  selects a row in the search tab, and clicks on 2nd tab(master tab),  the data gets queried and displayed there and then when user clicks on the 3rd tab(details tab), then it is getting data in the details section also. There is a view link between master and details tabs.
    Now my issue is, say user searched something and chose a record in first tab, and directly clicks on 3rd tab(details tab) without clicking on the master tab, then no records are displayed...meaning the data in details section is not getting queried unless user first clicks on master tab and then detail tab.
    But my requirement is, user can click on detail tab directly after they choose a record in the search results section.
    Can anybody help me with this please....
    Note: I have only one page, one AM, and one controller.
    Thanks.

    Hi Jaya,
        Thanks for your quick response. I am new to OAF. DO you mind giving me the steps please.....
        I did specify action type as "fire partial action" and specified a method and in that method, I am setting the default where clause to get data based on the ID and doing execute query of the details VO. Still it is not working. I am assuming that what you are mentioning is something different. If so , I appreciate if you can give me the steps in detail please...thanks.

  • Master table detail table with SQL based read only VO with bind variables

    i have a page where i am displaying data as master table and detail table. both table VOs are based on SQL queries which use bind variables.
    i have a view link between vos of type 1:M
    i created master table detail table page by dropping detail iterator from data control panel under master and selecting master table detail table
    on my page i see detail table records getting populated only for first record of parent table.
    on changing parent record, child table shows same records and does not refresh
    i am using partial triggers on both tables to be populated on a button click as i need to pass some bind variables to VOs which are taken as input from users
    how can i show corresponding rows in detail table when parent record in table changes
    is it possible declaratively to have master detail table view when both VOs have bind variables
    jdev 11 1 1 5
    these are the SQLs used
    Parent SQL Based VO Query
    SELECT to_char(d.status_date,'yyyymmddhh24') TIME123, count(DISTINCT d.c4)
    FROM t1 d,
    t2 w
    WHERE w.c1 = nvl(:ou, w.c1)
    AND UPPER(w.c2) = UPPER(nvl(:tt, w.c2))
    AND d.c3 >= :startTime AND :startTime IS NOT NULL
    AND d.c3 <= :endTime AND :endTime IS NOT NULL
    AND d.c4 = w.c4
    AND UPPER(d.status) = 'CLOSED'
    GROUP BY to_char(status_date,'yyyymmddhh24') ORDER BY to_char(status_date,'yyyymmddhh24') DESC
    Child SQL Based VO Query
    SELECT w.c1,
    w.c5 - w.c6 processing_time,
    w.c3,
    w.c6,
    w.c7,
    w.c8,
    to_char(d.status_date,'yyyymmddhh24') TIME123 FROM t1 d,
    t2 w
    WHERE w.c2 = nvl(:ou, w.c2)
    AND UPPER(w.c3) = UPPER(nvl(:tt, w.c3))
    AND d.c4 >= :startTime AND :startTime IS NOT NULL
    AND d.c4 <= :endTime AND :endTime IS NOT NULL
    AND d.c1 = w.c1
    AND UPPER(d.status) = 'CLOSED' ORDER BY to_char(status_date,'yyyymmddhh24') DESC
    view link is based on column TIME123

    Instead of doing the master-detail layout by dragging the details over, can you try a new page where you first drag the master VO over and then drag the detail VO over, and then set partialTrigger from the detail to point to the master?

  • Master with two details(child) relation?

    Hi guys,
    I 'd like to have a Form with one master table and two detail tables.
    The business component wizard doesn't allow
    me to create this relation.
    Although these two details table are logically children of the master but have not defined specifically Foreign key for them on table/database level.
    I created Associations via JDev3.1 to join
    these master with details, but still business
    component wizard didn't allow me to have
    one master and two details.
    Do i have to create foreign keys to join children to master on database level or
    I can create an association with JDev? How?
    Thx
    Ali
    null

    You could use "New"/"BC" and create a ViewLink with the same name as the FK Assoc. If you edit the PackageModule, you should be able to see your FK link in there.

  • I loose focus on tab pages with horizontal scroll bar

    Hello
    I am using a form with two tab pages. On the second tab page there is a multirecord block from which the first 5 columns are context (always visible)), the other columns are working with a horizontal scrollbar. When I navigate to another window and come back to the first one, then the context columns are still there, but all the other columns are gone, there is only a big grey space. Any suggestions ? Webforms 10gR1.

    Not sure why that is happening. Are you running the newest JInitiator? What browser are you using?
    Maybe as a workaround, you may have to save the current record before leaving the first form, then when you return to the first form, requery the block and go to the current record. That's assuming, that a requery fixes the problem...

  • Nested Tab Pages

    Hi ,
    Does anyone know how to build a form with nested tab pages ?
    TAB1 TAB2 TAB3
    Is it possible to have tab pages TAB2.1 TAB2.2 TAB2.3
    on TAB2 ?
    Thank you,
    Denise

    Hi Michael,
    Someone correct me if I am wrong on this, but I believe this is not possible. Only stacked item-groups display as nested tabs on a tab page. Master-detail with the details as tabs is not possible on a tab page.
    Regards,
    Michiel Arentsen

  • Execute query for oracle forms tab pages

    Hi Guru's,
    Please help me how to work on execute query with forms tab pages. I have created three tabs like A, B & C in one canvas.
    I have three tables and I have created three tabs in one canvas. And there is no master detail relationship with these three tables.
    I have written the code in form level - when-new-form-instance like do_key('execute_query') but when i see at run time its executing for first tab A not for tab B or tab c.
    How to get the data or execute the data in tab B and tab C.
    Thanks
    RS

    1- create a block blk_1 add items item_1,Item_2 and Item_3.
    2- create main canvas main_canvas. type Content.
    3- create tabcanvas TABCANVAS . Type Tab
    4- Create tabpages tb_1,tb_2 and tb_3.under tabcanvas
    5- create stack1,stack2 and stack3.type stack.
    6- put Item_1,Item_2 and Item_3 under stack1,stack2 and stack3.
    add when tabpage change trigger.
    Declare
    V_TapPage_Name VarChar2(100);
    Begin
    Show_View('TABCANVAS');
    V_TapPage_Name := Get_Canvas_Property('TABCANVAS',TOPMOST_TAB_PAGE);
    If V_TapPage_Name = 'TP_1' Then
    Go_Item('Blk_1.ITEM_1');
    Show_View('STACK1');
    Hide_View('STACK2');
    Hide_View('STACK3');
    ElsIf V_TapPage_Name = 'TP_2' Then
         Go_Item('Blk_1.ITEM_2');
         Show_View('STACK2');
    Hide_View('STACK1');
    Hide_View('STACK3');
    ElsIf V_TapPage_Name = 'TP_3' Then          
         Go_Item('Blk_1.ITEM_3');
         Show_View('STACK3');
    Hide_View('STACK1');
    Hide_View('STACK2');
    End If;
    End;
    Edited by: kingadmin on 20/04/2011 02:15 ص
    Edited by: kingadmin on 20/04/2011 02:16 ص

  • Master table, detail table, detail table not getting refreshed selection

    i have a page where i am displaying data as master table and detail table. both table VOs are based on SQL queries which use bind variables.
    i have a view link between vos of type 1:M
    i created master table detail table page by dropping detail iterator from data control panel under master and selecting master table detail table
    on my page i see detail table records getting populated only for first record of parent table.
    on changing parent record, child table shows same records and does not refresh
    i am using partial triggers on both tables to be populated on a button click as i need to pass some bind variables to VOs which are taken as input from users
    how can i show corresponding rows in detail table when parent record in table changes
    will i have to use table selection listener
    is it possible declaratively to have master detail table view when both VOs have bind variables
    jdev 11 1 1 5

    these are the SQLs used
    Parent SQL Based VO Query
    SELECT to_char(d.status_date,'yyyymmddhh24') TIME123, count(DISTINCT d.c4)
    FROM t1 d,
    t2 w
    WHERE w.c1 = nvl(:ou, w.c1)
    AND UPPER(w.c2) = UPPER(nvl(:tt, w.c2))
    AND d.c3 >= :startTime AND :startTime IS NOT NULL
    AND d.c3 <= :endTime AND :endTime IS NOT NULL
    AND d.c4 = w.c4
    AND UPPER(d.status) = 'CLOSED'
    GROUP BY to_char(status_date,'yyyymmddhh24') ORDER BY to_char(status_date,'yyyymmddhh24') DESC
    Child SQL Based VO Query
    SELECT w.c1,
    w.c5 - w.c6 processing_time,
    w.c3,
    w.c6,
    w.c7,
    w.c8,
    to_char(d.status_date,'yyyymmddhh24') TIME123 FROM t1 d,
    t2 w
    WHERE w.c2 = nvl(:ou, w.c2)
    AND UPPER(w.c3) = UPPER(nvl(:tt, w.c3))
    AND d.c4 >= :startTime AND :startTime IS NOT NULL
    AND d.c4 <= :endTime AND :endTime IS NOT NULL
    AND d.c1 = w.c1
    AND UPPER(d.status) = 'CLOSED' ORDER BY to_char(status_date,'yyyymmddhh24') DESC
    view link is based on column TIME123

  • Problem with Two tab canvases in a form

    Hi Experts,
    I am working on Oracle forms 10g (OS: Windows7) from last 1 year. I have got a requirement to create a form with one tab canvas CAN_TAB (with 2 tab pages) in main page and a pop up tab canvas ASN_SPLIT_TAB(with 2 tab pages). Now the problem is whenever we click on tabs it will fire WHEN-TAB-PAGE-CHANGED trigger and executes the complete code. As a result even if i click a tab page in CAN_TAB canvas it will fire for ASN_SPLIT_CANVAS as well. Check the below code (WHEN-TAB-PAGE-CHANGED). Now i have to differentiate between two tab canvases so that i can use IF-ELSE statement to overcome this problem. Please share your useful comments.
    BEGIN
    Lv_Toppage := Upper(Get_canvas_property('CAN_TAB',Topmost_Tab_page));
      if Lv_Toppage = 'LINES' THEN 
      go_item('shipment_summary.shipment_reference');
      show_view('CAN_LINES');
      show_view('CAN_SCROLL');
      elsif Lv_Toppage = 'ATTRIBUTES' THEN
      go_item('shipment_summary.shipment_reference');
      show_view('CAN_ATT' );
      elsif Lv_Toppage = 'AUDIT' THEN
      go_item('shipment_summary.confirmedby');
      show_view('AUDIT');
      end if;
    Lv_Toppage := Upper(Get_canvas_property('ASN_SPLIT_TAB',Topmost_Tab_page));
      IF Lv_Toppage = 'INVOICE_SPLIT' THEN
      show_view('ASN_SPLIT_STACK');
      go_item('ASN_INBOUND_CATEGORY_SUMMARY.brand_representitive');
      ELSIF Lv_Toppage = 'SUPPLIER' THEN
      go_item('CONTROL.cancel_but');
      END IF;
      hide_view('ASN_SPLIT_STACK');
    END;

    Thanks Craig. You made it happen..!! Below code is working fine for me.
    IF :SYSTEM.tab_new_page = 'LINES' THEN
      go_item('shipment_summary.shipment_reference');
      show_view('CAN_LINES');
      show_view('CAN_SCROLL');
    ELSIF :SYSTEM.tab_new_page = 'ATTRIBUTES' THEN
      go_item('shipment_summary.shipment_reference');
      show_view('CAN_ATT' );
    ELSIF :SYSTEM.tab_new_page = 'INVOICE_SPLIT' THEN
    END IF;

  • Vertical scroll bar on tab page.

    Hello,
    I have to show vertical scrollbar on my tab canvas.
    I have one Content canvas on which I have 1 tab canvas with 8 tab pages.(sec1,sec2,sec3 ..sec8)
    I have another tab canvas(kind of seb section for the above and each has 3 tab pages) like
    Sec1 will have (sub sectiion tab canvas) which has again 3 tab pages 1.1,1.2,1.3 and soon
    now on the third tab page of the sub section or second tab canvas, I need vertical scroll bar to fit number of fields which are more than the tab canvas size.
    all are from the same data block
    Could you please help me. i tried by creating staked canvas but no luck.
    can you please let me know the procedure to be followed
    Thank you in advance.

    Could you please help me. i tried by creating staked canvas but no luck.What happened when you tried to use a stacked canvas?
    If the items in the area you want to scroll are all in the same datablock you can set the Scrollbar properties of the block to be displayed. This will enable scrolling of the items that are within the specific block. If you items are assembled from more than block, then using a stacked canvas is a better option for enabling scrolling within an area.
    Also, what is your Forms version?
    Craig...

  • Customer master Bank details

    Hi,
    In customer master/vendor master bank details tab whose bank details we have to give. customer bank details or our own bank details. Can anyone please tell and what is the use of this tab

    HI,
    In Customer and Vendor Master Bank Details Screen, you need to maintain the respective Bank details of the Customer and Vendor. you need to create Bank key in FI01(Provided by Customer or Vendor) and need to update that Bank key in Customer or Vendor Master.
    Currently we are maintaining Vendor Bank Key in Vendor master data and i have cearted a Query for master data. client will use the Query and check the Bank key (Bank Key Contains Bank Details of the Vendor) makes the payment to the proper Bank account.

Maybe you are looking for

  • Mapping issue: Based on nodes/Context

    Hi Experts... Can someone help me with the below mapping logic? if A_NUM = B_NUM; pass NAME Here is the source structure: ROOT             NODE1                         NODE2                                A_NUM             NODE3                     

  • Wifi says No-Wi-Fi ??

    it doesn't say on or off next to it, it says "No Wi-Fi" i've reset it, restored it, and i still get it. it isn't unlocked or anything. advice?

  • Query to find vendor number with whom a particular item was last purchased.

    Hi All, I want to frame a SQL query to find vendor number with whom a particular item was last purchased. I got to know that we can find this by looking at the open Purchase Order or the Material Transactions for the transaction type of 'PO Receipt'

  • Alert forwarding triggers mail notification

    Hi. I have configured a new product connector to forward alerts from SCOM to JIRA. The connector works fine, but every time I forward an alert to connector using "Forward to" command from alert context menu, it triggers mail notification subscription

  • How to set on block query only

    dear all i want to set on block update,inset,delete as property false, and set query property true, and i want in same time enable to user to set values to execute query on this value. help me plz Message was edited by: Hshihadah