DBA Data[Home] [Help]

APPS.WF_ROUTE dependencies on HTF

Line 294: htp.tabledata(htf.formText(cname=>'h_fdocnames',

290: '&p_dest_display_field=top.opener.parent.document.CREATE_RULE.h_fdocnames['||seq||'].value',
291: ' ', '%20')||''''||',500,500)';
292:
293: -- print everything together so ther is no gap.
294: htp.tabledata(htf.formText(cname=>'h_fdocnames',
295: csize=>30,
296: cmaxlength=>240,
297: cvalue=>realname,
298: cattributes=>'id="i_attr'||seq||'"')||

Line 344: template := htf.formHidden('h_fnames', name||'#LOOKUP#'||format)||

340: -- always print the display field as null
341: htp.formHidden('h_fdocnames', '');
342:
343: -- Create hidden field and select list
344: template := htf.formHidden('h_fnames', name||'#LOOKUP#'||format)||
345: wf_core.newline||
346: htf.formSelectOpen('h_fvalues',
347: cattributes=>'id="i_attr'||seq||'"');
348:

Line 346: htf.formSelectOpen('h_fvalues',

342:
343: -- Create hidden field and select list
344: template := htf.formHidden('h_fnames', name||'#LOOKUP#'||format)||
345: wf_core.newline||
346: htf.formSelectOpen('h_fvalues',
347: cattributes=>'id="i_attr'||seq||'"');
348:
349:
350: -- Add all lookups to select list

Line 354: htf.formSelectOption(i.meaning, 'SELECTED');

350: -- Add all lookups to select list
351: for i in lookup_codes(format) loop
352: if (i.lookup_code = value) then
353: template := template||wf_core.newline||
354: htf.formSelectOption(i.meaning, 'SELECTED');
355: else
356: template := template||wf_core.newline||
357: htf.formSelectOption(i.meaning);
358: end if;

Line 357: htf.formSelectOption(i.meaning);

353: template := template||wf_core.newline||
354: htf.formSelectOption(i.meaning, 'SELECTED');
355: else
356: template := template||wf_core.newline||
357: htf.formSelectOption(i.meaning);
358: end if;
359: end loop;
360: template := template||wf_core.newline||htf.formSelectClose;
361:

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

356: template := template||wf_core.newline||
357: htf.formSelectOption(i.meaning);
358: end if;
359: end loop;
360: template := template||wf_core.newline||htf.formSelectClose;
361:
362: if (not submit) then
363: -- Draw a normal field
364: htp.tableData(template, 'left',cattributes=>'id=""');

Line 413: htp.tableData(cvalue=>htf.formText(cname=>'h_fdocnames', csize=>32,

409: TRUE,
410: l_attach_url);
411:
412: -- document field
413: htp.tableData(cvalue=>htf.formText(cname=>'h_fdocnames', csize=>32,
414: cmaxlength=>60,
415: cvalue=>dvalue,
416: cattributes=>'id="i_attr'||index_num||'"')
417: ||'   '||l_attach_URL,

Line 462: cvalue=>htf.formText(cname=>'h_fvalues',

458:
459: if (len <= 80) then
460: -- single line field
461: htp.tableData(
462: cvalue=>htf.formText(cname=>'h_fvalues',
463: csize=>len,
464: cmaxlength=>len,
465: cvalue=>dvalue,
466: cattributes=>'id="i_attr'||index_num||'"'),

Line 472: cvalue=>htf.formTextareaOpen2(

468: cattributes=>'id=""');
469: else
470: -- multi line field
471: htp.tableData(
472: cvalue=>htf.formTextareaOpen2(
473: cname=>'h_fvalues',
474: nrows=>2,
475: ncolumns=>65,
476: cwrap=>'SOFT',

Line 478: || dvalue|| htf.formTextareaClose,

474: nrows=>2,
475: ncolumns=>65,
476: cwrap=>'SOFT',
477: cattributes=>'id="i_attr'||index_num||'" maxlength= '||to_char(len))
478: || dvalue|| htf.formTextareaClose,
479: calign=>'Left',
480: cattributes=>'id=""');
481: end if;
482: exception

Line 1009: htf.em(wf_core.translate(''))),

1005: htp.tableData(cvalue=>wf_core.translate('MESSAGE_TYPE'),
1006: calign=>'right',
1007: cattributes=>'id=""');
1008: htp.tableHeader(cvalue=>nvl(rulerec.type_display,
1009: htf.em(wf_core.translate(''))),
1010: calign=>'left',
1011: cattributes=>'id=""');
1012: htp.tableRowClose;
1013: htp.tableRowOpen;

Line 1019: htp.tableHeader(cvalue=>htf.em(wf_core.translate('')),

1015: calign=>'right',
1016: cattributes=>'id=""');
1017: IF (rulerec.subject IS NULL) THEN
1018:
1019: htp.tableHeader(cvalue=>htf.em(wf_core.translate('')),
1020: calign=>'left',
1021: cattributes=>'id=""');
1022: ELSE
1023:

Line 1038: htp.tableData(cvalue=>htf.formText(cname=>'begin_date',

1034: htp.tableData(cvalue=>'',
1036: calign=>'right',
1037: cattributes=>'id=""');
1038: htp.tableData(cvalue=>htf.formText(cname=>'begin_date',
1039: csize=>30, cmaxlength=>64,
1040: cvalue=>rulerec.cbegin_date,
1041: cattributes=>'id="i_begin_date"'),
1042: calign=>'left',

Line 1050: htp.tableData(cvalue=>htf.formText(cname=>'end_date',

1046: htp.tableData(cvalue=>'',
1048: calign=>'right',
1049: cattributes=>'id=""');
1050: htp.tableData(cvalue=>htf.formText(cname=>'end_date',
1051: csize=>30, cmaxlength=>64,
1052: cvalue=>rulerec.cend_date,
1053: cattributes=>'id="i_end_date"'),
1054: calign=>'left',

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

1055: cattributes=>'id=""');
1056: htp.tableRowClose;
1057:
1058: htp.tableRowOpen;
1059: htp.tableData(htf.br,cattributes=>'id=""');
1060: htp.tableRowClose;
1061: htp.tableRowOpen;
1062: htp.tableHeader(wf_core.translate('WFRTG_AUTOMATICALLY'), 'left',
1063: ccolspan=>'2',cattributes=>'id=""');

Line 1073: htp.tableData(cvalue=>htf.formTextareaOpen2(

1069: htp.tableRowOpen;
1070: htp.tableData(cvalue=>'',
1072: calign=>'right', cattributes=>'width="10%" id=""');
1073: htp.tableData(cvalue=>htf.formTextareaOpen2(
1074: cname=>'rule_comment',
1075: nrows=>3,
1076: ncolumns=>65,
1077: cwrap=>'soft',

Line 1080: htf.formTextareaClose,

1076: ncolumns=>65,
1077: cwrap=>'soft',
1078: cattributes=>'maxlength=2000 id="i_rule_comment"')||
1079: rulerec.rule_comment||
1080: htf.formTextareaClose,
1081: ccolspan=>3,
1082: calign=>'left', cattributes=>'width="*" id=""');
1083: htp.tableRowClose;
1084:

Line 1635: htp.center(htf.bold(wf_core.translate('WFPREF_INVALID_ROLE_NAME'))||':'||display_user);

1631:
1632: IF (realname IS NULL) THEN
1633:
1634: htp.p('');
1635: htp.center(htf.bold(wf_core.translate('WFPREF_INVALID_ROLE_NAME'))||':'||display_user);
1636: htp.br;
1637:
1638: htp.tableopen(calign=>'CENTER',cattributes=>'summary=""');
1639:

Line 1720: htf.em(wf_core.translate(''))),

1716: end if;
1717:
1718: htp.tableRowOpen(null, 'TOP');
1719: htp.tableData(nvl(rule.type_display,
1720: htf.em(wf_core.translate(''))),
1721: 'left',cattributes=>'id=""');
1722:
1723: IF (rule.subject IS NULL) THEN
1724:

Line 1725: htp.tableData(htf.em(wf_core.translate('')),

1721: 'left',cattributes=>'id=""');
1722:
1723: IF (rule.subject IS NULL) THEN
1724:
1725: htp.tableData(htf.em(wf_core.translate('')),
1726: 'left', cattributes=>'id=""');
1727:
1728: ELSE
1729:

Line 1741: htp.tableData(htf.anchor(wfa_html.base_url||

1737: if ( rule.action = 'FORWARD' ) then
1738: -- get the display name of the forwardee in delegation
1739: wf_directory.GetRoleInfo(rule.action_argument, forwardname,
1740: s0, s0, s0, s0);
1741: htp.tableData(htf.anchor(wfa_html.base_url||
1742: '/Wf_Route.UpdateRule?ruleid='||
1743: to_char(rule.rule_id),
1744: wf_core.translate('DELEGATE')||':'||
1745: forwardname),

Line 1751: htp.tableData(htf.anchor(wfa_html.base_url||

1747: elsif ( rule.action = 'TRANSFER' ) then
1748: -- get the display name of the forwardee in transfering
1749: wf_directory.GetRoleInfo(rule.action_argument, forwardname,
1750: s0, s0, s0, s0);
1751: htp.tableData(htf.anchor(wfa_html.base_url||
1752: '/Wf_Route.UpdateRule?ruleid='||
1753: to_char(rule.rule_id),
1754: wf_core.translate('TRANSFER')||':'||
1755: forwardname),

Line 1759: htp.tableData(htf.anchor(wfa_html.base_url||

1755: forwardname),
1756: 'left',cattributes=>'id=""');
1757: else
1758: if ( rule.action = 'NOOP' ) then
1759: htp.tableData(htf.anchor(wfa_html.base_url||
1760: '/Wf_Route.UpdateRule?ruleid='||
1761: to_char(rule.rule_id),
1762: wf_core.translate('WFRTG_DELIVERTOME')),
1763: 'left',cattributes=>'id=""');

Line 1815: htp.tableData(htf.anchor(wfa_html.base_url||

1811: -- If there is no message attributes, there is no response and we give
1812: -- a choice of 'close', otherwise 'response'.
1813: --
1814: if (rowcount = 0) then
1815: htp.tableData(htf.anchor(wfa_html.base_url||
1816: '/Wf_Route.UpdateRule?ruleid='||
1817: to_char(rule.rule_id),
1818: wf_core.translate('WFRTG_CLOSE')),
1819: 'left',cattributes=>'id="' ||

Line 1823: htp.tableData(htf.anchor(wfa_html.base_url||

1819: 'left',cattributes=>'id="' ||
1820: wf_core.translate('WFRTG_CLOSE') || '"');
1821: else
1822: if (att_tvalue is not null) then
1823: htp.tableData(htf.anchor(wfa_html.base_url||
1824: '/Wf_Route.UpdateRule?ruleid='||
1825: to_char(rule.rule_id),
1826: wf_core.translate('WFITD_MSG_SOURCE_TYPE_RESPOND')||':'
1827: ||att_tvalue),

Line 1830: htp.tableData(htf.anchor(wfa_html.base_url||

1826: wf_core.translate('WFITD_MSG_SOURCE_TYPE_RESPOND')||':'
1827: ||att_tvalue),
1828: 'left',cattributes=>'id="' || wf_core.translate('WFITD_MSG_SOURCE_TYPE_RESPOND') || '"');
1829: else
1830: htp.tableData(htf.anchor(wfa_html.base_url||
1831: '/Wf_Route.UpdateRule?ruleid='||
1832: to_char(rule.rule_id),
1833: wf_core.translate('WFITD_MSG_SOURCE_TYPE_RESPOND')),
1834: 'left',cattributes=>'id="' || wf_core.translate('WFITD_MSG_SOURCE_TYPE_RESPOND') || '"');

Line 1841: htp.tableData(htf.img(wfa_html.image_loc||'FNDICHEK.gif',

1837: end if;
1838: end if;
1839:
1840: if isactive = 1 then
1841: htp.tableData(htf.img(wfa_html.image_loc||'FNDICHEK.gif',
1842: 'Center', wf_core.translate('ACTIVE')), 'center',
1843: cattributes=>'valign="MIDDLE" id=""');
1844: else
1845: htp.tableData(htf.br,cattributes=>'id=""');

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

1841: htp.tableData(htf.img(wfa_html.image_loc||'FNDICHEK.gif',
1842: 'Center', wf_core.translate('ACTIVE')), 'center',
1843: cattributes=>'valign="MIDDLE" id=""');
1844: else
1845: htp.tableData(htf.br,cattributes=>'id=""');
1846: end if;
1847:
1848: -- htp.tableData(nvl(to_char(rule.begin_date)||
1849: -- to_char(rule.begin_date, ' HH24:MI:SS'),

Line 1850: -- htf.br), 'left',cattributes=>'id=""');

1846: end if;
1847:
1848: -- htp.tableData(nvl(to_char(rule.begin_date)||
1849: -- to_char(rule.begin_date, ' HH24:MI:SS'),
1850: -- htf.br), 'left',cattributes=>'id=""');
1851:
1852: htp.tableData(htf.anchor2(curl=>wfa_html.base_url||
1853: '/Wf_Route.DeleteRule?user='||username||
1854: '&'||'ruleid='||to_char(rule.rule_id),

Line 1852: htp.tableData(htf.anchor2(curl=>wfa_html.base_url||

1848: -- htp.tableData(nvl(to_char(rule.begin_date)||
1849: -- to_char(rule.begin_date, ' HH24:MI:SS'),
1850: -- htf.br), 'left',cattributes=>'id=""');
1851:
1852: htp.tableData(htf.anchor2(curl=>wfa_html.base_url||
1853: '/Wf_Route.DeleteRule?user='||username||
1854: '&'||'ruleid='||to_char(rule.rule_id),
1855: ctext=>' 1856: alt="' || wf_core.translate('WFRTG_DELETE') || '" BORDER=0>'),

Line 1968: htp.tabledata(htf.formText(cname=>'display_user', csize=>30,

1964: '&p_dest_display_field=top.opener.parent.document.WF_FIND.display_user.value',
1965: ' ', '%20')||''''||',500,500)';
1966:
1967: -- print everything together so ther is no gap.
1968: htp.tabledata(htf.formText(cname=>'display_user', csize=>30,
1969: cmaxlength=>360,
1970: cvalue=>realname,
1971: cattributes=>'id="i_display_user"')||
1972: ''||