DBA Data[Home] [Help]

APPS.ORACLEPLUGS dependencies on ICX_PAGES

Line 273: from ICX_PAGES

269: icx_util.getLookups('ICX_REFRESH', l_lookup_codes, l_lookup_meanings);
270:
271: select nvl(REFRESH_RATE,0)
272: into l_selected
273: from ICX_PAGES
274: where USER_ID = icx_sec.g_user_id
275: and PAGE_ID = p_page_id;
276:
277: htp.p('
'||p_refresh||'');

Line 462: from ICX_PAGES

458: if p_page_id is null
459: then
460: select PAGE_ID
461: into l_page_id
462: from ICX_PAGES
463: where USER_ID = icx_sec.g_user_id;
464: else
465: l_page_id := p_page_id;
466: end if;

Line 1360: update ICX_PAGES

1356: BACKGROUND_COLOR = l_background,
1357: COLOR_SCHEME = N
1358: where USER_ID = l_user_id;
1359:
1360: update ICX_PAGES
1361: set REFRESH_RATE = O
1362: where USER_ID = l_user_id
1363: and PAGE_ID = l_page_id;
1364: