DBA Data[Home] [Help]

PACKAGE: APPS.FND_CSS_PKG

Source


1 package FND_CSS_PKG AUTHID CURRENT_USER as
2 /* $Header: afcsss.pls 115.1 2003/11/10 22:06:33 dehu noship $ */
3 
4 --
5 -- Encode
6 --   Substitutes the occurence of special characters like <, >, ', ", &
7 --   with their html codes in any arbitrary string.
8 -- IN
9 --   some_text - text to be substituted
10 -- RETURN
11 --   substituted text
12 
13 function Encode(some_text in varchar2)
14 return varchar2;
15 
16 end FND_CSS_PKG;