DBA Data[Home] [Help]

APPS.MSD_SSWA dependencies on HTP

Line 18: htp.headOpen;

14: procedure render_header is
15: begin
16: -- show copyright in source
17: icx_util.copyright;
18: htp.headOpen;
19: htp.title(fnd_message.get_string('MSD','APPLICATION.TITLE'));
20:
21: htp.p('');
39: htp.headClose;
40:
41: htp.bodyOpen( cattributes => 'BGCOLOR=white');

Line 38: htp.p('');

34: _url = _url + "BRWS=" + _browser_name + "/BRWS_VER=" + _browser_ver + "/SCR_HT=" + _screen_height + "/SCR_WD=" + _screen_width + "/DUMMY="+Math.random();
35: window.open(_url,"ODPwindow",winParms);
36: }');
37: htp.p('// -->');
38: htp.p('');
39: htp.headClose;
40:
41: htp.bodyOpen( cattributes => 'BGCOLOR=white');
42: htp.p(get_branding_html('Y'));

Line 39: htp.headClose;

35: window.open(_url,"ODPwindow",winParms);
36: }');
37: htp.p('// -->');
38: htp.p('');
39: htp.headClose;
40:
41: htp.bodyOpen( cattributes => 'BGCOLOR=white');
42: htp.p(get_branding_html('Y'));
43:

Line 41: htp.bodyOpen( cattributes => 'BGCOLOR=white');

37: htp.p('// -->');
38: htp.p('');
39: htp.headClose;
40:
41: htp.bodyOpen( cattributes => 'BGCOLOR=white');
42: htp.p(get_branding_html('Y'));
43:
44: -- display demand plan prompt
45: htp.p('

Line 42: htp.p(get_branding_html('Y'));

38: htp.p('');
39: htp.headClose;
40:
41: htp.bodyOpen( cattributes => 'BGCOLOR=white');
42: htp.p(get_branding_html('Y'));
43:
44: -- display demand plan prompt
45: htp.p('


46:
'||

Line 45: htp.p('

41: htp.bodyOpen( cattributes => 'BGCOLOR=white');
42: htp.p(get_branding_html('Y'));
43:
44: -- display demand plan prompt
45: htp.p('


46:
49:

Line 135: * demand plan, and display it through htp.p calls.

131:
132:
133: /**
134: * This procedure will access the batch log for the given
135: * demand plan, and display it through htp.p calls.
136: */
137: procedure show_batch_log (p_path varchar2, p_id number) is
138: input_file utl_file.file_type;
139: input_buffer varchar2(4000);

Line 148: htp.p(input_buffer);

144: input_file := utl_file.fopen(p_path,v_filename, 'R');
145:
146: loop
147: utl_file.get_line (input_file, input_buffer);
148: htp.p(input_buffer);
149: end loop;
150:
151: EXCEPTION
152: WHEN OTHERS then

Line 160: * demand plan, and display it through htp.p calls.

156:
157:
158: /**
159: * This procedure will access the batch log for the given
160: * demand plan, and display it through htp.p calls.
161: */
162: function get_batch_log (p_id number) return clob is
163: input_file utl_file.file_type;
164: input_buffer varchar2(4000);

'||
47: fnd_message.get_string('MSD','MSD_DP_SELECTPLAN') ||
48: '