Edit D:\app\Administrator\product\11.2.0\dbhome_1\oc4j\j2ee\oc4j_applications\applications\em\em\paf\prereqResultDetails.jsp
<%-- * Copyright (c) 2001, 2007, Oracle. All rights reserved. * * NAME * prereqResultDetails.jsp * * NOTES * Page to show the prereq results details. * * MODIFIED (MM/DD/YY) VERSION * ptorret 07/10/07 - For changing job details tabname * ktamtor 01/23/06 - Add scheduled time * ktamtor 01/23/06 - translate instance name * vsubrah 12/20/05 - * vsubrah 12/14/05 - Added a tab to display link to steps and jobs * vsagar 11/21/05 - created * * Inputs: * [everything expected by pageButtons.jsp] * DeploymentBean deploymentBean@servletRequest * [everything expected by procedureHGrid.jsp] * [everything expected by templateBase.jspf] --%> <%@ taglib uri="http://xmlns.oracle.com/uix/ui" prefix="uix" %> <%@ taglib uri="http://xmlns.oracle.com/oem/jsp/tag" prefix="oem" %> <uix:buildTree nodeID="baseContent" scope="request"> <uix:header textBinding="PA_STATUS_HDR@paResourceBundle"> <uix:contents> <uix:rowLayout width="100%"> <uix:contents> <uix:cellFormat hAlign="right"> <%-- Buttons for page events (located on top right side) --%> <uix:include node="pageButtons.jsp"/> </uix:cellFormat> </uix:contents> </uix:rowLayout> <uix:spacer height="10" width="10"/> <%-- Instance General Status --%> <uix:header textBinding="PA_STATUS_GENERAL_INFO_HDR@paResourceBundle"> <uix:contents> <uix:spacer height="10" width="10"/> <%-- Instance GUID --%> <uix:formValue nameBinding="PA_INSTANCE_GUID_FORM_VALUE@paResourceBundle" valueBinding="instanceGUID@deploymentBean@servletRequest"/> <uix:messageComponentLayout rows="6" columns="2" fieldWidth="100%"> <uix:contents> <%-- left column row 1 --%> <%-- Instance Name --%> <uix:messageLayout promptBinding="PA_INFO_INSTANCE_NAME_PROMPT@paResourceBundle"> <uix:contents> <uix:styledText textBinding="translatedInstanceName@deploymentBean@servletRequest" styleClass="OraDataText"/> </uix:contents> </uix:messageLayout> <%-- left column row 2 --%> <%-- Procedure Name --%> <uix:messageLayout promptBinding="PA_INFO_PROCEDURE_NAME_PROMPT@paResourceBundle"> <uix:contents> <uix:styledText textBinding="procedureName@deploymentBean@servletRequest" styleClass="OraDataText"/> </uix:contents> </uix:messageLayout> <%-- left column row 3 --%> <%-- Procedure Version --%> <uix:messageLayout promptBinding="PA_INFO_PROCEDURE_VERSION_PROMPT@paResourceBundle"> <uix:contents> <uix:styledText textBinding="procedureVersion@deploymentBean@servletRequest" styleClass="OraDataText"/> </uix:contents> </uix:messageLayout> <%-- left column row 4 --%> <%-- Error Handling Mode --%> <uix:messageLayout promptBinding="PA_INFO_ERROR_HANDLING_PROMPT@paResourceBundle"> <uix:contents> <uix:styledText textBinding="errorHandlingModeString@deploymentBean@servletRequest" styleClass="OraDataText"/> </uix:contents> </uix:messageLayout> <%-- left column row 5 --%> <%-- Instance Status --%> <uix:messageLayout promptBinding="PA_INFO_STATUS_PROMPT@paResourceBundle"> <uix:contents> <uix:styledText textBinding="statusString@deploymentBean@servletRequest" styleClass="OraDataText"/> </uix:contents> </uix:messageLayout> <%-- left column row 6 --%> <%-- Owner of the instance --%> <uix:messageLayout promptBinding="PA_INFO_OWNER_PROMPT@paResourceBundle"> <uix:contents> <uix:styledText textBinding="owner@deploymentBean@servletRequest" styleClass="OraDataText"/> </uix:contents> </uix:messageLayout> <%-- right column row 1 --%> <%-- Date and Time the instance is created --%> <uix:messageLayout promptBinding="PA_INFO_CREATED_ON_PROMPT@paResourceBundle"> <uix:contents> <uix:styledText textBinding="createdOnDateString@deploymentBean@servletRequest" styleClass="OraDataText"/> </uix:contents> </uix:messageLayout> <%-- right column row 2 --%> <%-- Date and Time the instance is scheduled to run --%> <uix:messageLayout promptBinding="SUMMARY_SCHEDULED@jobsResourceBundle"> <uix:contents> <uix:styledText textBinding="scheduledDateString@deploymentBean@servletRequest" styleClass="OraDataText"/> </uix:contents> </uix:messageLayout> <%-- right column row 3 --%> <%-- Date and time the instance starts executing --%> <uix:messageLayout promptBinding="PA_INFO_START_DATE_PROMPT@paResourceBundle"> <uix:contents> <uix:styledText textBinding="startDateString@deploymentBean@servletRequest" styleClass="OraDataText"/> </uix:contents> </uix:messageLayout> <%-- right column row 4 --%> <%-- Last Updated date --%> <uix:messageLayout promptBinding="PA_INFO_LAST_UPDATED_PROMPT@paResourceBundle"> <uix:contents> <uix:styledText textBinding="lastUpdatedString@deploymentBean@servletRequest" styleClass="OraDataText"/> </uix:contents> </uix:messageLayout> <%-- right column row 5 --%> <%-- Date and time the instance is completed --%> <uix:messageLayout promptBinding="PA_INFO_COMPLETED_DATE_PROMPT@paResourceBundle"> <uix:contents> <uix:styledText textBinding="completedDateString@deploymentBean@servletRequest" styleClass="OraDataText"/> </uix:contents> </uix:messageLayout> </uix:contents> </uix:messageComponentLayout> </uix:contents> </uix:header> <uix:spacer height="10" width="10"/> <%-- Procedure HGrid --%> <uix:header textBinding="PA_STATUS_DETAIL_INFO_HDR@paResourceBundle"> <uix:contents> <uix:subTabBar> <uix:contents> <%-- steps link --%> <uix:link textBinding="PA_STEPS_LINK@paResourceBundle" destinationBinding="stepsLink@servletRequest" selected="false"/> <%-- jobs link --%> <uix:link textBinding="PA_JOB_DETAILS@paResourceBundle" destinationBinding="jobsLink@servletRequest" selected="false"/> <%-- Selected link: results link --%> <uix:link textBinding="PA_RESULTS_LINK@paResourceBundle" destinationBinding="resultsLink@servletRequest" selected="true"/> <%-- log file link --%> <uix:link textBinding="PA_OMS_LOG@paResourceBundle" destinationBinding="logLink@servletRequest" selected="false"/> </uix:contents> </uix:subTabBar> <%-- Subtab links --%> <uix:subTabLayout> <uix:contents> <%-- Procedure Detail HGrid --%> <uix:include node="prereqResultHGrid.jsp"/> </uix:contents> </uix:subTabLayout> </uix:contents> </uix:header> </uix:contents> </uix:header> </uix:buildTree> <%@ include file="templateBase.jspf" %>
Ms-Dos/Windows
Unix
Write backup
jsp File Browser version 1.2 by
www.vonloesch.de