DBA Data[Home] [Help]

APPS.ORACLENAVIGATE dependencies on HTF

Line 1621: htp.tableData(htf.formText(cname => 'LOCATION',

1617: ;
1618: htp.tableOpen;
1619: htp.tableRowOpen;
1620: htp.tableData(l_prompts(1), 'RIGHT');
1621: htp.tableData(htf.formText(cname => 'LOCATION',
1622: csize => '35',
1623: cmaxlength => '2000'), 'LEFT');
1624: htp.tableRowClose;
1625: htp.tableRowOpen;

Line 1627: htp.tableData(htf.formText(cname => 'NAME',

1623: cmaxlength => '2000'), 'LEFT');
1624: htp.tableRowClose;
1625: htp.tableRowOpen;
1626: htp.tableData(l_prompts(2), 'RIGHT');
1627: htp.tableData(htf.formText(cname => 'NAME',
1628: csize => '35',
1629: cmaxlength => '240'), 'LEFT');
1630: htp.tableRowClose;
1631: htp.tableRowOpen;

Line 1723: htp.tableData(htf.formText(cname => 'NAME',

1719: htp.formOpen('javascript:saveRename()','POST','','','NAME="renameFavorite"');
1720: htp.tableOpen;
1721: htp.tableRowOpen;
1722: htp.tableData(l_prompts(1), 'RIGHT');
1723: htp.tableData(htf.formText(cname => 'NAME',
1724: csize => '35',
1725: cmaxlength => '50'), 'LEFT');
1726: htp.tableRowClose;
1727: htp.tableRowOpen;

Line 1730: htp.tableData(htf.formText(cname => 'LOCATION',

1726: htp.tableRowClose;
1727: htp.tableRowOpen;
1728: IF (substr(item_name,1,7)='0*0*0*X') THEN -- only show this if it is a custom URL 976843 mputman
1729: htp.tableData(l_prompts(5), 'RIGHT');
1730: htp.tableData(htf.formText(cname => 'LOCATION',
1731: csize => '35',
1732: cmaxlength => '2000'), 'LEFT');
1733: ELSE -- if not a custom URL... still need this for the save function to work 976843 mputman
1734: htp.tableData(' ', 'RIGHT'); -- add text box but save NULL value 976843 mputman

Line 1735: htp.tableData(htf.formHidden(cname => 'LOCATION'),'LEFT'); -- hidden text box 976843 mputman

1731: csize => '35',
1732: cmaxlength => '2000'), 'LEFT');
1733: ELSE -- if not a custom URL... still need this for the save function to work 976843 mputman
1734: htp.tableData(' ', 'RIGHT'); -- add text box but save NULL value 976843 mputman
1735: htp.tableData(htf.formHidden(cname => 'LOCATION'),'LEFT'); -- hidden text box 976843 mputman
1736:
1737: END IF;
1738: htp.tableRowClose;
1739: htp.tableRowOpen;