DBA Data[Home] [Help]

APPS.ENG_PARAMETER_ENGCYCLE dependencies on HTP

Line 20: htp.p('

' ||

16:
17: PROCEDURE error(P_FIELD IN VARCHAR2) IS
18: BEGIN
19: BIS_UTILITIES_PUB.Build_Report_Title(FORM_FUNCTION, RDF_FILENAME, NULL);
20: htp.p('

' ||
21: fnd_message.get_string('WIP', 'INVALID_PARAM') || ': ' ||
22: P_FIELD || '
');
23: htp.p('

' ||
24: fnd_message.get_string('WIP', 'INVALID_PARAM_INSTRUCTION') ||

Line 23: htp.p('

' ||

19: BIS_UTILITIES_PUB.Build_Report_Title(FORM_FUNCTION, RDF_FILENAME, NULL);
20: htp.p('

' ||
21: fnd_message.get_string('WIP', 'INVALID_PARAM') || ': ' ||
22: P_FIELD || '
');
23: htp.p('

' ||
24: fnd_message.get_string('WIP', 'INVALID_PARAM_INSTRUCTION') ||
25: '
');
26: END error;
27:

Line 292: htp.htmlopen;

288:
289: -- l_where_clause := conv_special_url_chars(l_where_clause);
290:
291: Before_Parameter_ENGCYCLE;
292: htp.htmlopen;
293:
294: BIS_UTILITIES_PUB.Build_Report_Title(FORM_FUNCTION, RDF_FILENAME, '');
295:
296: htp.headopen;

Line 296: htp.headopen;

292: htp.htmlopen;
293:
294: BIS_UTILITIES_PUB.Build_Report_Title(FORM_FUNCTION, RDF_FILENAME, '');
295:
296: htp.headopen;
297: js.scriptOpen;
298: icx_util.LOVScript;
299:
300: htp.p( 'var OrgLOV_Where = "' || l_where_clause || '";' );

Line 300: htp.p( 'var OrgLOV_Where = "' || l_where_clause || '";' );

296: htp.headopen;
297: js.scriptOpen;
298: icx_util.LOVScript;
299:
300: htp.p( 'var OrgLOV_Where = "' || l_where_clause || '";' );
301: htp.p( ' document.param.P_ORGANIZATION_ID.value = "";' );
302: htp.p( ' document.param.P_ORGANIZATION_NAME.value = "";' );
303:
304: js.scriptClose;

Line 301: htp.p( ' document.param.P_ORGANIZATION_ID.value = "";' );

297: js.scriptOpen;
298: icx_util.LOVScript;
299:
300: htp.p( 'var OrgLOV_Where = "' || l_where_clause || '";' );
301: htp.p( ' document.param.P_ORGANIZATION_ID.value = "";' );
302: htp.p( ' document.param.P_ORGANIZATION_NAME.value = "";' );
303:
304: js.scriptClose;
305: htp.headClose;

Line 302: htp.p( ' document.param.P_ORGANIZATION_NAME.value = "";' );

298: icx_util.LOVScript;
299:
300: htp.p( 'var OrgLOV_Where = "' || l_where_clause || '";' );
301: htp.p( ' document.param.P_ORGANIZATION_ID.value = "";' );
302: htp.p( ' document.param.P_ORGANIZATION_NAME.value = "";' );
303:
304: js.scriptClose;
305: htp.headClose;
306: htp.bodyOpen;

Line 305: htp.headClose;

301: htp.p( ' document.param.P_ORGANIZATION_ID.value = "";' );
302: htp.p( ' document.param.P_ORGANIZATION_NAME.value = "";' );
303:
304: js.scriptClose;
305: htp.headClose;
306: htp.bodyOpen;
307: htp.centerOpen;
308:
309: -- Print Org

Line 306: htp.bodyOpen;

302: htp.p( ' document.param.P_ORGANIZATION_NAME.value = "";' );
303:
304: js.scriptClose;
305: htp.headClose;
306: htp.bodyOpen;
307: htp.centerOpen;
308:
309: -- Print Org
310:

Line 307: htp.centerOpen;

303:
304: js.scriptClose;
305: htp.headClose;
306: htp.bodyOpen;
307: htp.centerOpen;
308:
309: -- Print Org
310:
311: param(i).Label := FND_MESSAGE.get_string( 'WIP', 'INVENTORY_ORGANIZATION');

Line 329: htp.htmlclose;

325: i := i + 1;
326:
327: BIS_UTILITIES_PUB.Build_Parameter_Form('NAME="param" ACTION="ENG_PARAMETER_ENGCYCLE.Parameter_ActionView_ENGCYCLE" METHOD="GET"', param);
328:
329: htp.htmlclose;
330: end if;
331: END Parameter_FormView_ENGCYCLE;
332:
333: END ENG_PARAMETER_ENGCYCLE;