<%-- /* $Header: txnUserActionDetails.jsp 18-jul-2007.11:33:43 rgraham Exp $ */ /* Copyright (c) 2001, 2007, Oracle. All rights reserved. */ /* DESCRIPTION NOTES MODIFIED (MM/DD/YY) rgraham 07/18/07 - show related steps for HTTP only andyao 06/23/07 - rgraham 01/05/07 - change cancel event to GenSvcUIConstants.CANCEL_DETAILS_EVENT. andyao 11/09/06 - refactor web transaction UI saramasa 08/23/06 - Backport saramasa_bug_5192469_fix from main saramasa 07/25/06 - Fix for 5192469 - Added Sensitive Values andyao 08/30/05 - fix no auto complete andyao 07/24/05 - add fire partial action andyao 06/16/05 - use display value andyao 06/13/05 - add table summary andyao 03/24/05 - andyao 03/18/05 - andyao 03/10/05 - make password read only andyao 03/03/05 - support template password andyao 01/07/05 - UI feedback andyao 12/23/04 - fix header andyao 11/24/04 - add support for template mode andyao 11/01/04 - add wizard train vjraghav 10/22/04 - vjraghav 10/12/04 - Changing the property dropdowns vjraghav 09/20/04 - Cutting over to the new and official metadata implementation pmadyalk 09/15/04 - pmadyalk_txn_r2_1 pmadyalk 09/14/04 - Txn R2 Changes pmadyalk 21/08/04 - created. */ /** * @version $Header: txnUserActionDetails.jsp 18-jul-2007.11:33:43 rgraham Exp $ * @author pmadyalk * @since release specific (what release of product did this appear in) */ --%> <%@ page contentType="text/html; charset=UTF-8" %> <%@ taglib uri="http://xmlns.oracle.com/uix/ui" prefix="uix" %> <%@ taglib uri="http://xmlns.oracle.com/oem/jsp/tag" prefix="oem" %> <%@ page import="oracle.sysman.eml.mntr.Constants"%> <%@ page import="oracle.sysman.eml.chronos.WebsiteConstants"%> <%@ page import="oracle.sysman.eml.gensvc.GenSvcUIConstants"%> <%@ page import="java.util.Hashtable"%> <%@ page import="oracle.sysman.eml.chronos.data.TransactionData"%> <%@ page import="oracle.sysman.eml.chronos.data.HTTPTxnConfiguration"%> <%@ page import="oracle.sysman.eml.gensvc.GenSvcPageSegmentTypes"%> <%@ include file="/enablePPR.jspf" %> <%@ include file="/oemTitle.jspf" %> <%@ include file="/oemGlobal.jspf"%> <%@ include file="/gensvc/message.jspf" %> <%@ include file="/gensvc/admin/createServiceDetailsTrain.jspf" %> <% TransactionData.Step step = (TransactionData.Step)request.getAttribute("step"); String stepPageHeaderMode = request.getParameter("stepPageHeaderMode"); String stepIdExist = "false"; String defaultHTTPMethod = "false"; if(step != null) { String stepId = step.getId(); if (stepId != null && stepId.trim().length() > 0) { stepIdExist = "true"; } if("false".equals(stepIdExist) && !"edit".equals(stepPageHeaderMode)) defaultHTTPMethod = "true"; } %> <%@ include file="/monitoring/website/txn/txnUserActionList.jsp"%>