DBA Data[Home] [Help]

TYPE BODY: APPS.ICXUI_API_BUTTON

Source


1 type body icxui_api_button as
2 /* $Header: ICXBUTB.pls 115.1 1999/11/01 17:22:36 pkm ship      $ */
3 
4 static function create_button
5 (
6     p_button_name     in varchar2 default null,
7     p_button_url      in varchar2 default null
8 )
9 return icxui_api_button
10 is
11 begin
12 
13     return icxui_api_button(p_button_name, p_button_url);
14 
15 end create_button;
16 
17 end;