<%-- /* $Header: siebelRecorderInstruct.jsp 17-apr-2007.05:26:22 nishriva Exp $ */ /* Copyright (c) 2001, 2007, Oracle. All rights reserved. */ /* DESCRIPTION Forms Transaction Recording Start Page Page. NOTES MODIFIED (MM/DD/YY) nishri 04/17/07 - nishri 04/16/07 - vesrin 12/08/06 - remove rnag 10/22/06 - removing the verify button from this page vesrin 09/13/06 - vesrin 08/23/06 - creation */ /** * @version $Header: siebelRecorderInstruct.jsp 17-apr-2007.05:26:22 nishriva Exp $ * @author vesriniv * @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.cabo.ui.UIConstants"%> <%@ page import="oracle.sysman.eml.siebeltt.SiebelTestTypeConstants"%> <%@ page import="oracle.sysman.eml.siebeltt.data.SiebelTxnRecorderData"%> <%@ page import="oracle.sysman.eml.siebeltt.data.SiebelRecorderInstructionData"%> <%@ include file="/oemTitle.jspf" %> <%@ include file="/oemGlobal.jspf" %> <%! String objectId= null; String codeBase = null; StringBuffer strBuf = null; %> <% SiebelRecorderInstructionData siebelRecordingData = (SiebelRecorderInstructionData) request.getAttribute(SiebelTestTypeConstants.SIEBEL_TXN_RECORDING_DATA); SiebelTxnRecorderData siebelTxnRecorderData = siebelRecordingData.getSiebelRecorder(); if (siebelTxnRecorderData != null) { objectId = siebelTxnRecorderData.getRecorderObjID(); codeBase = siebelTxnRecorderData.getCodeBase(); strBuf = new StringBuffer(); strBuf.append( "" ); strBuf.append( " \n"); strBuf.append( "\n"); out.println( strBuf.toString() ); } %>