Hi all,
In Apex 19.2
Am getting this error from a DA.

This is the code in the DA
declare
l_comision number;
l_prima number;
l_porciento number;
l_tipo_comision varchar2(1);
begin
if to_number(:P33_PRIMA) != 0 AND to_number(:P33_PORC_PRODUCTOR) != 0 then
select tipo_comision into l_tipo_comision from global_organizaciones where organizacion_id = :APP_GET_ORGANIZACION_ID;
l_porciento := :P33_PORC_PRODUCTOR;
IF l_tipo_comision = 'P' THEN
l\_prima := :P33\_PRIMA;
ELSE
l\_prima := :P33\_COMISION;
END IF;
l_comision := (l_prima * l_porciento) / 100;
:P33_COM_PRODUCTOR := to_char(l_comision);
end if;
end;
Thanks for the help on this!
Javier