DBA Data[Home] [Help]

APPS.WFA_HTML_UTIL dependencies on WFA_HTML_UTIL

Line 1: package body WFA_HTML_UTIL as

1: package body WFA_HTML_UTIL as
2: /* $Header: wfhtmb.pls 120.5.12010000.4 2009/01/14 09:14:16 sudchakr ship $ */
3:
4:
5: --

Line 52: wf_core.context('Wfa_Html_Util', 'GetUrl', value, description, to_char(nid));

48: htp.tableRowClose;
49:
50: exception
51: when others then
52: wf_core.context('Wfa_Html_Util', 'GetUrl', value, description, to_char(nid));
53: raise;
54: end GetUrl;
55:
56: --

Line 243: wf_core.context('Wfa_Html_Util', 'GetField', name, type, format, dvalue);

239: calign=>'Left', cattributes=>'id=""');
240: end if;
241: exception
242: when others then
243: wf_core.context('Wfa_Html_Util', 'GetField', name, type, format, dvalue);
244: raise;
245: end GetField;
246:
247: --

Line 314: wf_core.context('Wfa_Html_Util', 'GetLookup', name, value, format);

310: end if;
311:
312: exception
313: when others then
314: wf_core.context('Wfa_Html_Util', 'GetLookup', name, value, format);
315: raise;
316: end GetLookup;
317:
318: --

Line 350: if (respcnt > wfa_html_util.result_button_threshold) then

346: when no_data_found then
347: return;
348: end;
349:
350: if (respcnt > wfa_html_util.result_button_threshold) then
351: -- If number of responses over threshold use a select list instead.
352: wfa_html_util.GetLookup('RESULT', value, format, TRUE);
353: else
354: -- Use buttons.

Line 352: wfa_html_util.GetLookup('RESULT', value, format, TRUE);

348: end;
349:
350: if (respcnt > wfa_html_util.result_button_threshold) then
351: -- If number of responses over threshold use a select list instead.
352: wfa_html_util.GetLookup('RESULT', value, format, TRUE);
353: else
354: -- Use buttons.
355:
356: -- Add a hidden field for the result field name

Line 379: wf_core.context('Wfa_Html_Util', 'GetButtons', value, format);

375: end if;
376:
377: exception
378: when others then
379: wf_core.context('Wfa_Html_Util', 'GetButtons', value, format);
380: raise;
381: end GetButtons;
382:
383: --

Line 465: wf_core.context('Wfa_Html_Util', 'SetAttribute',

461: end if;
462:
463: exception
464: when others then
465: wf_core.context('Wfa_Html_Util', 'SetAttribute',
466: to_char(nid), attr_name_type, attr_value);
467: raise;
468: end SetAttribute;
469:

Line 497: wf_core.context('Wfa_Html_Util', 'GetLookupMeaning', ltype, lcode);

493: exception
494: when no_data_found then
495: return(lcode);
496: when others then
497: wf_core.context('Wfa_Html_Util', 'GetLookupMeaning', ltype, lcode);
498: raise;
499: end GetLookupMeaning;
500:
501: --

Line 531: wf_core.context('Wfa_Html_Util', 'GetUrlCount', to_char(nid));

527: and MA.TYPE = 'URL';
528:
529: exception
530: when others then
531: wf_core.context('Wfa_Html_Util', 'GetUrlCount', to_char(nid));
532: raise;
533: end GetUrlCount;
534:
535: --

Line 568: wf_core.context('Wfa_Html_Util', 'GetResponseUrl', to_char(nid));

564: return(buf);
565:
566: exception
567: when others then
568: wf_core.context('Wfa_Html_Util', 'GetResponseUrl', to_char(nid));
569: raise;
570: end GetResponseUrl;
571:
572: --

Line 607: value := wfa_html_util.GetLookupMeaning(format, tvalue);

603: elsif (type = 'DATE') then
604: --
605: value := wf_notification_util.GetCalendarDate( wf_notification_util.getCurrentNID() , dvalue, format);
606: elsif (type = 'LOOKUP') then
607: value := wfa_html_util.GetLookupMeaning(format, tvalue);
608: elsif (type = 'URL') then
609: value := tvalue;
610: elsif (type = 'ROLE') then
611: wf_directory.GetRoleInfo(tvalue, value, s0, s0, s0, s0);

Line 621: wf_core.context('Wfa_Html_Util', 'GetDisplayWindow', type, format,

617: return(value);
618:
619: exception
620: when others then
621: wf_core.context('Wfa_Html_Util', 'GetDisplayWindow', type, format,
622: tvalue, to_char(nvalue), to_char(dvalue));
623: raise;
624: end GetDisplayValue;
625:

Line 661: wf_core.context('Wfa_Html_Util', 'GetDenormalizedValues',

657: end;
658:
659: exception
660: when OTHERS then
661: wf_core.context('Wfa_Html_Util', 'GetDenormalizedValues',
662: to_char(nid), langcode);
663: raise;
664: end GetDenormalizedValues;
665:

Line 666: end WFA_HTML_UTIL;

662: to_char(nid), langcode);
663: raise;
664: end GetDenormalizedValues;
665:
666: end WFA_HTML_UTIL;