fixed bug #9271 - Alteração de dados a serem exibidos em relatório.

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/BD/FlyWay/trunk@71894 d1611594-4594-4d17-8e1d-87c2c4800839
master
thiago 2017-07-25 22:23:23 +00:00
parent 209ade21bf
commit a2e732ce73
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
declare
dup_val_on_index exception;
pragma exception_init (dup_val_on_index , -00001);
begin
execute immediate 'Insert into MOTIVO_CANCELACION (MOTIVOCANCELACION_ID,DESCMOTIVO,TIPOMOTIVO,EQUIVALENCIAELEKTRA_ID,EQUIVALENCIA_ID,ACTIVO,FECMODIF,USUARIO_ID,TXTRELATORIO) values (''38'',''SOLICITACAO ESTORNO'',''B'',null,null,''1'',SYSDATE,''1'',''SOLICITACAO ESTORNO'')';
exception when dup_val_on_index then null;
end;