DBA Data[Home] [Help]

APPS.ICX_DEFINE_PAGES dependencies on HTP

Line 11: htp.htmlOpen;

7: error_name varchar2(30);
8: error_message varchar2(2000);
9: error_stack varchar2(32000);
10: begin
11: htp.htmlOpen;
12: htp.headOpen;
13: htp.title(wf_core.translate('ERROR'));
14: htp.headClose;
15:

Line 12: htp.headOpen;

8: error_message varchar2(2000);
9: error_stack varchar2(32000);
10: begin
11: htp.htmlOpen;
12: htp.headOpen;
13: htp.title(wf_core.translate('ERROR'));
14: htp.headClose;
15:
16: begin

Line 13: htp.title(wf_core.translate('ERROR'));

9: error_stack varchar2(32000);
10: begin
11: htp.htmlOpen;
12: htp.headOpen;
13: htp.title(wf_core.translate('ERROR'));
14: htp.headClose;
15:
16: begin
17: wfa_sec.Header(background_only=>TRUE);

Line 14: htp.headClose;

10: begin
11: htp.htmlOpen;
12: htp.headOpen;
13: htp.title(wf_core.translate('ERROR'));
14: htp.headClose;
15:
16: begin
17: wfa_sec.Header(background_only=>TRUE);
18: exception

Line 20: htp.bodyOpen;

16: begin
17: wfa_sec.Header(background_only=>TRUE);
18: exception
19: when others then
20: htp.bodyOpen;
21: end;
22:
23: htp.header(nsize=>1, cheader=>wf_core.translate('ERROR'));
24: wf_core.get_error(error_name, error_message, error_stack);

Line 23: htp.header(nsize=>1, cheader=>wf_core.translate('ERROR'));

19: when others then
20: htp.bodyOpen;
21: end;
22:
23: htp.header(nsize=>1, cheader=>wf_core.translate('ERROR'));
24: wf_core.get_error(error_name, error_message, error_stack);
25:
26: if (error_name is not null) then
27: htp.p(error_message);

Line 27: htp.p(error_message);

23: htp.header(nsize=>1, cheader=>wf_core.translate('ERROR'));
24: wf_core.get_error(error_name, error_message, error_stack);
25:
26: if (error_name is not null) then
27: htp.p(error_message);
28: else
29: htp.p(sqlerrm);
30: end if;
31:

Line 29: htp.p(sqlerrm);

25:
26: if (error_name is not null) then
27: htp.p(error_message);
28: else
29: htp.p(sqlerrm);
30: end if;
31:
32: htp.hr;
33: htp.p(wf_core.translate('WFENG_ERRNAME')||': '||error_name);

Line 32: htp.hr;

28: else
29: htp.p(sqlerrm);
30: end if;
31:
32: htp.hr;
33: htp.p(wf_core.translate('WFENG_ERRNAME')||': '||error_name);
34: htp.br;
35: htp.p(wf_core.translate('WFENG_ERRSTACK')||': '||
36: replace(error_stack,wf_core.newline,'
'));

Line 33: htp.p(wf_core.translate('WFENG_ERRNAME')||': '||error_name);

29: htp.p(sqlerrm);
30: end if;
31:
32: htp.hr;
33: htp.p(wf_core.translate('WFENG_ERRNAME')||': '||error_name);
34: htp.br;
35: htp.p(wf_core.translate('WFENG_ERRSTACK')||': '||
36: replace(error_stack,wf_core.newline,'
'));
37:

Line 34: htp.br;

30: end if;
31:
32: htp.hr;
33: htp.p(wf_core.translate('WFENG_ERRNAME')||': '||error_name);
34: htp.br;
35: htp.p(wf_core.translate('WFENG_ERRSTACK')||': '||
36: replace(error_stack,wf_core.newline,'
'));
37:
38: wfa_sec.Footer;

Line 35: htp.p(wf_core.translate('WFENG_ERRSTACK')||': '||

31:
32: htp.hr;
33: htp.p(wf_core.translate('WFENG_ERRNAME')||': '||error_name);
34: htp.br;
35: htp.p(wf_core.translate('WFENG_ERRSTACK')||': '||
36: replace(error_stack,wf_core.newline,'
'));
37:
38: wfa_sec.Footer;
39: htp.htmlClose;

Line 39: htp.htmlClose;

35: htp.p(wf_core.translate('WFENG_ERRSTACK')||': '||
36: replace(error_stack,wf_core.newline,'
'));
37:
38: wfa_sec.Footer;
39: htp.htmlClose;
40: end Error;
41:
42: -- ***********************************************
43: -- procedure DispPageDialog

Line 115: htp.htmlOpen;

111:
112: end if;
113:
114: -- HTML Open
115: htp.htmlOpen;
116:
117: -- HTML Header Open
118: htp.headOpen;
119:

Line 118: htp.headOpen;

114: -- HTML Open
115: htp.htmlOpen;
116:
117: -- HTML Header Open
118: htp.headOpen;
119:
120: htp.p('');
158:
159: -- HTML Head Close
160: htp.headClose;

Line 157: htp.p('');

153:
154: }');
155:
156: htp.p('//-->');
157: htp.p('');
158:
159: -- HTML Head Close
160: htp.headClose;
161:

Line 160: htp.headClose;

156: htp.p('//-->');
157: htp.p('');
158:
159: -- HTML Head Close
160: htp.headClose;
161:
162: if (p_mode = 'CREATE') then
163:
164: l_function_syntax := 'javascript:applySubmit()';

Line 213: htp.p('');

209: p_subheader_text => ' ',
210: p_buttons => l_button_list);
211:
212: -- HTML Body Open
213: htp.p('');
214:
215: htp.centerOpen;
216:
217: -- Form Open

Line 215: htp.centerOpen;

211:
212: -- HTML Body Open
213: htp.p('');
214:
215: htp.centerOpen;
216:
217: -- Form Open
218: htp.formOpen(cattributes => 'NAME="new_pagename"',
219: curl => l_agent || 'icx_define_pages.savePage',

Line 218: htp.formOpen(cattributes => 'NAME="new_pagename"',

214:
215: htp.centerOpen;
216:
217: -- Form Open
218: htp.formOpen(cattributes => 'NAME="new_pagename"',
219: curl => l_agent || 'icx_define_pages.savePage',
220: cmethod => 'POST',
221: cenctype => 'multipart/form-data'); --mputman reodered
222:

Line 227: -- htp.tableRowOpen;

223: -- Draw the Dialog Title Bar
224: l_dialog.open_dialog;
225:
226: -- TABLE FOR THE FORM ELEMENTS
227: -- htp.tableRowOpen;
228: -- wwutl_htp.tableDataOpen;
229: htp.tableOpen(cattributes=>'cellspacing="0" cellpadding="0" border="0" width="80%"');
230:
231: if (p_mode = 'COPY') then

Line 228: -- wwutl_htp.tableDataOpen;

224: l_dialog.open_dialog;
225:
226: -- TABLE FOR THE FORM ELEMENTS
227: -- htp.tableRowOpen;
228: -- wwutl_htp.tableDataOpen;
229: htp.tableOpen(cattributes=>'cellspacing="0" cellpadding="0" border="0" width="80%"');
230:
231: if (p_mode = 'COPY') then
232:

Line 229: htp.tableOpen(cattributes=>'cellspacing="0" cellpadding="0" border="0" width="80%"');

225:
226: -- TABLE FOR THE FORM ELEMENTS
227: -- htp.tableRowOpen;
228: -- wwutl_htp.tableDataOpen;
229: htp.tableOpen(cattributes=>'cellspacing="0" cellpadding="0" border="0" width="80%"');
230:
231: if (p_mode = 'COPY') then
232:
233: htp.p(''||wf_core.translate('COPY')||'');

Line 233: htp.p(''||wf_core.translate('COPY')||'');

229: htp.tableOpen(cattributes=>'cellspacing="0" cellpadding="0" border="0" width="80%"');
230:
231: if (p_mode = 'COPY') then
232:
233: htp.p(''||wf_core.translate('COPY')||'');
234:
235: htp.p('');
236:
237: htp.p('');
238:
239: -- set the pagess that have already been selected

Line 237: htp.p('');
238:
239: -- set the pagess that have already been selected
240: for rec in wlistcurs loop
241:

Line 244: htp.formSelectOption(cvalue => wf_core.translate('ICX_PREDEFINED'),

240: for rec in wlistcurs loop
241:
242: if (rec.page_type = 'SEED' and first_seed = TRUE) then
243:
244: htp.formSelectOption(cvalue => wf_core.translate('ICX_PREDEFINED'),
245: cattributes => 'VALUE="'||to_char(rec.page_id)||'"');
246:
247: first_seed := FALSE;
248:

Line 251: htp.formSelectOption(cvalue => rec.page_name,

247: first_seed := FALSE;
248:
249: end if;
250:
251: htp.formSelectOption(cvalue => rec.page_name,
252: cattributes => 'VALUE="'||to_char(rec.page_id)||'"');
253:
254: end loop;
255:

Line 256: htp.formSelectClose;

252: cattributes => 'VALUE="'||to_char(rec.page_id)||'"');
253:
254: end loop;
255:
256: htp.formSelectClose;
257:
258: htp.p('');
259:
260: htp.p(' ');

Line 258: htp.p('');

254: end loop;
255:
256: htp.formSelectClose;
257:
258: htp.p('');
259:
260: htp.p(' ');
261:
262: end if;

Line 260: htp.p(' ');

256: htp.formSelectClose;
257:
258: htp.p('');
259:
260: htp.p(' ');
261:
262: end if;
263:
264: -- Old Page Name

Line 267: htp.tableRowOpen;

263:
264: -- Old Page Name
265: if (p_mode IN ('RENAME', 'DELETE')) then
266:
267: htp.tableRowOpen;
268: htp.tableData(cvalue=>wf_core.translate('PAGE_NAME'),
269: cattributes => 'VALIGN="MIDDLE"');
270:
271: htp.tableData(''||l_page_name||'', cattributes => 'VALIGN="MIDDLE"');

Line 268: htp.tableData(cvalue=>wf_core.translate('PAGE_NAME'),

264: -- Old Page Name
265: if (p_mode IN ('RENAME', 'DELETE')) then
266:
267: htp.tableRowOpen;
268: htp.tableData(cvalue=>wf_core.translate('PAGE_NAME'),
269: cattributes => 'VALIGN="MIDDLE"');
270:
271: htp.tableData(''||l_page_name||'', cattributes => 'VALIGN="MIDDLE"');
272: htp.tableRowClose;

Line 271: htp.tableData(''||l_page_name||'', cattributes => 'VALIGN="MIDDLE"');

267: htp.tableRowOpen;
268: htp.tableData(cvalue=>wf_core.translate('PAGE_NAME'),
269: cattributes => 'VALIGN="MIDDLE"');
270:
271: htp.tableData(''||l_page_name||'', cattributes => 'VALIGN="MIDDLE"');
272: htp.tableRowClose;
273: htp.formHidden('p_page_id', p_page_id);
274:
275: end if;

Line 272: htp.tableRowClose;

268: htp.tableData(cvalue=>wf_core.translate('PAGE_NAME'),
269: cattributes => 'VALIGN="MIDDLE"');
270:
271: htp.tableData(''||l_page_name||'', cattributes => 'VALIGN="MIDDLE"');
272: htp.tableRowClose;
273: htp.formHidden('p_page_id', p_page_id);
274:
275: end if;
276:

Line 273: htp.formHidden('p_page_id', p_page_id);

269: cattributes => 'VALIGN="MIDDLE"');
270:
271: htp.tableData(''||l_page_name||'', cattributes => 'VALIGN="MIDDLE"');
272: htp.tableRowClose;
273: htp.formHidden('p_page_id', p_page_id);
274:
275: end if;
276:
277: if (p_mode IN ('COPY', 'CREATE', 'RENAME')) THEN

Line 281: htp.tableRowOpen;

277: if (p_mode IN ('COPY', 'CREATE', 'RENAME')) THEN
278:
279:
280:
281: htp.tableRowOpen;
282: htp.tableData(wf_core.translate('NEW_PAGE_NAME'),
283: cattributes => 'VALIGN="MIDDLE"');
284:
285: htp.tableData(htf.fontOpen(cface => 'arial,helvetica')

Line 282: htp.tableData(wf_core.translate('NEW_PAGE_NAME'),

278:
279:
280:
281: htp.tableRowOpen;
282: htp.tableData(wf_core.translate('NEW_PAGE_NAME'),
283: cattributes => 'VALIGN="MIDDLE"');
284:
285: htp.tableData(htf.fontOpen(cface => 'arial,helvetica')
286: || htf.formText(cname => 'p_page_name', csize => '20', cmaxlength => '30',

Line 285: htp.tableData(htf.fontOpen(cface => 'arial,helvetica')

281: htp.tableRowOpen;
282: htp.tableData(wf_core.translate('NEW_PAGE_NAME'),
283: cattributes => 'VALIGN="MIDDLE"');
284:
285: htp.tableData(htf.fontOpen(cface => 'arial,helvetica')
286: || htf.formText(cname => 'p_page_name', csize => '20', cmaxlength => '30',
287: cattributes => 'VALUE="'||l_page_name||'"')|| --mputman removed onClick
288: htf.fontClose, cattributes => 'VALIGN="MIDDLE"');
289: htp.tableRowClose;

Line 289: htp.tableRowClose;

285: htp.tableData(htf.fontOpen(cface => 'arial,helvetica')
286: || htf.formText(cname => 'p_page_name', csize => '20', cmaxlength => '30',
287: cattributes => 'VALUE="'||l_page_name||'"')|| --mputman removed onClick
288: htf.fontClose, cattributes => 'VALIGN="MIDDLE"');
289: htp.tableRowClose;
290: htp.formHidden('p_mode',p_mode);
291:
292: end if;
293:

Line 290: htp.formHidden('p_mode',p_mode);

286: || htf.formText(cname => 'p_page_name', csize => '20', cmaxlength => '30',
287: cattributes => 'VALUE="'||l_page_name||'"')|| --mputman removed onClick
288: htf.fontClose, cattributes => 'VALIGN="MIDDLE"');
289: htp.tableRowClose;
290: htp.formHidden('p_mode',p_mode);
291:
292: end if;
293:
294:

Line 296: htp.tableClose;

292: end if;
293:
294:
295: -- CLOSE THE TABLE FOR THE FORM ELEMENTS
296: htp.tableClose;
297:
298: -- Draw the dialog footer
299: l_dialog.close_dialog;
300:

Line 302: htp.formClose;

298: -- Draw the dialog footer
299: l_dialog.close_dialog;
300:
301: -- CLOSE FORM
302: htp.formClose;
303:
304: htp.centerClose;
305:
306: -- Close Body

Line 304: htp.centerClose;

300:
301: -- CLOSE FORM
302: htp.formClose;
303:
304: htp.centerClose;
305:
306: -- Close Body
307: htp.bodyClose;
308:

Line 307: htp.bodyClose;

303:
304: htp.centerClose;
305:
306: -- Close Body
307: htp.bodyClose;
308:
309: -- Close HTML
310: htp.htmlClose;
311:

Line 310: htp.htmlClose;

306: -- Close Body
307: htp.bodyClose;
308:
309: -- Close HTML
310: htp.htmlClose;
311:
312: exception
313: when others then
314: rollback;

Line 451: htp.p('');
455:

Line 452: htp.p('parent.opener.location.reload();');

448: if (p_mode in ('CREATE', 'COPY', 'RENAME') ) then
449: -- removed browser specific code and added parent reload and window close
450: -- mputman 1936581
451: htp.p('');
455:
456: end if;

Line 453: htp.p('window.close();');

449: -- removed browser specific code and added parent reload and window close
450: -- mputman 1936581
451: htp.p('');
455:
456: end if;
457: exception

Line 454: htp.p('');

450: -- mputman 1936581
451: htp.p('');
455:
456: end if;
457: exception
458: when others then

Line 516: htp.p('');

512: else
513: l_history := 'history.go(0);';
514: end if;
515:
516: htp.p('');
517: htp.p('');
518: htp.p(''||l_title||'');
519: htp.p('

Web Analytics Made Easy -StatCounter
');
520:

Line 517: htp.p('');

513: l_history := 'history.go(0);';
514: end if;
515:
516: htp.p('');
517: htp.p('');
518: htp.p(''||l_title||'');
519: htp.p('

Web Analytics Made Easy -StatCounter
');
520:
521: wfa_sec.Header(background_only=>TRUE,

Line 518: htp.p(''||l_title||'');

514: end if;
515:
516: htp.p('');
517: htp.p('');
518: htp.p(''||l_title||'');
519: htp.p('

Web Analytics Made Easy -StatCounter
');
520:
521: wfa_sec.Header(background_only=>TRUE,
522: page_title=>wf_core.translate('MAINTAIN_PAGES'),

Line 519: htp.p('');

515:
516: htp.p('');
517: htp.p('');
518: htp.p(''||l_title||'');
519: htp.p('

Web Analytics Made Easy -StatCounter
');
520:
521: wfa_sec.Header(background_only=>TRUE,
522: page_title=>wf_core.translate('MAINTAIN_PAGES'),
523: inc_lov_applet=>FALSE);

Line 525: htp.p('');
687:
688: htp.p('');
689: htp.formOpen('javascript:saveOrder()','POST','','','NAME="PageList"');

Line 686: htp.p('');

682: top.location.href = "'||wfa_html.base_url ||'/oraclemypage.home";
683: }');
684:
685: htp.p('//-->');
686: htp.p('');
687:
688: htp.p('');
689: htp.formOpen('javascript:saveOrder()','POST','','','NAME="PageList"');
690:

Line 688: htp.p('');

684:
685: htp.p('//-->');
686: htp.p('');
687:
688: htp.p('');
689: htp.formOpen('javascript:saveOrder()','POST','','','NAME="PageList"');
690:
691: htp.p(''); -- main
692:

Line 689: htp.formOpen('javascript:saveOrder()','POST','','','NAME="PageList"');

685: htp.p('//-->');
686: htp.p('');
687:
688: htp.p('');
689: htp.formOpen('javascript:saveOrder()','POST','','','NAME="PageList"');
690:
691: htp.p('

'); -- main
692:
693: htp.p('');
749:
750: htp.p('');
751:
752: htp.p('

');

Line 691: htp.p(''); -- main

687:
688: htp.p('');
689: htp.formOpen('javascript:saveOrder()','POST','','','NAME="PageList"');
690:
691: htp.p('

'); -- main
692:
693: htp.p('');
749:
750: htp.p('');
751:
752: htp.p('

');
694:
695: htp.p(''); -- Cell

Line 693: htp.p('
');
749:
750: htp.p('');
751:
752: htp.p('');

746: htp.p(''); --end second row
747: htp.p('


');

689: htp.formOpen('javascript:saveOrder()','POST','','','NAME="PageList"');
690:
691: htp.p(''); -- main
692:
693: htp.p('');
749:
750: htp.p('
');
751:

Line 748: htp.p('');

744: htp.p('

'); --end second row
747: htp.p('

');
694:
695: htp.p(''); -- Cell
696:
697: htp.p('');

Line 695: htp.p('
' || wf_core.translate('PAGE_NAME') || '
'); -- Cell

691: htp.p('

'); -- main
692:
693: htp.p(''); --end second row
747: htp.p('

');
694:
695: htp.p(''); -- Cell
696:
697: htp.p('');
698:
699: htp.p('');

693: htp.p('

');
749:
750: htp.p('');

Line 747: htp.p('
' || wf_core.translate('PAGE_NAME') || '
');

Line 697: htp.p('
' || wf_core.translate('PAGE_NAME') || '

');
694:
695: htp.p(''); -- Cell
696:
697: htp.p('');
698:
699: htp.p('');

Line 746: htp.p(''); --end second row

742: htp.p(''); --close first row
743:
744: htp.p('

'); --end second row
747: htp.p('
' || wf_core.translate('PAGE_NAME') || '
');
700:
701: htp.p('
');

695: htp.p(''); -- Cell
696:
697: htp.p('');
698:
699: htp.p('');
698:
699: htp.p('
'); --close first row
743:
744: htp.p(''); --end second row

Line 744: htp.p('
'); --close first row
743:
744: htp.p(''); --end second row
747: htp.p('
' || wf_core.translate('PAGE_NAME') || '
');
700:
701: htp.p('');

697: htp.p('

' || wf_core.translate('PAGE_NAME') || '
');
700:
701: htp.p('
');
718:
719: htp.p(''); --close first row
743:

Line 742: htp.p(''); --close first row

738:
739: htp.p('

');

Line 717: htp.p('
');

713: end loop;
714:
715: htp.formSelectClose;
716:
717: htp.p('

');
718:
719: htp.p('
');
720:
721: htp.p('');

715: htp.formSelectClose;
716:
717: htp.p('

');
718:
719: htp.p('
');
720:
721: htp.p(''||wf_core.translate('TOP')||'');
723:

Line 721: htp.p('');
718:
719: htp.p('
');
720:
721: htp.p(''||wf_core.translate('TOP')||'');
723:
724: htp.p('
');
725:

Line 724: htp.p('
');

720:
721: htp.p(''||wf_core.translate('TOP')||'');
723:
724: htp.p('

');
725:
726: htp.p(''||wf_core.translate('UP')||'');
728:

Line 726: htp.p(''||wf_core.translate('TOP')||'');
723:
724: htp.p('
');
725:
726: htp.p(''||wf_core.translate('UP')||'');
728:
729: htp.p('
');
730:

Line 729: htp.p('
');

725:
726: htp.p(''||wf_core.translate('UP')||'');
728:
729: htp.p('

');
730:
731: htp.p(''||wf_core.translate('DOWN')||'');
733:

Line 731: htp.p(''||wf_core.translate('UP')||'');
728:
729: htp.p('
');
730:
731: htp.p(''||wf_core.translate('DOWN')||'');
733:
734: htp.p('
');
735:

Line 734: htp.p('
');

730:
731: htp.p(''||wf_core.translate('DOWN')||'');
733:
734: htp.p('

');
735:
736: htp.p(''||wf_core.translate('BOTTOM')||'');
738:

Line 736: htp.p(''||wf_core.translate('DOWN')||'');
733:
734: htp.p('
');
735:
736: htp.p(''||wf_core.translate('BOTTOM')||'');
738:
739: htp.p('
'); -- Up and Down
740:

Line 739: htp.p('
'); -- Up and Down

735:
736: htp.p(''||wf_core.translate('BOTTOM')||'');
738:
739: htp.p('

'); -- Up and Down
740:
741:
742: htp.p('
'); -- Up and Down
740:
741:
742: htp.p('
'); --second row
745:
746: htp.p('
'); --second row

740:
741:
742: htp.p('

'); --second row
745:
746: htp.p('
'); -- Cell
748: htp.p('

'); --second row
745:
746: htp.p('
'); -- Cell
748: htp.p('

'); -- Cell

743:
744: htp.p('

'); --second row
745:
746: htp.p('
'); -- Cell
748: htp.p('

'); --second row
745:
746: htp.p('
'); -- Cell
748: htp.p('


');

Line 750: htp.p('

'); -- Cell
748: htp.p('

');
753:
754: htp.p('
'); -- Main

Line 752: htp.p('
');

748: htp.p('


');
753:
754: htp.p('
'); -- Main
755:
756: htp.formClose;

Line 754: htp.p(''); -- Main

750: htp.p('
');
751:
752: htp.p('');
753:
754: htp.p(''); -- Main
755:
756: htp.formClose;
757:
758: -- add real form that does the posting

Line 756: htp.formClose;

752: htp.p('');
753:
754: htp.p(''); -- Main
755:
756: htp.formClose;
757:
758: -- add real form that does the posting
759: htp.formOpen('icx_define_pages.OrderPages','POST','','','NAME="updatePageList"');
760: htp.formHidden(cname=>'pages');

Line 759: htp.formOpen('icx_define_pages.OrderPages','POST','','','NAME="updatePageList"');

755:
756: htp.formClose;
757:
758: -- add real form that does the posting
759: htp.formOpen('icx_define_pages.OrderPages','POST','','','NAME="updatePageList"');
760: htp.formHidden(cname=>'pages');
761: htp.formHidden(cname=>'oldpages',cvalue=>old_plist);
762: htp.formHidden(cname=>'calledfrom');
763: htp.formClose;

Line 760: htp.formHidden(cname=>'pages');

756: htp.formClose;
757:
758: -- add real form that does the posting
759: htp.formOpen('icx_define_pages.OrderPages','POST','','','NAME="updatePageList"');
760: htp.formHidden(cname=>'pages');
761: htp.formHidden(cname=>'oldpages',cvalue=>old_plist);
762: htp.formHidden(cname=>'calledfrom');
763: htp.formClose;
764:

Line 761: htp.formHidden(cname=>'oldpages',cvalue=>old_plist);

757:
758: -- add real form that does the posting
759: htp.formOpen('icx_define_pages.OrderPages','POST','','','NAME="updatePageList"');
760: htp.formHidden(cname=>'pages');
761: htp.formHidden(cname=>'oldpages',cvalue=>old_plist);
762: htp.formHidden(cname=>'calledfrom');
763: htp.formClose;
764:
765: -- finally add buttons for cabo page.

Line 762: htp.formHidden(cname=>'calledfrom');

758: -- add real form that does the posting
759: htp.formOpen('icx_define_pages.OrderPages','POST','','','NAME="updatePageList"');
760: htp.formHidden(cname=>'pages');
761: htp.formHidden(cname=>'oldpages',cvalue=>old_plist);
762: htp.formHidden(cname=>'calledfrom');
763: htp.formClose;
764:
765: -- finally add buttons for cabo page.
766: -- these cause javascript error if procedure not called from

Line 763: htp.formClose;

759: htp.formOpen('icx_define_pages.OrderPages','POST','','','NAME="updatePageList"');
760: htp.formHidden(cname=>'pages');
761: htp.formHidden(cname=>'oldpages',cvalue=>old_plist);
762: htp.formHidden(cname=>'calledfrom');
763: htp.formClose;
764:
765: -- finally add buttons for cabo page.
766: -- these cause javascript error if procedure not called from
767: -- cabo frame.

Line 827: htp.bodyClose;

823: l_actions(6).gap := 'b_narrow_gap';
824:
825: icx_cabo.buttons(l_actions);
826:
827: htp.bodyClose;
828: htp.htmlClose;
829:
830: exception
831: when others then

Line 828: htp.htmlClose;

824:
825: icx_cabo.buttons(l_actions);
826:
827: htp.bodyClose;
828: htp.htmlClose;
829:
830: exception
831: when others then
832: htp.p(SQLERRM);

Line 832: htp.p(SQLERRM);

828: htp.htmlClose;
829:
830: exception
831: when others then
832: htp.p(SQLERRM);
833:
834: end PageList;
835:
836:

Line 852: htp.headopen;

848: -- Check session and current user
849: wfa_sec.GetSession(username);
850: username := upper(username);
851:
852: htp.headopen;
853: htp.p('');

Line 857: htp.p('');

853: htp.p('');
858: htp.headclose;
859:
860: l_toolbar.title := wf_core.translate ('MAINTAIN_PAGES');
861: l_toolbar.help_url := 'javascript:top.help_window()';

Line 858: htp.headclose;

854:
855: icx_admin_sig.help_win_script('PAGEADM', null, 'FND');
856:
857: htp.p('');
858: htp.headclose;
859:
860: l_toolbar.title := wf_core.translate ('MAINTAIN_PAGES');
861: l_toolbar.help_url := 'javascript:top.help_window()';
862: fnd_message.set_name('ICX','ICX_HELP');