Problem displaying table generated by jsp

Hi!
I�m trying to build a dynamic form by calling different servlets from my jsp-page. Somthing goes wrong however, the first <select> generates another <select>, but when the second generates the third, the second <select>-table is overwritten. Why? Can�t I call request.getAttribute more than once?
Please look at my code and help me understand why these strange things happens:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Egendefinierad s�kning</title>
<link href="/taxen/myStyleSheet.css" rel="stylesheet" type="text/css">
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
//-->
</script>
</head>
<body>
<%@ page contentType="text/html; charset=iso-8859-1" language="java" import="java.util.*, taxen.*"%>
<jsp:include page="header.html" flush="true" />
<form name="EgenDefForm1">     
<table width="250" align="center">
     <tr>
          <td width="110">�mneskategori</td>
     <td width="130">
          <select name="subject_category" onChange="MM_jumpMenu('parent',this,0)">
<option value="choose">V&auml;lj</option>
<option value="http://localhost:8080/servlet/taxen.SubjectCategoryHandler?subject_category=Marken">Marken
</option>
<option value="http://localhost:8080/servlet/taxen.SubjectCategoryHandler?subject_category=Skogens_alder">Skogens
&aring;lder </option>
<option value="http://localhost:8080/servlet/taxen.SubjectCategoryHandler?subject_category=Skogens_skador">Skogens
skador </option>
</select>
     </td>
</tr>
</table>
<%
     String s_category = (String) request.getAttribute("SUBJECT_CATEGORY_RESULT");
%>
<%
     if ( s_category != null)
{%>
<table width="250" align="center">
     <tr>
          <td width="110">Underkategori</td>
     <td width="130">
               <select name="sub_group" onChange="MM_jumpMenu('parent',this,0)">
          <option value="http://localhost:8080/servlet/taxen.SubGroupHandler?sub_group=<%=s_category%>">
                         <%     
                              out.println(s_category);
                         %>
                    </option>
                    <option value="http://localhost:8080/servlet/taxen.SubGroupHandler?sub_group=<%=s_category%>">
                         <%     
                              out.println(s_category);
                         %>
                    </option>
               </select>
          </td>          
</tr>
</table>
<%}%>
<%
     String s_group = (String) request.getAttribute("SUB_CAT_RES");
%>
<%
     if ( s_group != null)
{%>
<table width="250" align="center">
     <tr>
          <td width="110">Variabel 1</td>
     <td width="130">
               <select name="variable">
          <option value="<%=s_group%>">
                         <%     
                              out.println(s_group);
                         %>
                    </option>
               </select>
          </td>          
</tr>
</table>
<%}%>
</form>
</body>
</html>
Regards!

This may be your logic problem in the servlet.
I am expecting that you are doing like this.
On submitting the first select request....
In the servlet you setting the request.setAttribute("SUBJECT_CATEGORY_RESULT", ......
This is fine..
when you are submitting the second select request.
In the servlet you are setting the request.setAttribute("SUB_CAT_RES".... only.
But here you should set the request.setAttribute("SUBJECT_CATEGORY_RESULT", ... ALSO
Means both SUBJECT_CATEGORY_RESULT and SUB_CAT_RES should set in request.
Then it will work fine..
naveen

Similar Messages

  • Problem Displaying out Data in JSP

    can anyone have a look at my code? i got some problems to display it in jsp when i run it with eclipse. can anyone help me on this?? did my java bean declared wrongly? thanks...
    this is my java file
    package com;
    import java.io.File;
    import com.db4o.Db4o;
    import com.db4o.ObjectContainer;
    import com.db4o.ObjectSet;
    import org.jfree.chart.*;
    import org.jfree.data.general.*;
    public class StoreData{
         private static final long serialVersionUID = 1L;
         private final static String filename = "C:\\CountryPieChart.yap";
         public static void main(String[] args){
              //Delete the existing file
              new File(filename).delete();
              ObjectContainer db=Db4o.openFile(filename);
              try {
                   StoreAllData();
                   retrieveAllData();
              } finally{
                   db.close();          //Close the database
         public static void StoreAllData() {
              //Delete the existing file
              new File(filename).delete();
              ObjectContainer db = Db4o.openFile(filename);
              //Add data to the database
              CountryPeople countryName_1 = new CountryPeople("Malaysia", 100);
              CountryPeople countryName_2 = new CountryPeople("New Z", 200);
              CountryPeople countryName_3 = new CountryPeople("UK", 300);
              CountryPeople countryName_4 = new CountryPeople("Thailand", 400);
              CountryPeople countryName_5 = new CountryPeople("Singapore", 50);
              //set the value to database
              db.set(countryName_1);
              db.set(countryName_2);
              db.set(countryName_3);
              db.set(countryName_4);
              db.set(countryName_5);
         public static void retrieveAllData() {
              //Open db
              ObjectContainer db = Db4o.openFile(filename);
              //Retrieve via empty object
              CountryPeople cName = new CountryPeople(null, 0);
              ObjectSet result = db.get(cName);
              DefaultPieDataset dataset = new DefaultPieDataset();
              //retrieve the data from database
              while(result.hasNext()) {
                   CountryPeople obj = (CountryPeople) result.next();
                   dataset.setValue(obj.getName(), obj.getValue());
                   //System.out.println(result.next());
              //Create pie chart
              JFreeChart chart = ChartFactory.createPieChart(
                        "Sample Chart",
                        dataset,     
                        true,
                        true,
                        false);
              try {
                   //save the pie chart as JPEG file
                   ChartUtilities.saveChartAsJPEG(new File("C:\\CountryPieChart.jpg"), chart, 500, 300);
              } catch(Exception e) {
                   System.out.println("Problem for creating chart");
    and this is my jsp file
    <jsp:useBean id="myStoreData" class="com.StoreData" scope="page"></jsp:useBean>
    <html>
    <head><title>Testing Displaying</title>
    </head>
    <body>
    <b>Testing Display Page</b>
    <img src="<jsp:getProperty name="myStoreData" property="getFileName" /> /">
    </body>
    </html>

    <img src="<jsp:getProperty name="myStoreData" property="getFileName" /> /">
    property="getFileName": There isnt such a property available in your bean.

  • Problem displaying table (JTABLE), can u help me?

    Hi 2 all.
    I'm beginer in java (I have expirience of some yoears developing in pro-C, but not java).
    I try to create some JDialog using Intellig Idea7. There I create JTable component, try to initialize it with values in the array (that was inialized before)
    (ex:
    JTable table1 = new JTable(data_string_array, row_names_array);
    The problem is when I try to make & run application, there is nothing displayed.
    On "debug prints" ( print(table1.getValueAt(0,0)); ) where I try to print values of the table - everything is right. it print right values, but then aren't displayed on the dialog window.
    What could be a problem?
    here is example of the code:
    import javax.swing.*;
    import java.awt.event.*;
    * Created by IntelliJ IDEA.
    * User: db2admin
    * Date: Jul 10, 2008
    * Time: 11:53:43 AM
    * To change this template use File | Settings | File Templates.
    public class frame1 extends JFrame{
    private JPanel contentPane;
    private JButton buttonOK;
    private JButton buttonCancel;
    private JTable table1;
    private JScrollPane scrollpane;
    public frame1 ()
    contentPane = new JPanel();
    setContentPane(contentPane);
    getRootPane().setDefaultButton(buttonOK);
    // Create table data:
    Object[][] data_matrix = {
    {"one", "two"},
    {"five", "six"},
    {"nine", "ten"},
    Object[] row_names = {"1row1", "2row2"};
    // create new table instance
    table1 = new JTable(data_matrix, row_names);
    scrollpane = new JScrollPane(table1);
    System.out.println("this print");
    buttonOK.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent e)
    onOK();
    buttonCancel.addActionListener(new ActionListener()
    public void actionPerformed(ActionEvent e)
    onCancel();
    // call onCancel() when cross is clicked
    setDefaultCloseOperation(DO_NOTHING_ON_CLOSE);
    addWindowListener(new WindowAdapter()
    public void windowClosing(WindowEvent e)
    onCancel();
    // call onCancel() on ESCAPE
    contentPane.registerKeyboardAction(new ActionListener()
    public void actionPerformed(ActionEvent e)
    onCancel();
    }, KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE, 0), JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT);
    private void onOK()
    // add your code here
    //dispose();
    private void onCancel()
    // add your code here if necessary
    dispose();
    public static void main(String[] args)
    frame1 dialog = new frame1();
    dialog.pack();
    dialog.setVisible(true);
    System.out.println("This is other print");
    //JTableDemo demo = new JTableDemo();
    //System.exit(0);
    P.S. Other question: what principal difference in creating simple forms as JFrame or JDialog?

    Hi!
    Well, I don't know what IntellyJ makes, but
    1) I can't see where the buttons are created, so addActionListener throws NPE.
    2) I can't see where the scrollPane is added to the contentPane
    Andras_

  • I have a problem when a generate a jsp page

    I hope some one can help me i generate a application module with jdeveloper release 3.1 So when i try to run my application module with jsp i found the next error..
    I don't know why..
    Error Message: JBO-25222: Unable to create application module.
    Error Message: JBO-25002: Definition webjsp1.Webjsp1Module of type
    ApplicationModule not found

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Juan Oropeza ([email protected]):
    Make sure you build you middle tier project prior to running the jsp client.<HR></BLOCKQUOTE>
    Hablas espaqol???
    Lo que pasa es que no me quedo muy claro lo de construir un middle tier project prior para correr el cliente JSP, me puedes orientar por favor. De hecho al correr un Applet desde codigo HTML, me saca el mismo error :
    DAC-405: SessionInfo: Application module creation failed; className: MioModule
    JBO-25222 unable to create application module. null
    Nuevamente te agradezco, tu tiempo
    null

  • display:table.... /display:table   export problem

    HI,
    when I wrote in the jsp:
    <display:table pagesize="30" class="isis" name="contacts" export="true">
    <display:column property="firstName"/>
    <display:column property="lastName"/>
    <display:column property="title"/>
    <display:column property="gender"/>
    <display:column property="phoneNumber"/>
    <display:column property="email"/>
    <display:column property="country.phonePrefix" title="Country"/>
    <display:column property="birthdate"/>
    </display:table>
    There are Export | CSV | EXCL |xmL for users to export the table.
    But when I click the CSV, there are nothing to do,
    How can I do that?
    thanks,

    Hi jcatino ,
    Thank you very much.
    But I also have another problem:
    <display:table pagesize="20" class="isis" name="subscribers" id="subscriber" export="true" requestURI="manageContact.do">
    <display:column sortable="true" >
    <c:out value="${subscriber.UID}"/>
    </display:column>
              <logic:iterate id="group" name="groups" indexId="index2">
                   <logic:iterate id="extendedProfile" name="subscriber" property="extendedProfiles">
                   <logic:equal name="extendedProfile" property="source.id" value="${group.id}">
                        <display:column title="${group.name}">${extendedProfile.actualValue}</display:column>
                   </logic:equal>
              </logic:iterate>
              </logic:iterate>
         </display:table>
    The result that I got from clicking the "CSV" is that:
    "<a href=\"manageContact.do?contactId=10&task=do_edit\">
    10
    </a>",VW Jetta owners,2005-3-2 00:00:00.000000000,aa,2233,2006-10-30 00:00:00.000000000,[email protected],12345
    "<a href=\"manageContact.do?contactId=11&task=do_edit\">
    11
    </a>",VW Jetta owners,2004-2-28 00:00:00.000000000,aa,aacc,2006-11-30 00:00:00.000000000,[email protected],12345
    How can I delete the <a..............> </a> ?
    I have read information from the website : http://displaytag.sourceforge.net/configuration.html
    However, I have no idea to solve it?
    thanks you
    happybaobao

  • Problems adding an attachment file table in a JSP

    Hi,
    I'm working on CRM proyect and I want to add an attachment file table in a JSP, infoForm.jsp, so i copied the table
    from createComplaintAttachment.jsp and changed the JSPs releted with it, but when I just loggin and try to add
    a file in infoForm.jsp I get an Error Page and the following...
    #1.5#00156004D798005E0000009F000072D100043A9AAAE45CBD#1190335873308#com.sap.icss.impl.backend.crm.servicerequest.AttachmentBEImpl#sap.com/home~icss_sbx#com.sap.icss.impl.backend.crm.servicerequest.AttachmentBEImpl#J2EE_GUEST#2##mvicrd_CRD_209672450#Guest#c069617067dc11dcbc1a00156004d798#SAPEngine_Application_Thread[impl:3]_32##0#0#Error#1#/Applications/Common/Infrastructure#Java###An error occurred in method:
    #2#add(attachment)#com.sap.icss.util.IcssException: Cannot add attachment
         at com.sap.icss.impl.backend.crm.servicerequest.AttachmentBEImpl.add(AttachmentBEImpl.java:144)
         at com.sap.icss.impl.businessobject.servicerequest.AttachmentBOImpl.add(AttachmentBOImpl.java:146)
         at com.sap.icss.ctrl.action.servicerequest.AddRequestAttachmentAction.doIcssPerform(AddRequestAttachmentAction.java:175)
         at com.sap.icss.ctrl.action.IcssBaseAction.execute(IcssBaseAction.java:325)
         at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
         at com.sap.isa.core.RequestProcessor.processActionPerform(RequestProcessor.java:674)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
         at com.sap.isa.core.RequestProcessor.process(RequestProcessor.java:391)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
         at com.sap.isa.core.ActionServlet.process(ActionServlet.java:243)
         at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    #1.5#00156004D798005E000000A0000072D100043A9AAAE46208#1190335873310#com.sap.icss.ctrl.action.servicerequest.AddRequestAttachmentAction#sap.com/home~icss_sbx#com.sap.icss.ctrl.action.servicerequest.AddRequestAttachmentAction#J2EE_GUEST#2##mvicrd_CRD_209672450#Guest#c069617067dc11dcbc1a00156004d798#SAPEngine_Application_Thread[impl:3]_32##0#0#Error##Plain###The following error occured:  com.sap.icss.util.IcssException: AttachmentBOImpl:add - Error in getBackend
         at com.sap.icss.impl.businessobject.servicerequest.AttachmentBOImpl.add(AttachmentBOImpl.java:157)
         at com.sap.icss.ctrl.action.servicerequest.AddRequestAttachmentAction.doIcssPerform(AddRequestAttachmentAction.java:175)
         at com.sap.icss.ctrl.action.IcssBaseAction.execute(IcssBaseAction.java:325)
         at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
         at com.sap.isa.core.RequestProcessor.processActionPerform(RequestProcessor.java:674)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
         at com.sap.isa.core.RequestProcessor.process(RequestProcessor.java:391)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
         at com.sap.isa.core.ActionServlet.process(ActionServlet.java:243)
         at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    the strange thing is that i don't get that error if I get into the complaintCreateHeader.jsp (complaint) first, and my
    application works well if I do so. ¬¬
    I think i'm missing an attribute on the request but i don't know wich one.
    Thanks a lot for any help

    Thanks Prashant,
    Level 1 of the problem is solved.
    Now I want When I click on the workset iview link,
    It should open another workset iview in which the iviews are displayed as links.
    Page 1
      (Workset Iview1)Clickable                                                    Workset Iview2 Clickable
    When workset iview1 is clicked, it should go to a page
    Link 1(an iview) Link 2(iview2) Link 3(iview3) and so on
    how can I achieve this?

  • Problem with displaying BLOB images on JSP page using a servlet

    hi. I have a big problem with displaying BLOB images using JSP. I have a servlet that connects to the oracle database, gets a BLOB image , reads it, and then displays it using a BinaryStream. The problem is , this works only when i directly call that servlet, that is http://localhost:8080/ImageServlet. It doesn't work when i try to use that servlet to display my image on my JSP page (my JSP page displays only a broken-image icon ) I tried several coding approaches with my servlet (used both Blob and BLOB objects), and they work just fine as long as i display images explicitly using only the servlet.
    Here's what i use : ORACLE 10g XE , Eclipse 3.1.2, Tomcat 5.5.16 , JDK 1.5
    here is one of my image servlet's working versions (the essential part of it) :
                   BLOB blob=null;
              rset=st.executeQuery("SELECT * FROM IMAGES WHERE ID=1");
              while (rset.next())
                   blob=((OracleResultSet)rset).getBLOB(2);
              response.reset();
              response.setContentType("image/jpeg");
              response.addHeader("Content-Disposition","filename=42.jpeg");
                    ServletOutputStream ostr=response.getOutputStream();
                   InputStream istr=blob.getBinaryStream(1L);
                    int size=blob.getBufferSize();
              int len=-1;
                    byte[] buff = new byte[size];
                         while ((len=istr.read( buff ))!=-1 ) {
                   ostr.write(buff,0,len);
             response.flushBuffer();
             ostr.close(); and my JSP page code :
    <img src="/ImageServlet" border="0"  > If you could just tell me what i'm doing wrong here , or if you could show me your own solutions to that problem , i would be very greatful ,cos i'm realy stuck here , and i'm rather pressed for time too. Hope someone can help.

    I turns out that it wasn't that big of a problem after all. All i had to do was to take the above code and place it into another JSP page instead of into a servlet like i did before. Then i just used that page as a source for my IMG tag in my first JSP. It works perfectly well. Why this doesn't work for servlets i still don't know, but it's not a problem form me anymore . Ofcourse if someone knows the answer , go ahead and write. I would still appriceatte it.
    here's the magic tag : <img src="ImageJSP.jsp" border="0"  > enjoy : )

  • PDF export - problems with displaying tables

    Hi,
    I have nice and neat rtf template with some text and big table. It looks fine, but when I export it to PDF it starts the table from new page, not just below the text, which results in 75% blank page. How can I fix it?

    We are using the PDF Export 8.3.7 version, and are having a similar problem. We have a Word file (.doc) with an embedded graphic. Inside the graphic is a table (the original graphic was created some where else and had text and a table, then an image was made of that which was then embedded as a graphic in the Word document). The problem is that the table does not render corretly - the last row of data is not displayed. Oddly, if in the resulting PDF/A output you highlight the region where the data should be displayed, and copy that to Word/Notepad, the data is there, the issue seems to be in rendering the data to make it visible in the rendered PDF/A output. We see other problems with tables in other files, for example some tables are rotated ninety degrees.
    Will there be a fix to PDFExport anytime soon?
    Thanks,
    Kevin

  • About the   display:table.... /display:table      problem

    Hi,
    <display:table name="contacts" export="true" >
    <display:column property="firstName" />
    <display:column property="lastName" />
    <display:column property="title" />
    <display:column property="gender" />
    <display:column property="phoneNumber" />
    <display:column property="email" />
    <display:column property="country.phonePrefix" title="Country" />
    <display:column property="birthdate" />
    </display:table>
    I wrote those codes,
    But why the color is only gray? How can I get the color yellow?
    Is it the reason I missed something?
    thanks you very much,

    Hi,
    I define a css file (bizCasterD.css) like that:
    th { font-family: Verdana, Geneva, sans-serif; font-size: 12px; vertical-align: top; text-align: left; }
    th.headerdisplay { color: #FFFFFF; background: #172972; font-family: Verdana, Geneva, sans-serif; font-size: 12px; border: 1px #FFFFFF solid; cell-padding : 0px; cell-spacing: 0px; display: table-header-group;}
    td { color: #FFFFFF; font-color: #FFFFFF; font-family: Verdana, Geneva, sans-serif; font-size: 12px; vertical-align: top; }
    td.itemlist { color: #3A6EA5; background-color: #FFFFFF; font-family: Verdana, Geneva, sans-serif; font-size: 12px; vertical-align: top; border: 1px #3A6EA5 solid; cell-padding : 0px; cell-spacing: 0px;}
    then in the jsp:
    <display:table name="contacts" export="true" >
    <display:column headerClass="headerdisplay" property="firstName" />
    <display:column headerClass="headerdisplay" property="lastName" />
    <display:column headerClass="headerdisplay" property="title" />
    <display:column headerClass="headerdisplay" property="gender" />
    <display:column headerClass="headerdisplay" property="phoneNumber" />
    <display:column headerClass="headerdisplay" property="email" />
    <display:column headerClass="headerdisplay" property="country.phonePrefix" title="Country" />
    <display:column headerClass="headerdisplay" property="birthdate" />
    </display:table>
    Unfortunately, the color is always grays, How can I do?
    thank you very much,

  • How to export only the data displayed in table of a jsp page to Excel

    Hi All,
    I want to export only the data that is displayed in the table of a jsp page to excel. But with my current code everything is getting exported to excel.
    <input type="checkbox" name="download" onclick = "form.submit()"/> Export to Excel
    response.setContentType("application/vnd.ms-excel");
    response.setHeader("Content-disposition", "inline; filename=fileName.xls");
    the table is displayed in the jsp using the following code:
    <table cellspacing="2" cellpadding="3" border="1"
    width="100%"> <tr> <%for (int i = 2; i <= cols; i++) {%>
    <td>
    <%
    out.println( rsmd.getColumnName(i) + " ");
    } %>
    <% while (rsettaba.next ())
    out.println("<tr>");
    for (int j= 2; j <= cols ; j++) {
    //out.println("<td>"+rsetallcl.getString(j)+"</td>");
    String varnl = rsettaba.getString(j);
    if ( varnl == null )
    out.println("<td> Empty </td>");
    else
    out.println("<td>"+rsettaba.getString(j)+"</td>");
    out.println("</tr>");
    %>
    </td>
    </tr>
    </table>
    please can anyone help how to just extract only the data in the table of a jsp page to excel.
    Edited by: Ramky48 on Dec 9, 2009 9:51 PM

    Ramky48,
    Why did you open a new thread when you had gotten quite a few responses and suggestions on the [url http://forums.oracle.com/forums/thread.jspa?threadID=998411]thread where you asked the same question - seems the best thing to do would be to continue on the same thread?
    However, your question has nothing to do with JDeveloper/ADF. If you'd like to do it the ADF way, it's trivially easy - you can use the [url http://download.oracle.com/docs/cd/E15523_01/apirefs.1111/e12419/tagdoc/af_exportCollectionActionListener.html]af:exportCollectionActionListener component, which does what you are asking for. If you want to use a straight JSP way, there were several good suggestions in the other thread you opened, or Googling "jsp export to excel" will get you about 4.6 million hits; the first 10 or so look pretty promising.
    John

  • Table Generator JSp

    Hi ALL
    I have a question about Table Generator JSP.
    How to work with with Table Generator JSP. I have to create one table generator JSP. With the help of this jsp i have to show data on other JSPs.
    Every Help Will Be Appreciated !

    Not an easy for sure.
    Hints:
    1. Write a custom tag to generate table. Include this tag in any JSP page of your application.
    2. A table is two dimensional view having multiple rows and columns.
    3. You can use a list of value objects to render data in your table.
    4. You can take list (probably a java.util.List) name column names and data source for each column (perhaps method name of your value object) as input to the tag.
    5. In your tag get the list object from session/pageContext. Then iterate through this list and using java reflection obtain column values & render rows.
    You can replace step 3, 4 and 5 by:
    Take two dimensional array of objects (like javax.swing.JTable) as input to the tag to render table data. Also, take a String array to render table header.
    Whatever approach you follow, pass object names as tag attribute and make original object available as attribute in session or page scope.
    Thanks,
    Mrityunjoy

  • Problems displaying swedish characters !

              Hi !
              I have a very strange problem, which I have been struggling with for a while now.
              I have a JSP page which calls Java classes to generate a HTML table. I define the
              basic structure of the table in the JSP file, such as which fields should be in it etc..
              The Java classes makes a call to an Oracle database and fetches the records in a
              recordset.
              On the JSP page I call a method which generates the HTML table from the recordset
              and returns a string to the page. I have a lot of swedish characters in some of the
              columns, and they display fine. At least when the table is not that big....
              Example:
              I populate the table with 24 records and swedish chars (åöä) looks ok, but when I
              populate the table with 25 records the swedish chars displays as jibberish.
              For example: 'ö' => 'ö'
              What seems strange to me is that it looks like its depending on the amount of data
              that I return to the JSP page. In the logfiles all characters seems to be ok.
              Content-Type is set to 'iso-8859-1', if I change to 'UTF-8' they look ok.
              Unfortunately I cannot set UTF-8 as the content-type due to
              restrictions on the rest of the website.
              And since it seems that if I only send a smaller amount of data
              to the browser it looks ok, so there must be some way out of this...
              Has anybody got any clues ??
              regards,
              /Magnus
              

    Solved the problem....
              I did not use the PrintWriter in the 'response' object to write the HTML-table, I
              simply just sent out a big string to the page which got corrupted when reaching
              a certain size.
              Solved it by using the PrintWriter instead.
              /Magnus
              Magnus Rosenquist wrote:
              > Hi !
              >
              > I have a very strange problem, which I have been struggling with for a while now.
              >
              > I have a JSP page which calls Java classes to generate a HTML table. I define the
              > basic structure of the table in the JSP file, such as which fields should be in it etc..
              > The Java classes makes a call to an Oracle database and fetches the records in a
              > recordset.
              >
              > On the JSP page I call a method which generates the HTML table from the recordset
              > and returns a string to the page. I have a lot of swedish characters in some of the
              > columns, and they display fine. At least when the table is not that big....
              >
              > Example:
              > I populate the table with 24 records and swedish chars (åöä) looks ok, but when I
              > populate the table with 25 records the swedish chars displays as jibberish.
              > For example: 'ö' => 'ö'
              >
              > What seems strange to me is that it looks like its depending on the amount of data
              > that I return to the JSP page. In the logfiles all characters seems to be ok.
              >
              > Content-Type is set to 'iso-8859-1', if I change to 'UTF-8' they look ok.
              > Unfortunately I cannot set UTF-8 as the content-type due to
              > restrictions on the rest of the website.
              >
              > And since it seems that if I only send a smaller amount of data
              > to the browser it looks ok, so there must be some way out of this...
              >
              > Has anybody got any clues ??
              >
              > regards,
              > /Magnus
              Magnus Rosenquist
              Mobile Mind AB
              +46 (0)63 12 49 30 (Phone)
              +46 (0)702 69 41 72 (Mobile)
              mailto:[email protected]
              http://www.mobilemind.se
              

  • Displaying tables with dynamic number of columns

    Hello,
    I'm pretty new to JSF. Currently I'm working on a project where I have to select a table from a list, and then make it browsable/editable. The problem I have is that the different tables also have a different number of columns.
    I have no problem displaying different tables if the number of coulumns stays the same (using h:datatable) but when it's dynamic, I don't know how I can have my JSP to adjust to support the varying number of columns.
    Has anyone got an example of dynamic datatable or maybe someone can point me in the right direction.
    Brimborian

    Hi daniel,
    1. There is an INDEPENDENT FORM
      whose inputs are FIELD LIST
      and from those, it consructs dynamic table.
    2. Here is the program.
    the dynamic table name will be
    <DYNTABLE>.
    3. U can use this program (FORM in this program)
    to generate any kind of internal table
    by specifying some inputs (ie. field list)
    4.
    REPORT abc.
    COMPULSORY
    FIELD-SYMBOLS: <dyntable> TYPE ANY TABLE.
    FIELD-SYMBOLS: <dynline> TYPE ANY.
    DATA: lt TYPE lvc_t_fcat.
    DATA: ls TYPE lvc_s_fcat.
    FIELD-SYMBOLS: <fld> TYPE ANY.
    DATA : fldname(50) TYPE c.
    PARAMETERS : infty(4) TYPE c OBLIGATORY.
    DATA : iname LIKE dd02l-tabname.
    START-OF-SELECTION.
    GET INFO
    CONCATENATE 'P' infty INTO iname.
    DATA : ddfields LIKE ddfield OCCURS 0 WITH HEADER LINE.
    CALL FUNCTION 'DD_NAMETAB_TO_DDFIELDS'
    EXPORTING
    tabname = iname
    TABLES
    ddfields = ddfields.
    CONSTRUCT FIELD LIST
    LOOP AT ddfields.
    ls-fieldname = ddfields-fieldname.
    APPEND ls TO lt.
    ENDLOOP.
    PERFORM
    PERFORM mydyntable USING lt.
    BREAK-POINT.
    INDEPENDENT FORM
    FORM mydyntable USING lt TYPE lvc_t_fcat .
    Create Dyn Table From FC
    FIELD-SYMBOLS: <fs_data> TYPE REF TO data.
    FIELD-SYMBOLS: <fs_1>.
    FIELD-SYMBOLS: <fs_2> TYPE ANY TABLE.
    DATA: lt_data TYPE REF TO data.
    ASSIGN lt_data TO <fs_data>.
    CALL METHOD cl_alv_table_create=>create_dynamic_table
    EXPORTING
    it_fieldcatalog = lt
    IMPORTING
    ep_table = <fs_data>
    EXCEPTIONS
    generate_subpool_dir_full = 1
    OTHERS = 2.
    IF sy-subrc <> 0.
    ENDIF.
    Assign Dyn Table To Field Sumbol
    ASSIGN <fs_data>->* TO <fs_1>.
    ASSIGN <fs_1> TO <fs_2>.
    ASSIGN <fs_1> TO <dyntable>.
    ENDFORM. "MYDYNTABLE
    regards,
    amit m.

  • How do i display jasper reports using jsp

    Can anyone help me to display jasper reports in jsp pages
    Thanx in advance

    hi
    Thank you for such a great answer.
    I have a problem here,
    When i generate report using this code all other report formats are generated very good, but the html report is not generated properly. i get nullpx in the img src e.g
    <td><img alt="" src="nullpx" style="width: 20px; height: 1px;"/></td>
    Please help me
    and
    Thanks in advance
    snkr
    Following is the html code of the generated report.
    start--------------------------------------
    =======================================================
    <html>
    <head>
    <title></title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    <style type="text/css">
    a {text-decoration: none}
    </style>
    </head>
    <body text="#000000" link="#000000" alink="#000000" vlink="#000000">
    <table width="100%" cellpadding="0" cellspacing="0" border="0">
    <tr><td width="50%"> </td><td align="center">
    <a name="JR_PAGE_ANCHOR_0_1"/>
    <table style="width: 620px" cellpadding="0" cellspacing="0" border="0" bgcolor="white">
    <tr>
    <td><img alt="" src="nullpx" style="width: 200px; height: 1px;"/></td>
    <td><img alt="" src="nullpx" style="width: 10px; height: 1px;"/></td>
    <td><img alt="" src="nullpx" style="width: 200px; height: 1px;"/></td>
    <td><img alt="" src="nullpx" style="width: 10px; height: 1px;"/></td>
    <td><img alt="" src="nullpx" style="width: 135px; height: 1px;"/></td>
    <td><img alt="" src="nullpx" style="width: 45px; height: 1px;"/></td>
    <td><img alt="" src="nullpx" style="width: 20px; height: 1px;"/></td>
    </tr>
    <tr valign="top">
    <td colspan="8"><img alt="" src="nullpx" style="width: 640px; height: 30px;"/></td>
    </tr>
    <tr valign="top">
    <td><img alt="" src="nullpx" style="width: 20px; height: 60px;"/></td>
    <td colspan="5" valign="middle" style="text-align: center;"><span style="font-family: sansserif; font-size: 20.0px; font-weight: bold;">
                       Report Background Demo
    </span></td>
    <td colspan="2"><img alt="" src="nullpx" style="width: 65px; height: 60px;"/></td>
    </tr>
    <tr valign="top">
    <td><img alt="" src="nullpx" style="width: 20px; height: 24px;"/></td>
    <td><span style="font-family: Times; font-size: 13.0px; font-weight: bold;">Parent_ID</span></td>
    <td><img alt="" src="nullpx" style="width: 10px; height: 24px;"/></td>
    <td><span style="font-family: Times; font-size: 13.0px; font-weight: bold;">Product_ID:</span></td>
    <td><img alt="" src="nullpx" style="width: 10px; height: 24px;"/></td>
    <td colspan="3"><span style="font-family: Times; font-size: 13.0px; font-weight: bold;">Name:</span></td>
    </tr>
    <tr valign="top">
    <td colspan="8"><img alt="" src="nullpx" style="width: 640px; height: 6px;"/></td>
    </tr>
    <tr valign="top">
    <td><img alt="" src="nullpx" style="width: 20px; height: 24px;"/></td>
    <td><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">0</span></td>
    <td><img alt="" src="nullpx" style="width: 10px; height: 24px;"/></td>
    <td><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">001</span></td>
    <td><img alt="" src="nullpx" style="width: 10px; height: 24px;"/></td>
    <td colspan="3"><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">Colour Cosmetcis</span></td>
    </tr>
    <tr valign="top">
    <td colspan="8"><img alt="" src="nullpx" style="width: 640px; height: 6px;"/></td>
    </tr>
    <tr valign="top">
    <td><img alt="" src="nullpx" style="width: 20px; height: 24px;"/></td>
    <td><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">001</span></td>
    <td><img alt="" src="nullpx" style="width: 10px; height: 24px;"/></td>
    <td><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">001-001</span></td>
    <td><img alt="" src="nullpx" style="width: 10px; height: 24px;"/></td>
    <td colspan="3"><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">Lipsticks</span></td>
    </tr>
    <tr valign="top">
    <td colspan="8"><img alt="" src="nullpx" style="width: 640px; height: 6px;"/></td>
    </tr>
    <tr valign="top">
    <td><img alt="" src="nullpx" style="width: 20px; height: 24px;"/></td>
    <td><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">001</span></td>
    <td><img alt="" src="nullpx" style="width: 10px; height: 24px;"/></td>
    <td><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">001-321</span></td>
    <td><img alt="" src="nullpx" style="width: 10px; height: 24px;"/></td>
    <td colspan="3"><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">Eye Shadow</span></td>
    </tr>
    <tr valign="top">
    <td colspan="8"><img alt="" src="nullpx" style="width: 640px; height: 6px;"/></td>
    </tr>
    <tr valign="top">
    <td><img alt="" src="nullpx" style="width: 20px; height: 24px;"/></td>
    <td><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">001</span></td>
    <td><img alt="" src="nullpx" style="width: 10px; height: 24px;"/></td>
    <td><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">001-322</span></td>
    <td><img alt="" src="nullpx" style="width: 10px; height: 24px;"/></td>
    <td colspan="3"><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">Shankar</span></td>
    </tr>
    <tr valign="top">
    <td colspan="8"><img alt="" src="nullpx" style="width: 640px; height: 6px;"/></td>
    </tr>
    <tr valign="top">
    <td><img alt="" src="nullpx" style="width: 20px; height: 24px;"/></td>
    <td><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">001-322</span></td>
    <td><img alt="" src="nullpx" style="width: 10px; height: 24px;"/></td>
    <td><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">001-322-001</span></td>
    <td><img alt="" src="nullpx" style="width: 10px; height: 24px;"/></td>
    <td colspan="3"><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">test</span></td>
    </tr>
    <tr valign="top">
    <td colspan="8"><img alt="" src="nullpx" style="width: 640px; height: 6px;"/></td>
    </tr>
    <tr valign="top">
    <td><img alt="" src="nullpx" style="width: 20px; height: 24px;"/></td>
    <td><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">001-322</span></td>
    <td><img alt="" src="nullpx" style="width: 10px; height: 24px;"/></td>
    <td><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">001-322-002</span></td>
    <td><img alt="" src="nullpx" style="width: 10px; height: 24px;"/></td>
    <td colspan="3"><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">Parikchya</span></td>
    </tr>
    <tr valign="top">
    <td colspan="8"><img alt="" src="nullpx" style="width: 640px; height: 6px;"/></td>
    </tr>
    <tr valign="top">
    <td><img alt="" src="nullpx" style="width: 20px; height: 24px;"/></td>
    <td><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">001</span></td>
    <td><img alt="" src="nullpx" style="width: 10px; height: 24px;"/></td>
    <td><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">001-323</span></td>
    <td><img alt="" src="nullpx" style="width: 10px; height: 24px;"/></td>
    <td colspan="3"><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">test</span></td>
    </tr>
    <tr valign="top">
    <td colspan="8"><img alt="" src="nullpx" style="width: 640px; height: 6px;"/></td>
    </tr>
    <tr valign="top">
    <td><img alt="" src="nullpx" style="width: 20px; height: 24px;"/></td>
    <td><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">001</span></td>
    <td><img alt="" src="nullpx" style="width: 10px; height: 24px;"/></td>
    <td><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">001-324</span></td>
    <td><img alt="" src="nullpx" style="width: 10px; height: 24px;"/></td>
    <td colspan="3"><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">first</span></td>
    </tr>
    <tr valign="top">
    <td colspan="8"><img alt="" src="nullpx" style="width: 640px; height: 6px;"/></td>
    </tr>
    <tr valign="top">
    <td><img alt="" src="nullpx" style="width: 20px; height: 24px;"/></td>
    <td><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">001-324</span></td>
    <td><img alt="" src="nullpx" style="width: 10px; height: 24px;"/></td>
    <td><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">001-324-001</span></td>
    <td><img alt="" src="nullpx" style="width: 10px; height: 24px;"/></td>
    <td colspan="3"><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">first</span></td>
    </tr>
    <tr valign="top">
    <td colspan="8"><img alt="" src="nullpx" style="width: 640px; height: 6px;"/></td>
    </tr>
    <tr valign="top">
    <td><img alt="" src="nullpx" style="width: 20px; height: 24px;"/></td>
    <td><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">0</span></td>
    <td><img alt="" src="nullpx" style="width: 10px; height: 24px;"/></td>
    <td><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">002</span></td>
    <td><img alt="" src="nullpx" style="width: 10px; height: 24px;"/></td>
    <td colspan="3"><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">hair Cleaner</span></td>
    </tr>
    <tr valign="top">
    <td colspan="8"><img alt="" src="nullpx" style="width: 640px; height: 6px;"/></td>
    </tr>
    <tr valign="top">
    <td><img alt="" src="nullpx" style="width: 20px; height: 24px;"/></td>
    <td><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">002</span></td>
    <td><img alt="" src="nullpx" style="width: 10px; height: 24px;"/></td>
    <td><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">002-001</span></td>
    <td><img alt="" src="nullpx" style="width: 10px; height: 24px;"/></td>
    <td colspan="3"><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">Kumar</span></td>
    </tr>
    <tr valign="top">
    <td colspan="8"><img alt="" src="nullpx" style="width: 640px; height: 6px;"/></td>
    </tr>
    <tr valign="top">
    <td><img alt="" src="nullpx" style="width: 20px; height: 24px;"/></td>
    <td><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">002</span></td>
    <td><img alt="" src="nullpx" style="width: 10px; height: 24px;"/></td>
    <td><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">002-002</span></td>
    <td><img alt="" src="nullpx" style="width: 10px; height: 24px;"/></td>
    <td colspan="3"><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">Magilla Gorilla</span></td>
    </tr>
    <tr valign="top">
    <td colspan="8"><img alt="" src="nullpx" style="width: 640px; height: 6px;"/></td>
    </tr>
    <tr valign="top">
    <td><img alt="" src="nullpx" style="width: 20px; height: 24px;"/></td>
    <td><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">002</span></td>
    <td><img alt="" src="nullpx" style="width: 10px; height: 24px;"/></td>
    <td><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">002-003</span></td>
    <td><img alt="" src="nullpx" style="width: 10px; height: 24px;"/></td>
    <td colspan="3"><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">astrigent</span></td>
    </tr>
    <tr valign="top">
    <td colspan="8"><img alt="" src="nullpx" style="width: 640px; height: 6px;"/></td>
    </tr>
    <tr valign="top">
    <td><img alt="" src="nullpx" style="width: 20px; height: 24px;"/></td>
    <td><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">0</span></td>
    <td><img alt="" src="nullpx" style="width: 10px; height: 24px;"/></td>
    <td><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">003</span></td>
    <td><img alt="" src="nullpx" style="width: 10px; height: 24px;"/></td>
    <td colspan="3"><span style="font-family: Times; font-size: 15.0px; font-weight: bold;">test1</span></td>
    </tr>
    <tr valign="top">
    <td colspan="8"><img alt="" src="nullpx" style="width: 640px; height: 96px;"/></td>
    </tr>
    <tr valign="top">
    <td colspan="8"><img alt="" src="nullpx" style="width: 640px; height: 170px;"/></td>
    </tr>
    </table>
    </td><td width="50%"> </td></tr>
    </table>
    </body>
    </html>
    end------------------------------
    ========================================================

  • How to USE Display Tag in my jsp pageInMy JDBC program in NetBeans 5

    I want my program 2 fetch Data from the database and display in the nice format provided by the Display Tags.. I have simple JSP pages, without using any Beans. I m running netBeans 5.
    What is the Solution to display my Table data in JSP display Tags facility.
    reply soon ...
    tht help me a lot

    Hello,
    I am not sure how far you got with this display tag. I had issues added the displaytag lib and the dependencies to my library. On the right-hand side of Netbeans, under Project, under the war directory of the application, I was able to add the libraries to my project. It stop some errors I have been having for so long.
    Still, I am not able to display my data using display. How far this you did with this project? Have you resolve the problem so far. I know it's been a long time.
    Thanks
    eve

Maybe you are looking for

  • Custom Camera Profile Disables External Editing?

    I'm using Lightroom 5 and Photoshop CS5.  The problem is that if I apply a custom camera color profile created by X-Rite Passport Color Checker, I can no longer use an external editor, such as Photoshop, to edit my photos.  Before I apply the custom

  • Trying to connect LG Muziq to MacBook

    I have recently switched over to the world of Mac, after having been away from all things Apple for the past decade. I always liked Apple products, but I valued compatibility over quality when I went off to college back in the 90's. So I have a new M

  • Hidden photos in iPhoto

    I worked on an image stored in an event folder in iPhoto and saved it as a newly named jpg file and also as a psd file back to the same event folder, but when I open iPhoto and look through the contents of the event folder, I can't see either of thes

  • Can't enable ciphers in Java Web Server 7.0

    I'm using wadm CLI and I can't seem to enable ciphers. Here's what I did: wadm> enable-ciphers config=cfg-valid http-listener=test-valid-listener --cipher-type=ssl3tls SSL_RSA_WITH_RC4_128_MD5 SSL_RSA_WITH_RC4_128_SHA SSL_RSA_WITH_3DES_EDE_CBC_SHA SS

  • Error in Labour welfare fund LWF

    Hi Experts, we have upgraded  SAP Hr module from 4.6B to ECC 6.0 , While running the payroll it's giving error "NO ENTRY IN TABLE T7INU3", But we don't know what exactly we need to maintained in table V_T7INU3  in ECC 6.0 . Edited by: Abhijai on Sep