DBA Data[Home] [Help]

APPS.WFA_HTML_UTIL dependencies on WF_CORE

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 143: wf_core.raise('WFNTF_ACCESS_KEY');

139: end if;
140:
141: l_username := Wf_Notification.AccessCheck(wfsession);
142: if (l_username is null) then
143: wf_core.raise('WFNTF_ACCESS_KEY');
144: end if;
145:
146: end if;
147: l_username := upper(l_username);

Line 199: l_message := wf_core.translate ('WFPREF_LOV');

195: htp.formText(cname=>'h_fvalues', csize=>len,
196: cmaxlength=>len, cvalue=>dvalue);
197: else
198:
199: l_message := wf_core.translate ('WFPREF_LOV');
200:
201: htp.formhidden ('h_fvalues', dvalue);
202:
203: -- add LOV here: Note:bottom is name of frame.

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 273: wf_core.newline||

269:
270: begin
271: -- Create hidden field and select list
272: template := htf.formHidden('h_fnames', name||'#LOOKUP#'||format)||
273: wf_core.newline||
274: htf.formSelectOpen('h_fvalues');
275:
276:
277: -- Add all lookups to select list

Line 280: template := template||wf_core.newline||

276:
277: -- Add all lookups to select list
278: for i in lookup_codes(format) loop
279: if (i.lookup_code = value) then
280: template := template||wf_core.newline||
281: htf.formSelectOption(i.meaning, 'SELECTED','VALUE="'||i.lookup_code||'"');
282: else
283: template := template||wf_core.newline||
284: htf.formSelectOption(i.meaning,null,'VALUE="'||i.lookup_code||'"');

Line 283: template := template||wf_core.newline||

279: if (i.lookup_code = value) then
280: template := template||wf_core.newline||
281: htf.formSelectOption(i.meaning, 'SELECTED','VALUE="'||i.lookup_code||'"');
282: else
283: template := template||wf_core.newline||
284: htf.formSelectOption(i.meaning,null,'VALUE="'||i.lookup_code||'"');
285: end if;
286: end loop;
287: template := template||wf_core.newline||htf.formSelectClose;

Line 287: template := template||wf_core.newline||htf.formSelectClose;

283: template := template||wf_core.newline||
284: htf.formSelectOption(i.meaning,null,'VALUE="'||i.lookup_code||'"');
285: end if;
286: end loop;
287: template := template||wf_core.newline||htf.formSelectClose;
288:
289: if (not submit) then
290: -- Draw a normal field
291: htp.tableData(template, 'left', cattributes=>'id=""');

Line 298: htp.p(''||wf_core.newline||template||'');

294: else
295: -- Draw a submit-style field for the result.
296: -- Leave TableData open so reassign button can be added to same cell.
297:
298: htp.p(''||wf_core.newline||template||'');
299:
300: htp.p('');
301: wfa_html.create_reg_button ('javascript:document.WFNOTRESP.submit()',
302: wf_core.translate ('SUBMIT'),

Line 302: wf_core.translate ('SUBMIT'),

298: htp.p(''||wf_core.newline||template||'');
299:
300: htp.p('');
301: wfa_html.create_reg_button ('javascript:document.WFNOTRESP.submit()',
302: wf_core.translate ('SUBMIT'),
303: wfa_html.image_loc,
304: null,
305: wf_core.translate ('SUBMIT'));
306:

Line 305: wf_core.translate ('SUBMIT'));

301: wfa_html.create_reg_button ('javascript:document.WFNOTRESP.submit()',
302: wf_core.translate ('SUBMIT'),
303: wfa_html.image_loc,
304: null,
305: wf_core.translate ('SUBMIT'));
306:
307: htp.p('');
308:
309:

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