DBA Data[Home] [Help]

PACKAGE BODY: APPS.ICX_SIG

Source


1 PACKAGE BODY icx_sig AS
2 /* $Header: ICXSESIB.pls 120.1 2005/10/07 14:25:17 gjimenez noship $ */
3 
4 procedure logo Is
5 begin
6         htp.img(curl => '/OA_MEDIA/FNDLOGOS.gif',
7                 cattributes => 'BORDER=0');
8 end;
9 
10 function logo return varchar2 is
11 begin
12         return htf.img(curl => '/OA_MEDIA/FNDLOGOS.gif',
13                        cattributes => 'BORDER=0');
14 end;
15 
16 function background return varchar2 is
17 begin
18 	return '/OA_MEDIA/ICXBCKGR.jpg';
19 end;
20 
21 procedure footer is
22 begin
23 /*
24 	htp.address('Please send any questions or comments to '
25              ||htf.mailto('[email protected]','[email protected]'));
26 */
27 	htp.bodyClose;
28 end;
29 
30 function footer return varchar2 is
31 begin
32 	return	htf.line;
33 /*
34 		||
35 		htf.address('Please send any questions or comments to '||
36 		htf.mailto('[email protected]','[email protected]'));
37 */
38 
39 end;
40 
41 end icx_sig;