DBA Data[Home] [Help]

APPS.ODP dependencies on HTP

Line 87: htp.htmlOpen;

83: else
84: v_jaws_spt_val := 'Yes';
85: end if;
86:
87: htp.htmlOpen;
88: -- show copyright in source
89: icx_util.copyright;
90: htp.headOpen;
91:

Line 90: htp.headOpen;

86:
87: htp.htmlOpen;
88: -- show copyright in source
89: icx_util.copyright;
90: htp.headOpen;
91:
92: icx_util.getPrompts(v_appl_id, v_page_code, v_title, v_prompt_tab);
93: v_prompt := v_prompt_tab(1);
94: v_start := v_prompt_tab(2);

Line 96: htp.title(v_title);

92: icx_util.getPrompts(v_appl_id, v_page_code, v_title, v_prompt_tab);
93: v_prompt := v_prompt_tab(1);
94: v_start := v_prompt_tab(2);
95: v_no_plans := v_prompt_tab(3);
96: htp.title(v_title);
97:
98: htp.p('');
132: htp.headClose;
133:
134: htp.bodyOpen( cattributes => 'BGCOLOR=white');

Line 131: htp.p('');

127: alert("Select a demand plan.")
128: }
129: }');
130: htp.p('// done hiding -->');
131: htp.p('');
132: htp.headClose;
133:
134: htp.bodyOpen( cattributes => 'BGCOLOR=white');
135: -- display logo and toolbar

Line 132: htp.headClose;

128: }
129: }');
130: htp.p('// done hiding -->');
131: htp.p('');
132: htp.headClose;
133:
134: htp.bodyOpen( cattributes => 'BGCOLOR=white');
135: -- display logo and toolbar
136: icx_admin_sig.toolbar(v_language);

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

130: htp.p('// done hiding -->');
131: htp.p('');
132: htp.headClose;
133:
134: htp.bodyOpen( cattributes => 'BGCOLOR=white');
135: -- display logo and toolbar
136: icx_admin_sig.toolbar(v_language);
137: htp.header(3, v_prompt);
138: htp.para;

Line 137: htp.header(3, v_prompt);

133:
134: htp.bodyOpen( cattributes => 'BGCOLOR=white');
135: -- display logo and toolbar
136: icx_admin_sig.toolbar(v_language);
137: htp.header(3, v_prompt);
138: htp.para;
139:
140: htp.formOpen(curl => '');
141: b_plans_found := false;

Line 138: htp.para;

134: htp.bodyOpen( cattributes => 'BGCOLOR=white');
135: -- display logo and toolbar
136: icx_admin_sig.toolbar(v_language);
137: htp.header(3, v_prompt);
138: htp.para;
139:
140: htp.formOpen(curl => '');
141: b_plans_found := false;
142: for v_plan in c_demand_plans loop

Line 140: htp.formOpen(curl => '');

136: icx_admin_sig.toolbar(v_language);
137: htp.header(3, v_prompt);
138: htp.para;
139:
140: htp.formOpen(curl => '');
141: b_plans_found := false;
142: for v_plan in c_demand_plans loop
143:
144: select REPLACE(v_plan.SHARED_DB_LOCATION, v_sep, v_pth_sep)

Line 159: htp.p(' ' ||
161: v_plan.DEMAND_PLAN_NAME);
162: htp.nl;
163:

Line 162: htp.nl;

158:
159: htp.p(' ' ||
161: v_plan.DEMAND_PLAN_NAME);
162: htp.nl;
163:
164: b_plans_found := true;
165: end loop;
166:

Line 168: htp.para;

164: b_plans_found := true;
165: end loop;
166:
167: if (b_plans_found) then
168: htp.para;
169: htp.p('');
170: else
171: htp.para;
172: htp.print(v_no_plans);

Line 169: htp.p('');

165: end loop;
166:
167: if (b_plans_found) then
168: htp.para;
169: htp.p('');
170: else
171: htp.para;
172: htp.print(v_no_plans);
173: htp.para;

Line 171: htp.para;

167: if (b_plans_found) then
168: htp.para;
169: htp.p('');
170: else
171: htp.para;
172: htp.print(v_no_plans);
173: htp.para;
174: end if;
175:

Line 172: htp.print(v_no_plans);

168: htp.para;
169: htp.p('');
170: else
171: htp.para;
172: htp.print(v_no_plans);
173: htp.para;
174: end if;
175:
176: htp.formClose;

Line 173: htp.para;

169: htp.p('');
170: else
171: htp.para;
172: htp.print(v_no_plans);
173: htp.para;
174: end if;
175:
176: htp.formClose;
177: htp.bodyClose;

Line 176: htp.formClose;

172: htp.print(v_no_plans);
173: htp.para;
174: end if;
175:
176: htp.formClose;
177: htp.bodyClose;
178: htp.htmlClose;
179: end if;
180:

Line 177: htp.bodyClose;

173: htp.para;
174: end if;
175:
176: htp.formClose;
177: htp.bodyClose;
178: htp.htmlClose;
179: end if;
180:
181: end display_plans;

Line 178: htp.htmlClose;

174: end if;
175:
176: htp.formClose;
177: htp.bodyClose;
178: htp.htmlClose;
179: end if;
180:
181: end display_plans;
182: