DBA Data[Home] [Help]

APPS.AME_UTIL dependencies on GL_SETS_OF_BOOKS

Line 789: tempName gl_sets_of_books.name%type;

785: raise;
786: return(null);
787: end getServerName;
788: function getSetOfBooksName(setOfBooksIdIn in integer) return varchar2 as
789: tempName gl_sets_of_books.name%type;
790: begin
791: if(setOfBooksIdIn is null) then
792: return(null);
793: end if;

Line 796: from gl_sets_of_books

792: return(null);
793: end if;
794: select name
795: into tempName
796: from gl_sets_of_books
797: where set_of_books_id = setOfBooksIdIn;
798: return(tempName);
799: exception
800: when others then