SWR.DO_SQL doesn't work with Report Builder 6.0.5.35.0 and Oracle 7.3.4.
Hello, I'm trying to execute a report and here is my code for that:
function BeforePForm return boolean is
x Varchar2(100);
begin
x:= 'begin ssg$empresa.asigna_empresa(:p_empr); end;';
srw.do_sql(x);
return (TRUE);
EXCEPTION
when SRW.DO_SQL_FAILURE then
srw.message(100,'Error en activacisn de empresa: '||x);
return (FALSE);
end;
Can anyone help me out or can you tell me why my PC is hung when I want to
execute the report?
If my code doesn't take SRW.DO_SQL... then it works perfectly.
Sorry for my English and thanks a lot in advance!