First Commit - Source Code from Reply
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
|
||||
-- eseguire come utente MNP
|
||||
|
||||
-- inserimento nuovi profili per DBCGO
|
||||
|
||||
insert into MNP_PROFILI_UTENTE(CODICE_PROFILO, PROFILO, CODICE_DOMINIO)
|
||||
values ('GD','DCO-DG','GO');
|
||||
|
||||
-- inserimento nuove funzionalità per DBCGO
|
||||
|
||||
insert into MNP_FUNZIONALITA_GUI(ID_PROG, FUNZIONALITA, COMANDO_FUNZ, JSP_NAME, CODICE_DOMINIO)
|
||||
values (35,'DBCGO Gestione della movimentazione delle richieste Donor','DBCGO_DON_MOVEMENT','DBCGO','GO');
|
||||
|
||||
insert into MNP_FUNZIONALITA_GUI(ID_PROG, FUNZIONALITA, COMANDO_FUNZ, JSP_NAME, CODICE_DOMINIO)
|
||||
values (36,'DBCGO Gestione della movimentazione delle richieste Recipient','DBCGO_REC_MOVEMENT','DBCGO','GO');
|
||||
|
||||
-- inserimento associazione profili - funzionalità per DBCGO
|
||||
|
||||
insert into MNP_PROFILI_FUNZIONALITA(CODICE_PROFILO, ID_PROG)
|
||||
values ('GD',31);
|
||||
|
||||
insert into MNP_PROFILI_FUNZIONALITA(CODICE_PROFILO, ID_PROG)
|
||||
values ('GD',32);
|
||||
|
||||
insert into MNP_PROFILI_FUNZIONALITA(CODICE_PROFILO, ID_PROG)
|
||||
values ('GD',33);
|
||||
|
||||
insert into MNP_PROFILI_FUNZIONALITA(CODICE_PROFILO, ID_PROG)
|
||||
values ('GD',34);
|
||||
|
||||
insert into MNP_PROFILI_FUNZIONALITA(CODICE_PROFILO, ID_PROG)
|
||||
values ('GD',35);
|
||||
|
||||
insert into MNP_PROFILI_FUNZIONALITA(CODICE_PROFILO, ID_PROG)
|
||||
values ('GD',36);
|
||||
|
||||
commit;
|
||||
Reference in New Issue
Block a user