CREATE OR REPLACE PACKAGE PUBLIC_VIEW_SEC_UTIL AS /* This function is used to check whether the first non blank space character is comma. It is designed for security check*/ function followbyComma ( p_string in varchar2, pos in number) return number; /* This function is used to check whether p_string is a valid String */ function role_name_check(p_string in VARCHAR2) return VARCHAR2; END PUBLIC_VIEW_SEC_UTIL; /