Blame | Last modification | View Log | Download | RSS feed
create or replace procedure ABILITAZIONE_UTENTE_COMUNE(user_name varchar2,codicebelfiore varchar2) is
id_ente NUMBER;
begin
-- ricavo id_ente
select d.id into id_ente from ws_enti d where d.codice_belfiore_ente = codicebelfiore;
-- inserisco l'abilitazione
insert into ws_cross_enti_utenti values(user_name,id_ente);
commit;
exception
when others then
dbms_output.put_line('ERR INS utente '|| sqlcode ||' '||sqlerrm);
rollback;
end ABILITAZIONE_UTENTE_COMUNE;
/