Key Handling in Tab Pages of Form

Dear OTNz
I want to control my tab pages with some HOT keys
For example : I have Five Tab Pages named as FIRST,SECOND,THIRD,FOURTH and FIFTH
now i want to access them with the keys ALT+F,ALT+S,ALT+T,ALT+U and ALT+I rescpectively...
Is there a way in oracle forms to capture key codes and then use them to go to the particular tab page with those keys.
If any body knows ..pls tell me ASAP.i'll be really thankfull.
ALL i want to do is to provide hot keys to my TAB PAGES....
I'll like ORACLE REPORT TEAM to respond me if there is any way to implement this functionality.
THANK YOU.

Hi Qaiser
The best place to ask this question is the Oracle Forms forum. I hope env the "ORACLE REPORT TEAM" will agree with me.
Regards
Sripathy

Similar Messages

  • Tab pages in forms v6i

    I compile forms using v6i. The forms are made with v6 and they have 2 TAB PAGES with the same block and first page is visible but the second page is not navigable with mouse.
    Why doesn't work ? These forms v6 are correct.
    Thank you.

    When you click on a tab, if the cursor is in an item on the first tab page, the second won't come up. You have to move the cursor when the tab page is activated. (I'm not sure, but I have patch 13 installed, and this does not seem to be a problem any more. However my associates with an older version do have your problem.)
    I use a when-tab-page-changed form-level trigger:
    -- When-Tab-Page-Changed form-level trigger                        
    Declare
      new_pg   varchar2(30) := :system.tab_new_page;
    Begin
      If new_pg <> get_item_property(:system.cursor_item,item_tab_page) then
      -- cursor is on a different tab page.  Need to navigate to an item
      -- on the requested tab page.
        If new_pg = 'TAB2' then
          Go_item('B3.NAME');
        else -- TAB1 tab page
          Go_item('B1.KEY_NAME');
        end if;
      end if;
    End;

  • Tab Pages in Form

    I have 2 tables their structure is as follows:
    1- Dept_id, Dept_name
    2- Emp_id, Ename,Sal,mgr,hiredate,Dept_id
    Now i want a Multiple tab page in my form if I click on Sales all the employees working in sales department should be displayed automatically likewise when I click on Accounts tab all the employees working in relevant department should be displayed automatically......how can I achive this ??? any advise or help highly appreciated

    Hello,
    Use the trigger: WHEN-TAB-PAGE-CHANGED to detect which tab you are switching to.
    Then for each tab, change the block property using: SET_BLOCK_PROPERTY built-in and change the property DEFAULT-WHERE to the one that gives you the employees working in sales etc...
    To get that when you enter the tab page, use the built-in EXECUTE_QUERY
    Hope this help

  • What are the shortcut keys for new tab page?

    It looks like the new tab page (Firefox 13, with the
    screenshots of your popular pages in it) is a mouse-only
    feature.
    Is this correct? What are the shortcut keys to access
    the links on the page?
    thanks,
    Patrick

    Hi,
    As of now there aren't (most likely) keyboard shortcuts. Please also see [https://support.mozilla.org/en-US/kb/new-tab-page-show-hide-and-customize-top-sites this] for working with the new tab page.

  • Is it pssible to shift tab pages through forms personalization?

    In oracle apps ,there is a certain form with many tab pages.I want to reorder those tab pages .Last one to come 2 nd in the order etc.Is it possible through forms personalization?
    Thanks

    In oracle apps ,there is a certain form with many tab pages.I want to reorder those tab pages .Last one to come 2 nd in the order etc.Is it possible through forms personalization?
    Thanks

  • F2 Key - List all of the Tab Pages

    Hi, I am trying to make F2 Key work to list all tab pages for client-server forms, but could not. I am not sure the F2 key feature for forms 6i is only for web forms or it works for client-server forms as well. The version of the 6i is:
    Forms [32 Bit] Version 6.0.8.18.3 (Production)
    Oracle8i Enterprise Edition Release 8.1.7.0.0 - Production
    JServer Release 8.1.7.0.0 - Production
    Here is the help from Form builder 6i:
    New ability to list all tab pages
    A new key, called List Tab Pages (corresponding to the F2 key), has been added to the tab canvas functionality.
    If the end users press this key, they are shown a pop-down list of all the tab-page names for that canvas. From this list, they can pick the tab-page that they want to activate.
    This feature is handy in those cases where there are so many tabs for the canvas that not all can appear simultaneously.
    Please help!
    Thanks,
    LL

    I use Forms [32 Bit] Verzia 6.0.8.17.1 (Produkcia) and there is no F2 key. Do you see F2 key if you press CTRL+F1 ?

  • Change the look of Tab Pages

    Hi,
    Is there any way to change the look (but not the
    mechanism) of Tab Pages in Forms?
    If I wanted my own (say) "rounded" tab pages, is there
    any easy way to achieve this?
    Can we get our hands on the Java object that is used
    to create a tab page - if so, it could be altered
    and compiled and linked in as a Java Bean, but how to make
    "normal" text boxes be subordinate to a Java Bean... ?
    Any help appreciated; thanks in advance.
    Mungo Henning

    Mungo,
    unfortunate we don't support PJCs on tab canvases because this is what you would need for the desired change. The other option - as you said - is to create a tab page and add Forms components to it: This requires to spider the Forms Applet at runtime, which I tried to do a while back, but which also truned out to be problematic. So as it seems, adding your own tab canvas is not possible.
    Frank

  • 11g Forms Tab-Page Navigation

    I am using Forms 11g on Solaris.
    A main navigator form opens another form which has a content canvas, tab-page canvas and (3) stacked canvases.
    The problem I am having is with tab-page navigation.     CTRL+TAB ( next ) and CTRL+SHIFT+TAB ( previous )
    As long as I do not initiate navigation from an item on a stacked canvas, navigation is as expected ( between tab pages only ).
    However, navigating from an item within a stacked canvas causes navigation to the parent form.
    Repeating the tab navigation keys from the parent form returns to the called form.
    Note that both key-combinations simply toggle back and forth.
    I have found no documentation on tab-page navigation so any help / insight is greatly appreciated !
    Mike

    Hi Soofi !
    Changing block order in the called form does not affect the navigation between tab pages.
    Note in my question that the resulting undesired navigation is to and from the calling form ( which only has one block ).
    Navigation between items and blocks works as expected.
    To reiterate -
         The only navigation that fails is when I attempt to CTRL+TAB or CTRL+SHIFT+TAB to another tab page from within an item on a stacked canvas.
         Attempting this navigation results in moving the cursor focus to the calling form.
         Repeating the attempt from the calling form moves back to the called form.
         None of your methods mention navigation between forms .
    Thanks for your interest.

  • Querying a Form/Tab Page Change/Applicaiton Items

    Hi,
    I have what I think should be a fairly simple thing to do but am struggling. I have an application item that is set when the user logs on. I have several tabs that open various reports/forms. All I want is that when the user clicks on one tab a form is opened but with a record queried back ready for update with the query being restricted with the value of the application item (application item contains primary key). I have tried setting the default value of the primary key to the application item but no luck. If I manually call the form with primary key column argument:value set in the url the record is queried fine, but you cannot set these items on a tab page change, any help greatly appreciated
    Chris

    Hello
    For each form page you could
    Define an unconditional before header page process or a before-header page computation
    Set the page-item corresponding to the PK of the form's base table to have the value contained in the application item
    Varad

  • 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

  • Portal forms connecting to each other in tabbed page

    Well, here's a challenge...for me anyway.
    If the forms are created and they are published as portlets and in the tabbed page, is there a way to get
    the user to fill out 1 form and be passed automatically to the next?
    I haven't done this before, but am aware of the parameter concept a tad. The page the forms go to can accept parameters and the forms have a common field on each of them > but what is the next step?
    -does this code work better as javascript or pl/sql?
    -where exactly does the parameter passing event occur/get written?
    hope these basic questions are easy for someone....
    thanks in advance.
    mary

    Hello,
    I have just seen your question. I have a very similar question myself (without tabs), but I have no reply yet. In case you have a solution, could you kindly email me ([email protected]). Thank you, Trivan Pal

  • 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

  • Forms personalisation - Vendor Form - How to Disable a Tab Page

    Hi,
    I am not a Forms 6i/9i programmer, although I have an appreciation of the concepts and can look at forms in Form builder. I have been looking at forms personalisation and have used it to execute plsql via the built in 'execute a procedure'. I can also see how to disable blocks, or items, but I haven;t managed to disable a form tab page i.e. On the vendor form there are tabs for GENERAL, CLASSIFICATION etc.
    I have tried using the object type Tab Page, but the poplist doesn;t list any tab pages. Also if you choose Canvas, the list of Canvases appears but generates errors when you try and use the form (complaining of tab page ids).
    I understand that to disable a tab page programatically, you would use SET_TAB_PAGE_PROPERTY i.e. in a forms trigger or in CUSTOM.pll
    I would have thought Forms personalisation could do this.
    Any ideas would be appreciated
    mark
    I under

    What you can do is hiding the tabs (see pic below) and force the active tab programmaticily
    Hope this helps
    Message Edité par TiTou le 09-20-2006 10:35 AM
    When my feet touch the ground each morning the devil thinks "bloody hell... He's up again!"
    Attachments:
    Clipboard01.png ‏151 KB

  • Tab pages on Oracle forms 9.0.4..

    Hi,
    I have a form consist of several tab pages. I do not user to select another tab page without saving the currnent one where they are on. If the user already clicked on another tab, the one clicked tab changes colour. I can force the cursor to go back to the block where they were before, but the prevously clicked tab does not change to the original colour. How do I change the clicked tab back to the unselected tab colour.( if user want to go the tab page even after saving they have to click another tab page in order to go the prevously selected tab page) I would appreciate if any one knows the answer and giving me the details.
    Thanks
    Luksh

    Use
    set_canvas_property('Your_Tab_Canvas', TOPMOST_TAB_PAGE, 'Your_Tab_Page');
    to select a tab and make it the current tab.

  • About forms builder 6i's tab page

    when tab page is changed from one to another which triggers will be fired in order?? (click the topmost Tab Page )
    thanks
    Edited by: user650991 on Apr 16, 2009 6:11 PM

    ok, I find the answer in metalinnk.
    Native Tab Controls in Forms - Tab Pages and Tab Canvases
    Doc ID: 43014.1
    Controlling Canvases in Forms Programmatically
    Doc ID: 73441.1

Maybe you are looking for

  • Music disappeared, and Lossless Ques.

    I have only just downloaded my first album from Itunes. I decided to use Itunes because I noticed I could get my music in Apple Lossless format... I'm against anyone selling albums at below studio format as mp3, aac etc. So I bought and successfully

  • How to know Active or open ports on a system

    How to know he open ports on a system. N e idea. regards, Rajesh Vincent.

  • Hi guys need Help with Displaying Splash Screen?!!?

    Hi Guys. Sorry for the last incomplete post my mistake! I need help displaying a splash screen as an advertisment or something before i have my main application run. Here is the code i wrote (it works as if it were a seperate application) package Maj

  • 0valstckval - not in update rules

    I inserted 0VALSTCKVAL in a communication structure / transfer structure; however, when I link this to an infocube (also containing this InfoObject) then 0VALSTCKVAL is not present in the update rules. Can anyone explain me why not?

  • User profile is not avaliable on the first request to portal.

    Hi, I am having a problem with anonymous user profile. When user come to our portal for the first time: 1) In desktop backing file we will initialize it's anonymous profile. ProfileWrapper userProfile = SessionHelper.getProfile(SessionHelper.getSessi