DBA Data[Home] [Help]

APPS.WFA_HTML_UTIL dependencies on HTP

Line 29: htp.tableRowOpen;

25: if (value is null) then
26: return;
27: end if;
28:
29: htp.tableRowOpen;
30:
31: -- Include description if needed.
32: -- NOTE: Description are printed here instead of in the prompt link
33: -- as for other fields, because the prompt is already used for the

Line 36: htp.tableData(description, 'right', cattributes=>'id=""');

32: -- NOTE: Description are printed here instead of in the prompt link
33: -- as for other fields, because the prompt is already used for the
34: -- URL itself.
35: if (description is not null) then
36: htp.tableData(description, 'right', cattributes=>'id=""');
37: else
38: htp.tableData(htf.br, cattributes=>'id=""');
39: end if;
40:

Line 38: htp.tableData(htf.br, cattributes=>'id=""');

34: -- URL itself.
35: if (description is not null) then
36: htp.tableData(description, 'right', cattributes=>'id=""');
37: else
38: htp.tableData(htf.br, cattributes=>'id=""');
39: end if;
40:
41: -- Print URL
42: urlstring:=wf_notification.GetURLText(value, nid);

Line 46: htp.p(' '||urlstring||'');

42: urlstring:=wf_notification.GetURLText(value, nid);
43:
44: -- Bug 4634849
45: urlstring := wfa_html.encode_url(urlstring);
46: htp.p(' '||urlstring||'');
47:
48: htp.tableRowClose;
49:
50: exception

Line 48: htp.tableRowClose;

44: -- Bug 4634849
45: urlstring := wfa_html.encode_url(urlstring);
46: htp.p(' '||urlstring||'');
47:
48: htp.tableRowClose;
49:
50: exception
51: when others then
52: wf_core.context('Wfa_Html_Util', 'GetUrl', value, description, to_char(nid));