111: BEGIN
112:
113: select oke_k_funding_sources_s.nextval
114: into l_funding_source_id
115: from dual;
116:
117: return(l_funding_source_id);
118:
119: END get_funding_source_id;
777: start with parent_project_id = x_project_id
778: connect by parent_project_id = prior sub_project_id
779: union all
780: select x_project_id
781: from dual
782: );
783:
784: l_dummy_value VARCHAR2(1) := '?';
785: l_project_id NUMBER;