<%-- /* $Header: formsRecorderInstruct.jsp 12-sep-2006.14:34:50 yxie Exp $ */ /* Copyright (c) 2001, 2006, Oracle. All rights reserved. */ /* DESCRIPTION Forms Transaction Recording Start Page Page. NOTES MODIFIED (MM/DD/YY) yxie 09/12/06 - XbranchMerge yxie_bug-5521573 from main yxie 07/18/06 - Backport yxie_bug-5344920 from main yxie 09/11/06 - Fix bug 5521573 yxie 03/20/06 - Creation */ /** * @version $Header: formsRecorderInstruct.jsp 12-sep-2006.14:34:50 yxie Exp $ * @author yxie * @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.formsapp.FormsappConstants"%> <%@ page import="oracle.sysman.eml.formsapp.data.FormsTxnRecorderData"%> <%@ page import="oracle.sysman.eml.formsapp.data.FormsRecorderInstructionData"%> <%@ include file="/oemTitle.jspf" %> <%@ include file="/oemNoscript.jspf" %> <%@ include file="/oemGlobal.jspf" %> <%! String objectId= null; String codeBase = null; StringBuffer strBuf = null; %> <% FormsRecorderInstructionData formsRecordingData = (FormsRecorderInstructionData) request.getAttribute(FormsappConstants.FORMS_TXN_RECORDING_DATA); FormsTxnRecorderData formsTxnRecorderData = formsRecordingData.getFormsRecorder(); if (formsTxnRecorderData != null) { objectId = formsTxnRecorderData.getRecorderObjID(); codeBase = formsTxnRecorderData.getCodeBase(); strBuf = new StringBuffer(); strBuf.append( "" ); strBuf.append( " \n"); strBuf.append( "\n"); out.println( strBuf.toString() ); } %>