DBA Data[Home] [Help]

APPS.ETRM_SEARCH dependencies on OWA_COOKIE

Line 26: v_cookie owa_cookie.cookie;

22: end draw_buttons;
23:
24: procedure draw_tabs
25: is
26: v_cookie owa_cookie.cookie;
27: v_pnav_url varchar2(1024);
28: v_fndnav_url varchar2(1024);
29: begin
30:

Line 31: v_cookie := owa_cookie.get('etrm_pnav_context');

27: v_pnav_url varchar2(1024);
28: v_fndnav_url varchar2(1024);
29: begin
30:
31: v_cookie := owa_cookie.get('etrm_pnav_context');
32: if (v_cookie.num_vals >0) THEN
33: v_pnav_url := 'etrm_pnav.ls_object?'||utl_url.escape(v_cookie.vals(1));
34: else
35: v_pnav_url := 'etrm_pnav.ls_apps';

Line 38: v_cookie := owa_cookie.get('etrm_fndnav_context');

34: else
35: v_pnav_url := 'etrm_pnav.ls_apps';
36: end if;
37:
38: v_cookie := owa_cookie.get('etrm_fndnav_context');
39: if (v_cookie.num_vals >0) THEN
40: v_fndnav_url := 'etrm_fndnav.ls_object?'||utl_url.escape(v_cookie.vals(1));
41: else
42: v_fndnav_url := 'etrm_fndnav.ls_apps';

Line 366: owa_cookie.send('etrm_search_context', v_search);

362: -- This wraps the following packages in an HTTP header
363: owa_util.mime_header('text/html', FALSE);
364:
365: -- Send some value to the target cookie for the next browser call
366: owa_cookie.send('etrm_search_context', v_search);
367:
368: owa_util.http_header_close;
369: uiutil.cabo1;
370: uiutil.cabo2a;