DBA Data[Home] [Help]

APPS.ICX_PORTLET dependencies on ICX_PORTLET_CUSTOMIZATIONS

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 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: