Good afternoon, everyone,
Our Apex is 24.1 and I use apex_page.get_url to display a modal dialog page via AJAX. The problem is page 2 doesn't clear IG filtering data during each Ajax call even I specified page 2 should clear all caches, did I miss anything obvious? Any suggestions are appreciated
DECLARE
l_app number := v('APP_ID');
l_session number := v('APP_SESSION');
url_hold varchar2(2000);
BEGIN
url_hold:=apex_page.get_url(
p_page => 2,
p_clear_cache => '2'
, p_items => 'P2_SCANNUM'
, p_values => apex_application.g_x01
, p_triggering_element => 'apex.jQuery(''#CART_DATES_ID'')');
htp.prn(url_hold);
END;
