Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Invalid set of rows requested, the source data of the report has been...

Hey guys, good evening.
I'm building a page that have several regions, like this:

And this last region called HiSTÓRICO, is a just log, but should have a lot of rows for the entire page, so I decided to paginate, 5 row per view, but when I click on next I receive this:

I've tried a lot of things, since using a dynamic action to when this classic report update I fire a javascript that run an apex.region('historico').refresh(), but the data just gone and the report just return empty, until run a apex.submit() just to load entire screen, but before the update the mensage shows and this bothers me a lot. Any of you know how to solve this?
I'll let the query here, and reference from fields and I'm using Apex 24.1.5:

select ID_HISTORICO,
MENSAGEM,
dbms_lob.getlength(UPLOAD_ARTIGO) as UPLOAD_ARTIGO,
ID_ARTIGO,
TO_CHAR(DATA_REGISTRO, 'DD/MM/YYYY HH24:MI:SS') AS DATA_FORMATADA,
ADMINISTRADOR,
CODIGO
from DAE_HISTORICO_GESTAO_ARTIGO
where :P81_ID_ARTIGO = :P81_ID_GESTAO
order by DATA_FORMATADA desc

Comments
Post Details
Added on Dec 20 2024
2 comments
90 views