Tabs in Oracle [message #82922] |
Thu, 17 July 2003 14:45 |
Divya
Messages: 12 Registered: March 2002
|
Junior Member |
|
|
Hello,
I have this assignment at work. Unfortunately I didn't learn how to do forms in College. If you know how to do tabs in Oracle, please let me know how to do it.
Thanks
Divya
This is my 1st assignment at work.
The screens in GMIS that would need tabs on the new "Main Subgrant Screen".
Application New
Review: Budget/Funding Plans
Review: Special Conditions
Review: Scores
Review: Review Process and Recommendations
Award: Commitment
Admin Tracking Screens
Adjust: Subgrant/Budget
Adjust: History
Monitor: All Items (just call it "Monitoring"; Batelle made several duplicate screens that are not needed)
Financial Status: Qtr Fin Rpt Processing
Financial STatus: Position Summaries
Project Log
Close/Liquidate
View: Award
|
|
|
Re: Tabs in Oracle [message #82925 is a reply to message #82922] |
Thu, 17 July 2003 21:53 |
Shailender Mehta
Messages: 49 Registered: June 2003
|
Member |
|
|
To create Tab pages you will ned to :-
1) Create a Canvas
2) Set the Canvas Type property = TAB
3) Create different Tabs under the Canvas
You can write a trigger WHEN-TAB-PAGE-CHANGED to handle different menus associated with the Tab's.
Trigger :- When-Tab-Page-Changed
---------------------------------
declare
cn_id canvas;
tab_page varchar2(10);
begin
cn_id := find_canvas('MENU1');
tab_page := get_canvas_property (cn_id
,topmost_tab_page);
Message ('Tab Page = ' || tab_page);
end;
|
|
|
Re: [message #82938 is a reply to message #82925] |
Fri, 18 July 2003 09:48 |
Divya
Messages: 12 Registered: March 2002
|
Junior Member |
|
|
I did exactly what you told me to do. Is that all I need to do for tabs?
Thanks
|
|
|