DBA Data[Home] [Help]

APPS.ETRM_PNAV dependencies on OWA_COOKIE

Line 49: v_cookie owa_cookie.cookie;

45: end draw_buttons;
46:
47: procedure draw_tabs
48: is
49: v_cookie owa_cookie.cookie;
50: v_fndnav_url varchar2(1024);
51: v_search_url varchar2(1024);
52: begin
53:

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

50: v_fndnav_url varchar2(1024);
51: v_search_url varchar2(1024);
52: begin
53:
54: v_cookie := owa_cookie.get('etrm_fndnav_context');
55: if (v_cookie.num_vals >0) THEN
56: v_fndnav_url := 'etrm_fndnav.ls_object?'||utl_url.escape(v_cookie.vals(1));
57: else
58: v_fndnav_url := 'etrm_fndnav.ls_apps';

Line 61: v_cookie := owa_cookie.get('etrm_search_context');

57: else
58: v_fndnav_url := 'etrm_fndnav.ls_apps';
59: end if;
60:
61: v_cookie := owa_cookie.get('etrm_search_context');
62: if (v_cookie.num_vals >0) THEN
63: v_search_url := 'etrm_search.search?c_search='||utl_url.escape(v_cookie.vals(1));
64: else
65: v_search_url := 'etrm_search.search';

Line 2070: owa_cookie.send('etrm_pnav_context', v_context);

2066: -- This wraps the following packages in an HTTP header
2067: owa_util.mime_header('text/html', FALSE);
2068:
2069: -- Send some value to the target cookie for the next browser call
2070: owa_cookie.send('etrm_pnav_context', v_context);
2071:
2072: -- Note: The following would cause the target cookie to expire
2073: -- owa_cookie.remove('etrm_pnav_context');
2074:

Line 2073: -- owa_cookie.remove('etrm_pnav_context');

2069: -- Send some value to the target cookie for the next browser call
2070: owa_cookie.send('etrm_pnav_context', v_context);
2071:
2072: -- Note: The following would cause the target cookie to expire
2073: -- owa_cookie.remove('etrm_pnav_context');
2074:
2075: owa_util.http_header_close;
2076:
2077: if (v_name = '%'