DBA Data[Home] [Help]

APPS.WF_EVENT_HTML dependencies on OWA_COOKIE

Line 208: cookie owa_cookie.cookie;

204: admin_role varchar2(320); -- Role for admin mode
205:
206: c pls_integer;
207: c2 pls_integer;
208: cookie owa_cookie.cookie;
209: l_name varchar2(240);
210: l_display_name varchar2(80);
211: l_type varchar2(8);
212: l_status varchar2(8);

Line 241: cookie := owa_cookie.get('WF_EVENT_COOKIE');

237:
238: -- try to get the values from cookie if nothing is set
239: if (resetcookie='F' and l_name is null and l_display_name is null and
240: l_type = '*' and l_status = '*') then
241: cookie := owa_cookie.get('WF_EVENT_COOKIE');
242:
243: -- ignore if more than one value was set
244: if (cookie.num_vals = 1) then
245: c := instr(cookie.vals(1), ':');

Line 273: owa_cookie.send('WF_EVENT_COOKIE',

269:
270: -- set cookie
271: else
272: owa_util.mime_header('text/html', FALSE);
273: owa_cookie.send('WF_EVENT_COOKIE',
274: l_name||':'||
275: l_display_name||':'||
276: l_type||':'||
277: l_status);

Line 441: cookie owa_cookie.cookie;

437: l_localsys raw(16);
438:
439: c pls_integer;
440: c2 pls_integer;
441: cookie owa_cookie.cookie;
442: l_name varchar2(30);
443: l_display_name varchar2(80);
444:
445: begin

Line 485: cookie := owa_cookie.get('WF_SYSTEM_COOKIE');

481:
482: -- try to get the values from cookie if nothing is set
483: if (resetcookie='F' and l_mguid is null and l_name is null and
484: l_display_name is null) then
485: cookie := owa_cookie.get('WF_SYSTEM_COOKIE');
486:
487: -- ignore if more than one value was set
488: if (cookie.num_vals = 1) then
489: c := instr(cookie.vals(1), ':');

Line 511: owa_cookie.send('WF_SYSTEM_COOKIE',

507:
508: -- set cookie
509: else
510: owa_util.mime_header('text/html', FALSE);
511: owa_cookie.send('WF_SYSTEM_COOKIE',
512: rawtohex(l_mguid)||':'||
513: l_name||':'||
514: l_display_name);
515: owa_util.http_header_close;

Line 711: cookie owa_cookie.cookie;

707: prev_sname varchar2(80); -- previous system name
708:
709: c pls_integer;
710: c2 pls_integer;
711: cookie owa_cookie.cookie;
712:
713: l_name varchar2(30);
714: l_protocol varchar2(30);
715: l_address varchar2(240);

Line 752: cookie := owa_cookie.get('WF_AGENT_COOKIE');

748:
749: -- try to get the values from cookie if nothing is set
750: if (resetcookie='F' and l_sguid is null and l_name is null and
751: l_protocol is null and l_direction = '*' and l_status = '*') then
752: cookie := owa_cookie.get('WF_AGENT_COOKIE');
753:
754: -- ignore if more than one value was set
755: if (cookie.num_vals = 1) then
756: c := instr(cookie.vals(1), ':');

Line 799: owa_cookie.send('WF_AGENT_COOKIE',

795:
796: -- set cookie
797: else
798: owa_util.mime_header('text/html', FALSE);
799: owa_cookie.send('WF_AGENT_COOKIE',
800: rawtohex(l_sguid)||':'||
801: l_name||':'||
802: l_protocol||':'||
803: l_address||':'||

Line 1046: cookie owa_cookie.cookie;

1042: prev_eguid raw(16); -- previous event guid
1043:
1044: c pls_integer;
1045: c2 pls_integer;
1046: cookie owa_cookie.cookie;
1047: l_source_type varchar2(8);
1048: l_status varchar2(8);
1049:
1050: begin

Line 1082: cookie := owa_cookie.get('WF_SUBSCRIPTION_COOKIE');

1078:
1079: -- try to get the values from cookie if nothing is set
1080: if (resetcookie='F' and l_eguid is null and l_sguid is null and
1081: l_source_type = '*' and l_status = '*') then
1082: cookie := owa_cookie.get('WF_SUBSCRIPTION_COOKIE');
1083:
1084: -- ignore if more than one value was set
1085: if (cookie.num_vals = 1) then
1086: c := instr(cookie.vals(1), ':');

Line 1115: owa_cookie.send('WF_SUBSCRIPTION_COOKIE',

1111:
1112: -- set cookie to event and system guid
1113: else
1114: owa_util.mime_header('text/html', FALSE);
1115: owa_cookie.send('WF_SUBSCRIPTION_COOKIE',
1116: rawtohex(l_eguid)||':'||
1117: rawtohex(l_sguid)||':'||
1118: l_source_type||':'||
1119: l_status);