Conferência de Caixa - MD (issue 9150)

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@70803 d1611594-4594-4d17-8e1d-87c2c4800839
master
alberto 2017-06-28 23:14:38 +00:00
parent 655adafc21
commit db76c29479
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
declare
dup_val_on_index exception;
pragma exception_init (dup_val_on_index , -00001);
begin
execute immediate 'Insert into FUNCION_SISTEMA (FUNCIONSISTEMA_ID,SISTEMA_ID,NOMBFUNCION,DESCRUTA,ACTIVO,
FECMODIF,USUARIO_ID) values (FUNCION_SISTEMA_SEQ.NEXTVAL, 1,''ADM > CATALOGOS >> CONTAS MD'',
''COM.RJCONSULTORES.ADMINISTRACION.GUI.CATALOGOS.CONTASMD'',1,SYSDATE,-1)';
exception when dup_val_on_index then null;
end;