CREATE OR REPLACE FUNCTION abcde
(g_gno in varchar)
return varchar is
begin
insert into tablename(gno) values (g_gno);
return 'ok';
end;