Doubt in menus [message #142499] |
Fri, 14 October 2005 22:51 |
selvakumar_82
Messages: 138 Registered: October 2005 Location: chennai
|
Senior Member |
|
|
Hi ,
In my custom menu ,
i have 3 menus ,
consider x,y,z.
In x menu i have 4 menu items, and y menu i have 3 menu items,
So i can disable and enable particular menu items based on my privillages,
coding is :
set_menu_item_property('menu_name.itemname', enabled, property_false');
But in Z menu i dont have any menu items ,
i want to know , how to disable the particular MENU
|
|
|
Re: Doubt in menus [message #142505 is a reply to message #142499] |
Fri, 14 October 2005 23:40 |
naveednt
Messages: 34 Registered: October 2005 Location: Karachi, Pakistan
|
Member |
|
|
there is another menu in your menu module, and that is MAIN MENU in which all the X, Y and Z menus reside
use...
SET_MENU_ITEM_PROPERTY('MAINMENU_NAME.Z_MENU', ENABLED, PROPERTY_FALSE);
|
|
|
Re: Doubt in menus [message #142523 is a reply to message #142505] |
Sat, 15 October 2005 01:05 |
selvakumar_82
Messages: 138 Registered: October 2005 Location: chennai
|
Senior Member |
|
|
ok man , thanx ,i got it and one more doubt is:
i want to run, pl/sql coding in oracle database,
after creating procedure succefully, how to run or how to see the output,
|
|
|
Re: Doubt in menus [message #142531 is a reply to message #142523] |
Sat, 15 October 2005 02:34 |
naveednt
Messages: 34 Registered: October 2005 Location: Karachi, Pakistan
|
Member |
|
|
SQL > execute proc_name([argument1, ...])
OR
begin
proc_name([argument1, ...]);
end;
----
what type output are you asking about ...
if u r asking about output generated by dbms_output.put_line, on sql*plus u have 2 run 'set serveroutput on'
|
|
|
|
|