Two tab pages

I have two tab canvas canvas_tab and canvas_mod with two tab pages .
At when-tab-page-changed trigger code is
DECLARE
     tp_nm VARCHAR2(30);
     tp_id TAB_PAGE;
     tp_lb VARCHAR2(30);
BEGIN
     tp_nm := GET_CANVAS_PROPERTY('canvas_tab', topmost_tab_page);
     tp_id := FIND_TAB_PAGE(tp_nm);
     tp_lb := GET_TAB_PAGE_PROPERTY(tp_id, label);
     IF tp_lb LIKE 'VIEW' THEN
          go_item('BLOCK2.mem_cd');
     elsif tp_lb like '%MEMBER VIEW%' then
          go_item('mem_query.lib_memship_no');
     ELSE
          null;
     END IF;
     tp_nm := GET_CANVAS_PROPERTY('canvas_mod', topmost_tab_page);
     tp_id := FIND_TAB_PAGE(tp_nm);
     tp_lb := GET_TAB_PAGE_PROPERTY(tp_id, label);
if tp_lb like 'Modify' then
          go_item('block5.mem_cd');
     elsif tp_lb like 'Semister Change' then
          go_item('block4.course_id');
else
null;
end if;
END;
How to navigate to particular tab canvas before navigating to particular page?

hi anil,
How to navigate to particular tab canvas before navigating to particular page?
can you explain the propblem properly.
you can simply go to any canvas by sending the cursor to any item on that canvas.
regards
SIS

Similar Messages

  • Tab pages in oracle forms

    hi ,
    I have two different Content Canvases in oracle form 6i and my requirement is such that i need to have these two
    content canvases in tab canvas pages.
    can Any one please tell me how i have to join these two content canvases in two tab pages.
    since i don't have idea about forms.
    if any one could give coding for these issue it would be nice.
    say one canvas name a and another canvas name b and i have pages namely taba and tabb
    now i have to write trigger for tab canvas pages . if any one suggest any idea i could implement it.
    once it is ready i would be implement in oracle apps as well .
    other informations are.
    it have one window
    iam using oracle form 6i,
    help me in this regard .

    say one canvas name a and another canvas name b and i have pages namely taba and tabb
    now i have to write trigger for tab canvas pages . if any one suggest any idea i could implement it.
    once it is ready i would be implement in oracle apps as well .
    HI , Your Logic is okay.
    What you have to do is,
    Open your existing from
    In Canvas - Create New canvas with Type 'TAB'
    And Create Two Tap Page - A & B.
    select existing each items in existing canvas and select main canvas and TAP page -A or B
    Once completed you can run your form as like before without any coding changes,
    Regarding your question for TAB trigger code, generally you do not need any code as it is auto select.. by mouse.
    CHeck and reply back with you further queries

  • FRM-41837 Error raising tab page

    Hi,
    I've got a problem with my form. I have four tab pages but in some cases I need to hide two tabs and save the information of the other tabs , when I try to save the data in my enabled tab pages I'm getting the error: FRM-41837 Error raising tab page
    Can somebody help me please?
    Thanks in advance.

    Hi Sarah,
    Here's the deal, I have four tab pages and I need to hide two tab pages because of one or more conditions, the thing is I need to save tha data in my available tabs, I checked the code and I don't have any go_block or go_item sentence in my triggers that could be affecting but I'm gonna check the code again maybe is something else =(
    Thanks a lot for your comments

  • Nested Tab Pages in 100% Generated Forms

    Hi all,
    Creating a Forms (9i) application, hopefully to be 100% Designer 9.0.2.6 generated. Trying to find out if it is possible to generate nested tab pages.
    eg.
    example table structure
    Employee
    |-Employee history
    |-Employee skills
    | |--Employee skills history
    | |--Employee skills details
    |-Employee time bookings
    In this case, employee is the Master table with a tab section for the detail - three tabs for history, skills and time booking. On the skills tab page, I want to use skills as a master table and then have history and details as two tab pages on another tab section within the whole skills tab page.
    Is this scenario possible in a 100% generated form?
    Thanks,
    Michael.

    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

  • 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...

  • Forms 9i tab pages inside a tab page

    hi,
    i m using forms 9i, is it possible to set a tab page inside a tab page
    ie i have a master tab page called 'Office' and i have to add two tab pages
    called 'excel', 'word' as the sub of this main tab..is it possible.......?
    if yes how ?
    thanks in advance
    KK

    You can create the illusion of this though using stacked and tabbed canvases. Make the main tab small so that it only displays the labels and then display the other stacked or tabbed canvases dependent upon which tab the user selects. We've done something similar to this and it works pretty well.

  • Tab page error

    Hello
    I have a sales forms , having 3 tab pages,,
    First is sale master form which save the sales information in sale table
    Second is product master form which save the product information against the sale # (sales # from the first tab page…) in the product table
    Third this sites master form which sale the site information against the sale # on the site table
    Now when I fetch the record , first two tab pages work fine, but when I click on the third tab page it give me a error
    FRM-40106: N0 navigable items in destincation block
    Before that error it is work fine
    What is the reason for that error, and how I fit it

    If the items on the third tab page are display only, or have properties set such that no entry is possible, you may have to create a "dummy" item on that tab page that is visible and has length and width set to 0. That way control can go there.
    Gary

  • Tab Page Navigation Issue

    I've two tab page tab1 and tab2.
    tab2 contains three tab page tabA,tabB and tabC.
    In tab1 i've a commadButton.
    Now, if i click on this commandButton then i want to go into tabB which is inside of tab2.
    Please give any idea how can i navigate in tab2

    Hi puthanampatti,
    Thanks for your reply.
    Here sdi3 means showDetailItem3. I've tried but one error is raised.
    Error is : identifier sdi3 not found.
    My java code is:
    public String showTab() {
    sdi3.setDisclosed(Boolean.TRUE);
    AdfFacesContext.getCurrentInstance().addPartialTarget(sdi3);
    return null;
    i've a showDetailItem(Tab Page) which id is sdi3.
    But error raised.
    How to write it and solve it?

  • Firefox 12 is very slow to load pages and if two tabs are opening it lags.

    Firefox 12 is very slow to load pages and if two tabs are opening it lags. I've tried everything (e.g virus, defrag, I've created a new profile in "run", etc). I've had my router/line etc all checked and after 2 weeks of cleaning/testing etc its all pointing to Firefox as the problem. Please help as it's driving me nuts.

    I have the exact same problem.
    Not only does it load pages very slowly, sometimes the page will stop for a good 45 seconds and stop loading, only to finish it much later.
    Something is wrong with Firefox 12, it shouldn't be this slow.
    How is that each version is progressively worse than the one before it?.
    Stop releasing so many versions Mozilla, release one that works and build from there.

  • How do you stop the welcome to firefox 4 screen from coming up every time I open firefox? I get two tabs, one the welcome window, then my home page. How do you stop the bloody welcome screen?

    How do you stop the welcome to firefox 4 screen from coming up every time I open firefox? I get two tabs, one the welcome window, then my home page. How do you stop the bloody welcome screen?

    Its not my home page, Like I said, I hae my home page also come up in a different tab (google) I also get the welcome to FF4 on a seperate tab. My home page is set to google. But I dont want the welcome screen to pop up

  • My portal page will contain two tabs

    Hi,
    I want to do a POC as described below.
    My portal page will contain two tabs say " Hello 1" and "Hello 2 "
    when I will click on " Hello 1" ,It will open an URL iView and for " Hello 2" it will be an MDM Resultset iView.
    Is it possible to create a Page which will have Tabs ?
    Plz share your experience.

    Not without coding your own portal component. Tab navigation is through portal role definition.

  • Problem: Two Tab Sets for one page

    Hello everyone. I have two tab sets and each tab set has one common tab, for example an "About" tab that redirects the user to page 25 when clicked. The tab set works perfectly for the first tab set but when I'm in the second tab set and I click "About" the other tabs change to the first tab set.
    Does anyone know how to solve this problem without having to create multiple "About" pages?

    Hi Nithya,
    My requirement is to have two main windows in the same page. For each line item it is triggering a new page. In the first page both the windows are displayed as expected but in the second page only the first main window (MAIN00) is getting triggered and the second main window (MAIN01) is not triggered.
    Output got :
    page1:
    MAIN00
    a
    MAIN01
    a
    page2:
    MAIN00
    b
    MAIN01
    (blank)
    Expected output:
    page1:
    MAIN00
    a
    MAIN01
    a
    page2:
    MAIN00
    b
    MAIN01
    b

  • I get two tabs with my identical home page every time I open Firefox. How do I "unpin" one of them so that only one tab is populated when I open Firefox?

    When I installed Firefox I inadvertently responded "yes" when asked if I wanted to "pin" my home page to the browser. l also designated that page (my Juno page) as my home page. So now whenever I open Firefox, two tabs appear with my identical home page. How do I fix it so that only one tab appears when I open Firefox?

    Its not my home page, Like I said, I hae my home page also come up in a different tab (google) I also get the welcome to FF4 on a seperate tab. My home page is set to google. But I dont want the welcome screen to pop up

  • After Downloading v8 I keep getting checking compatibilty dialogue box popping up, then Firfox opens two tabs, Meet Mozilla welcome page and my home page. How can I stop this?

    After Downloading v8 I keep getting checking compatibilty dialogue box popping up when I launch Firefox. Then Firfox opens two tabs, Meet Mozilla welcome page and my home page. How can I stop this?

    That is a legitimate Mozilla newsletter. As it says in the email:
    You're receiving this email because you subscribed to receive email newsletters and information from Mozilla. If you do not wish to receive these newsletters, please click the Unsubscribe link below.
    Unsubscribe https://www.mozilla.org/en-US/newsletter/existing/ad9febcf-65ac-41fd-810b-798945f448f3/
    Modify your preferences https://www.mozilla.org/en-US/newsletter/existing/ad9febcf-65ac-41fd-810b-798945f448f3/ "

  • Two tabs for the same page

    Hello,
    I have been spending the whole morning trying to find a solution for this problem but did not find any either by myself or parsing the forum messages.
    I am building an application with a two level tab for the navigation.
    Everything is fine as long as the pages referenced by the tabs have a different number.
    My problem is that i use the same dynamic page (let say 40) to be accessed through two different tabs.
    e.g Parent tab is labelled "Parent"
    Two other tabs are created linked to parent tab "Parent" and those are labelled "Action1" and Action2"
    Selecting "Action1" will result in rendering the page 40 with a parameter (let say page_type) set to the value 1.
    Selecting "Action2" will result in rendering the *same* page 40 with a parameter (let say page_type) set to the value 2.
    For the parent tab "Parent" let say that the default is to select "Action1"
    Is there any solution to implement that kind of behaviour?
    I have tried to create redirecting pages (empty page and a single branch) to achieve this but i always get stucked when trying to have page 40 displaying the proper tabs and parent tab.
    Thanks in advance for any help.
    Daniel

    Hi Andy,
    Thanks for your answer!
    Whilst it is fairly straightforward to create multiple tabs for the same page (this can be done through Shared Components, Tabs and click Add on the standard >>tabs bar, enter in any page number you like), the functionality of tabs does not provide the means to set item values. Additionally, as both tabs would be >>"current" for your page 40, once you've clicked on one, you can not click on the other.Yes this is exactly what i discover once my page 40 has been built.
    There may be ways to do what you need, but as tabs are really there for navigation purposes only, this may become rather complicated. What is the difference >>between Action1 and Action2? Can this be achieved in another way? Have you considered switching to lists for navigation (where you can set item values)?In fact, i can still duplicate this page and have a few changes within each new page. But as a matter of code design as both pages have around half in common, i wanted to share most of the items (build a single page) and then play for a few additional items with conditions encompassing the page type i have set before rendering the page.=> Most items in common, a few others whose display is conditionnal. For the end user, it looks like two different pages because in their business process the "Action1" and "Action2" are clearly different.
    I use lists in this application on the home page to reach most of the application pages but while some users prefer to use the links on the home page and go back to home page, other would like to use the tabs and a number of them use both navigation mechanisms.
    Sorry if it is not quite clear (english is not my mother tongue).
    Regards,
    Daniel

Maybe you are looking for

  • Installing LabView 8.2 runtime engine on Windows 7 64-bit

    We have a product built on LabView 8.2 For a couple of years, we have been distributing this product on Windows 7 64-bit systems with no trouble at all. Today, we received a customer complaint indicating that the LabView 8.2 runtime engine cannot be

  • WebDav suddenly very slow

    Today, WebDav became suddenly very slow on my iMac running the latest version of Mavericks. Yesterday everything was OK. When I try WebDav from my iPad things are OK, so I suspect something is wrong on my iMac. I already tried rebooting and resetting

  • A thought about HD sizes and mimimum disk space needed for OS X

    This has just occurred to me and I am looking for more accurate numbers to help advise posters here, more accurately, when the situation occurs. In this day and age of Macs with 500 Gigabyte and 1-4 Terrabyte drives, do we still need to tell people t

  • Quicktime Screen capture error on start

    I am opening quicktime and wanting to do a "New Screen Recording" and it goes straight to an error then closes the window not being able to adjust the settings within the screen recording. Is there a preference file I can trash to reset the settings?

  • Why can't I open pdfs from a website

    I have pdfs that I used to be able to download or open from a website.  Now I can't do it.  I have Windows 8.1, 64 bit laptop.  Is there a special 64 bit version of Adobe Reader?  If I try to save a pdf, the "save target as" is greyed out in the wind