DBA Data[Home] [Help]

APPS.ETRM_FNDNAV dependencies on OWA_COOKIE

Line 95: v_cookie owa_cookie.cookie;

91: end draw_buttons;
92:
93: procedure draw_tabs
94: is
95: v_cookie owa_cookie.cookie;
96: v_pnav_url varchar2(1024);
97: v_search_url varchar2(1024);
98: begin
99:

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

96: v_pnav_url varchar2(1024);
97: v_search_url varchar2(1024);
98: begin
99:
100: v_cookie := owa_cookie.get('etrm_pnav_context');
101: if (v_cookie.num_vals >0) THEN
102: v_pnav_url := 'etrm_pnav.ls_object?'||utl_url.escape(v_cookie.vals(1));
103: else
104: v_pnav_url := 'etrm_pnav.ls_apps';

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

103: else
104: v_pnav_url := 'etrm_pnav.ls_apps';
105: end if;
106:
107: v_cookie := owa_cookie.get('etrm_search_context');
108: if (v_cookie.num_vals >0) THEN
109: v_search_url := 'etrm_search.search?c_search='||utl_url.escape(v_cookie.vals(1));
110: else
111: v_search_url := 'etrm_search.search';

Line 1774: owa_cookie.send('etrm_fndnav_context', v_context);

1770: -- This wraps the following packages in an HTTP header
1771: owa_util.mime_header('text/html', FALSE);
1772:
1773: -- Send some value to the target cookie for the next browser call
1774: owa_cookie.send('etrm_fndnav_context', v_context);
1775:
1776: -- Note: The following would cause the target cookie to expire
1777: -- owa_cookie.remove('etrm_fndnav_context');
1778:

Line 1777: -- owa_cookie.remove('etrm_fndnav_context');

1773: -- Send some value to the target cookie for the next browser call
1774: owa_cookie.send('etrm_fndnav_context', v_context);
1775:
1776: -- Note: The following would cause the target cookie to expire
1777: -- owa_cookie.remove('etrm_fndnav_context');
1778:
1779: owa_util.http_header_close;
1780:
1781: if (c_type not in ('TABLE', 'VIEW', 'CONCURRENT', 'LOOKUP', 'FILE', 'EVENT', '%', '*')) then