Is it possible to convert a field from an interactive grid in a file browser?. I really need to upload the files according to the rows that a table has configured
select descripcion, alias
from documento_tipo dt
where requerido = 'S'
union all
select dt.descripcion, dt.alias
from documento_tipo_ramo dtr
join documento_tipo dt
on dtr.documento_tipo = dt.id
join cia_riesgo ramo
on dtr.ramo = ramo.id
join riesgo r
on ramo.riesgo = r.id
where r.id = :P15_ID
If you can't, is there any other solution?, thank you.
