DBA Data[Home] [Help]

APPS.ICX_PORTLET dependencies on ICX_PORTLET

Line 1: package body ICX_PORTLET as

1: package body ICX_PORTLET as
2: /* $Header: ICXPUTIB.pls 120.0 2005/10/07 12:17:48 gjimenez noship $ */
3:
4: procedure responsibilities(p_portlet_id in number,
5: p_responsibilities out NOCOPY icx_portlet.responsibilityTable) is

Line 5: p_responsibilities out NOCOPY icx_portlet.responsibilityTable) is

1: package body ICX_PORTLET as
2: /* $Header: ICXPUTIB.pls 120.0 2005/10/07 12:17:48 gjimenez noship $ */
3:
4: procedure responsibilities(p_portlet_id in number,
5: p_responsibilities out NOCOPY icx_portlet.responsibilityTable) is
6:
7: l_counter pls_integer;
8: l_security_group_name varchar2(80);
9:

Line 83: l_gen_redirect_url := ICX_PORTLET.SSORedirect(l_urlrequested,l_urlcancel);

79: fnd_profile.get_specific(name_z => 'APPS_PORTAL',
80: val_z => l_urlcancel,
81: defined_z => l_defined );
82:
83: l_gen_redirect_url := ICX_PORTLET.SSORedirect(l_urlrequested,l_urlcancel);
84: owa_util.redirect_url(l_gen_redirect_url);
85: end if;
86:
87: return l_session_id;

Line 170: l_url := icx_portlet.createExecLink(p_application_id => p_application_id,

166:
167: begin
168:
169: -- 2758891 nlbarlow
170: l_url := icx_portlet.createExecLink(p_application_id => p_application_id,
171: p_responsibility_id => p_responsibility_id,
172: p_security_group_id => p_security_group_id,
173: p_function_id => p_function_id,
174: p_parameters => p_parameters,

Line 249: l_link := ICX_PORTLET.createBookmarkLink(p_text,

245: l_link varchar2(4000) := null;
246: begin
247:
248: -- Get the normal bookmark link
249: l_link := ICX_PORTLET.createBookmarkLink(p_text,
250: p_application_id,
251: p_responsibility_id,
252: p_security_group_id,
253: p_function_id,

Line 282: update icx_portlet_customizations

278: into l_user_id
279: from fnd_user
280: where user_name = p_user_name;
281:
282: update icx_portlet_customizations
283: set caching_key = TO_CHAR(TO_NUMBER(NVL(caching_key, '0')) + 1)
284: where user_id = l_user_id;
285:
286: end;

Line 300: update icx_portlet_customizations

296: into l_function_id
297: from fnd_form_functions
298: where function_name = p_function_name;
299:
300: update icx_portlet_customizations
301: set caching_key = TO_CHAR(TO_NUMBER(NVL(caching_key, '0')) + 1)
302: where function_id = l_function_id;
303:
304: end;

Line 324: update icx_portlet_customizations

320: into l_function_id
321: from fnd_form_functions
322: where function_name = p_function_name;
323:
324: update icx_portlet_customizations
325: set caching_key = TO_CHAR(TO_NUMBER(NVL(caching_key, '0')) + 1)
326: where function_id = l_function_id
327: and user_id = l_user_id;
328:

Line 342: update icx_portlet_customizations

338: where user_name = p_user_name;
339:
340: l_caching_key_value := p_caching_key_value;
341:
342: update icx_portlet_customizations
343: set caching_key = l_caching_key_value
344: where user_id = l_user_id;
345:
346: end;

Line 362: update icx_portlet_customizations

358: where function_name = p_function_name;
359:
360: l_caching_key_value := p_caching_key_value;
361:
362: update icx_portlet_customizations
363: set caching_key = l_caching_key_value
364: where function_id = l_function_id;
365:
366: end;

Line 389: update icx_portlet_customizations

385: where function_name = p_function_name;
386:
387: l_caching_key_value := p_caching_key_value;
388:
389: update icx_portlet_customizations
390: set caching_key = l_caching_key_value
391: where function_id = l_function_id
392: and user_id = l_user_id;
393:

Line 405: update icx_portlet_customizations

401: begin
402:
403: l_caching_key_value := p_caching_key_value;
404:
405: update icx_portlet_customizations
406: set caching_key = l_caching_key_value
407: where reference_path = l_reference_path;
408:
409: end;

Line 480: l_RFlink := icx_portlet.createExecLink

476: RAISE e_bad_parameters;
477:
478: END;
479:
480: l_RFlink := icx_portlet.createExecLink
481: (p_application_id => l_application_id,
482: p_responsibility_id => l_responsibility_id,
483: p_security_group_id => l_security_group_id,
484: p_function_id => l_function_id,

Line 553: from icx_portlet_customizations

549: cachingKey varchar2(55);
550: begin
551:
552: select caching_key into cachingKey
553: from icx_portlet_customizations
554: where reference_path = p_reference_path;
555:
556: return cachingKey;
557:

Line 610: l_listener_token := ICX_PORTLET.listener_token;

606: ELSE
607: l_urlcancel:=p_cancel_url;
608: END IF;
609:
610: l_listener_token := ICX_PORTLET.listener_token;
611: l_call := dbms_sql.open_cursor;
612:
613: l_procedure_call := ':l_gen_redirect_url := wwsec_sso_enabler.generate_redirect'||
614: '(p_lsnr_token => :l_listener_token'||

Line 638: end ICX_PORTLET;

634: RETURN l_gen_redirect_url;
635: END;
636:
637:
638: end ICX_PORTLET;