Fetching data from VO and put into table Region

Hi All,
I am using Jdev 9i and 11i application.
public void processRequest(OAPageContext pageContext, OAWebBean webBean)
      super.processRequest(pageContext, webBean);
Number Variable= (Number)pageContext.getSessionValue("SessionValue");
Number numValue = new Number (Variable);
pageContext.writeDiagnostics(this, "In XXXXShoppingCO header "+ Variable, 1);
pageContext.removeSessionValue("SessionValue");
String sql ="SELECT REQUISITION_LINE_ID,REQUISITION_HEADER_ID, LINE_NUM, ITEM_DESCRIPTION, UNIT_MEAS_LOOKUP_CODE,UNIT_PRICE,QUANTITY,BASE_UNIT_PRICE FROM PO_REQUISITION_LINES_ALL  ORDER BY LINE_NUM ASC";
              ViewObject VO;
             //Get the AM. Here
              OAApplicationModuleImpl AM= (OAApplicationModuleImpl)pageContext.getApplicationModule(webBean);
             //Create the View Definition
             OAViewDef viewDef  = AM.getOADBTransaction().createViewDef();
             viewDef.setSql(sql);
             viewDef.setExpertMode(true);
             viewDef.setViewObjectClass("oracle.apps.fnd.framework.server.OAViewObjectImpl");
             viewDef.setViewRowClass("oracle.apps.fnd.framework.server.OAViewRowImpl");
             //Now since the View Definition is ready, we create the View Object
              VO = (OAViewObject)AM.findViewObject("JDSUPoReqVO");
       if(VO==null){
             VO = AM.createViewObject("JDSUPoReqVO",viewDef);
             VO.setWhereClause(null);
             VO.setWhereClause("REQUISITION_HEADER_ID = :1");
             VO.setWhereClauseParams(null);
             VO.setWhereClauseParam(0,numValue);
             //AM.getOADBTransaction().putDialogMessage(new OAException("param value is "+VO.getWhereClauseParams()));
             Object[] temp =VO.getWhereClauseParams();
  pageContext.putDialogMessage(new OAException("temp value"+ temp.length));
  for(int i=0; i<temp.length;i++)
    pageContext.putDialogMessage(new OAException("parameters are "+ temp[i].toString()));
AM.getOADBTransaction().putDialogMessage(new OAException( " query is "+VO.getQuery()));
AM.getOADBTransaction().putDialogMessage(new OAException( "Where Clause of the VO is "+ VO.getWhereClause()));  
//ItemTableRN
              //OATableBean localOATableBean =(OATableBean)webBean.findChildRecursive("ItemTableRN");
OAMessageStyledTextBean LineNum = (OAMessageStyledTextBean)webBean.findChildRecursive("LineNum");  
                      LineNum.setViewUsageName("JDSUPoReqVO");
                      LineNum.setViewAttributeName("LINE_NUM"); 
                      //LineNum.setReadOnly(true); 
          OAMessageTextInputBean  itemDesc = (OAMessageTextInputBean )webBean.findIndexedChildRecursive("ItemDescInput");
                       itemDesc.setViewUsageName("JDSUPoReqVO");
                       itemDesc.setViewAttributeName("ITEM_DESCRIPTION"); 
                     //itemDesc.setReadOnly(true); 
           OAMessageStyledTextBean SpecialInfo = (OAMessageStyledTextBean)webBean.findChildRecursive("InfoTemplateText");
                        SpecialInfo.setViewUsageName("JDSUPoReqVO");
                        SpecialInfo.setViewAttributeName("REQUISITION_HEADER_ID"); 
                      //SpecialInfo.setReadOnly(true);
           OAMessageLovInputBean Unit = (OAMessageLovInputBean)webBean.findChildRecursive("TranslatedUom");
                        Unit.setViewUsageName("JDSUPoReqVO");
                        Unit.setViewAttributeName("UNIT_MEAS_LOOKUP_CODE"); 
                      //Unit.setReadOnly(true); 
           OAMessageTextInputBean  Quantity = (OAMessageTextInputBean )webBean.findIndexedChildRecursive("Quantity");
                        Quantity.setViewUsageName("JDSUPoReqVO");
                        Quantity.setViewAttributeName("QUANTITY"); 
                      //Quantity.setReadOnly(true);
           OAMessageTextInputBean  Price = (OAMessageTextInputBean )webBean.findIndexedChildRecursive("TxnPrice");
                        Price.setViewUsageName("JDSUPoReqVO");
                        Price.setViewAttributeName("BASE_UNIT_PRICE"); 
                      //Price.setReadOnly(true);
           OAMessageTextInputBean  Amount = (OAMessageTextInputBean )webBean.findIndexedChildRecursive("TxnAmount");
                         Amount.setViewUsageName("JDSUPoReqVO");
                         Amount.setViewAttributeName("UNIT_PRICE"); 
when I use print values of VO into table's field then I am getting error:
oracle.apps.fnd.framework.OAException: oracle.jbo.NoDefException: JBO-25002: Definition ITEM_DESCRIPTION of type Attribute not found
  at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1223)
  at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(OAPageBean.java:2958)
  at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(OAPageBean.java:2755)
  at _oa__html._OA._jspService(_OA.java:101)
  at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
  at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
  at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
  at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
  at oracle.jsp.JspServlet.service(JspServlet.java:156)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
  at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
  at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
  at _oa__html._OA._jspService(_OA.java:94)
  at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
  at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
  at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
  at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
  at oracle.jsp.JspServlet.service(JspServlet.java:156)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
  at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
  at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
  at _oa__html._OA._jspService(_OA.java:94)
  at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
  at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
  at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
  at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
  at oracle.jsp.JspServlet.service(JspServlet.java:156)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
  at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
  at org.apache.jserv.JServConnection.run(JServConnection.java:294)
  at java.lang.Thread.run(Thread.java:736)
## Detail 0 ##
oracle.apps.fnd.framework.OAException: oracle.jbo.NoDefException: JBO-25002: Definition ITEM_DESCRIPTION of type Attribute not found
  at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:891)
  at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1145)
  at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(OAPageBean.java:2958)
  at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(OAPageBean.java:2755)
  at _oa__html._OA._jspService(_OA.java:101)
  at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
  at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
  at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
  at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
  at oracle.jsp.JspServlet.service(JspServlet.java:156)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
  at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
  at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
  at _oa__html._OA._jspService(_OA.java:94)
  at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
  at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
  at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
  at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
  at oracle.jsp.JspServlet.service(JspServlet.java:156)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
  at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
  at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
  at _oa__html._OA._jspService(_OA.java:94)
  at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
  at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
  at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
  at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
  at oracle.jsp.JspServlet.service(JspServlet.java:156)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
  at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
  at org.apache.jserv.JServConnection.run(JServConnection.java:294)
  at java.lang.Thread.run(Thread.java:736)
oracle.apps.fnd.framework.OAException: oracle.jbo.NoDefException: JBO-25002: Definition ITEM_DESCRIPTION of type Attribute not found
  at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:891)
  at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1145)
  at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(OAPageBean.java:2958)
  at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(OAPageBean.java:2755)
  at _oa__html._OA._jspService(_OA.java:101)
  at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
  at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
  at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
  at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
  at oracle.jsp.JspServlet.service(JspServlet.java:156)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
  at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
  at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
  at _oa__html._OA._jspService(_OA.java:94)
  at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
  at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
  at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
  at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
  at oracle.jsp.JspServlet.service(JspServlet.java:156)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
  at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
  at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
  at _oa__html._OA._jspService(_OA.java:94)
  at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
  at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
  at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
  at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
  at oracle.jsp.JspServlet.service(JspServlet.java:156)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
  at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
  at org.apache.jserv.JServConnection.run(JServConnection.java:294)
  at java.lang.Thread.run(Thread.java:736)

Hi All,
I am using Jdev 9i and 11i application.
public void processRequest(OAPageContext pageContext, OAWebBean webBean)
      super.processRequest(pageContext, webBean);
Number Variable= (Number)pageContext.getSessionValue("SessionValue");
Number numValue = new Number (Variable);
pageContext.writeDiagnostics(this, "In XXXXShoppingCO header "+ Variable, 1);
pageContext.removeSessionValue("SessionValue");
String sql ="SELECT REQUISITION_LINE_ID,REQUISITION_HEADER_ID, LINE_NUM, ITEM_DESCRIPTION, UNIT_MEAS_LOOKUP_CODE,UNIT_PRICE,QUANTITY,BASE_UNIT_PRICE FROM PO_REQUISITION_LINES_ALL  ORDER BY LINE_NUM ASC";
              ViewObject VO;
             //Get the AM. Here
              OAApplicationModuleImpl AM= (OAApplicationModuleImpl)pageContext.getApplicationModule(webBean);
             //Create the View Definition
             OAViewDef viewDef  = AM.getOADBTransaction().createViewDef();
             viewDef.setSql(sql);
             viewDef.setExpertMode(true);
             viewDef.setViewObjectClass("oracle.apps.fnd.framework.server.OAViewObjectImpl");
             viewDef.setViewRowClass("oracle.apps.fnd.framework.server.OAViewRowImpl");
             //Now since the View Definition is ready, we create the View Object
              VO = (OAViewObject)AM.findViewObject("JDSUPoReqVO");
       if(VO==null){
             VO = AM.createViewObject("JDSUPoReqVO",viewDef);
             VO.setWhereClause(null);
             VO.setWhereClause("REQUISITION_HEADER_ID = :1");
             VO.setWhereClauseParams(null);
             VO.setWhereClauseParam(0,numValue);
             //AM.getOADBTransaction().putDialogMessage(new OAException("param value is "+VO.getWhereClauseParams()));
             Object[] temp =VO.getWhereClauseParams();
  pageContext.putDialogMessage(new OAException("temp value"+ temp.length));
  for(int i=0; i<temp.length;i++)
    pageContext.putDialogMessage(new OAException("parameters are "+ temp[i].toString()));
AM.getOADBTransaction().putDialogMessage(new OAException( " query is "+VO.getQuery()));
AM.getOADBTransaction().putDialogMessage(new OAException( "Where Clause of the VO is "+ VO.getWhereClause()));  
//ItemTableRN
              //OATableBean localOATableBean =(OATableBean)webBean.findChildRecursive("ItemTableRN");
OAMessageStyledTextBean LineNum = (OAMessageStyledTextBean)webBean.findChildRecursive("LineNum");  
                      LineNum.setViewUsageName("JDSUPoReqVO");
                      LineNum.setViewAttributeName("LINE_NUM"); 
                      //LineNum.setReadOnly(true); 
          OAMessageTextInputBean  itemDesc = (OAMessageTextInputBean )webBean.findIndexedChildRecursive("ItemDescInput");
                       itemDesc.setViewUsageName("JDSUPoReqVO");
                       itemDesc.setViewAttributeName("ITEM_DESCRIPTION"); 
                     //itemDesc.setReadOnly(true); 
           OAMessageStyledTextBean SpecialInfo = (OAMessageStyledTextBean)webBean.findChildRecursive("InfoTemplateText");
                        SpecialInfo.setViewUsageName("JDSUPoReqVO");
                        SpecialInfo.setViewAttributeName("REQUISITION_HEADER_ID"); 
                      //SpecialInfo.setReadOnly(true);
           OAMessageLovInputBean Unit = (OAMessageLovInputBean)webBean.findChildRecursive("TranslatedUom");
                        Unit.setViewUsageName("JDSUPoReqVO");
                        Unit.setViewAttributeName("UNIT_MEAS_LOOKUP_CODE"); 
                      //Unit.setReadOnly(true); 
           OAMessageTextInputBean  Quantity = (OAMessageTextInputBean )webBean.findIndexedChildRecursive("Quantity");
                        Quantity.setViewUsageName("JDSUPoReqVO");
                        Quantity.setViewAttributeName("QUANTITY"); 
                      //Quantity.setReadOnly(true);
           OAMessageTextInputBean  Price = (OAMessageTextInputBean )webBean.findIndexedChildRecursive("TxnPrice");
                        Price.setViewUsageName("JDSUPoReqVO");
                        Price.setViewAttributeName("BASE_UNIT_PRICE"); 
                      //Price.setReadOnly(true);
           OAMessageTextInputBean  Amount = (OAMessageTextInputBean )webBean.findIndexedChildRecursive("TxnAmount");
                         Amount.setViewUsageName("JDSUPoReqVO");
                         Amount.setViewAttributeName("UNIT_PRICE"); 
when I use print values of VO into table's field then I am getting error:
oracle.apps.fnd.framework.OAException: oracle.jbo.NoDefException: JBO-25002: Definition ITEM_DESCRIPTION of type Attribute not found
  at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1223)
  at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(OAPageBean.java:2958)
  at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(OAPageBean.java:2755)
  at _oa__html._OA._jspService(_OA.java:101)
  at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
  at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
  at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
  at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
  at oracle.jsp.JspServlet.service(JspServlet.java:156)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
  at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
  at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
  at _oa__html._OA._jspService(_OA.java:94)
  at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
  at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
  at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
  at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
  at oracle.jsp.JspServlet.service(JspServlet.java:156)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
  at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
  at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
  at _oa__html._OA._jspService(_OA.java:94)
  at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
  at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
  at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
  at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
  at oracle.jsp.JspServlet.service(JspServlet.java:156)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
  at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
  at org.apache.jserv.JServConnection.run(JServConnection.java:294)
  at java.lang.Thread.run(Thread.java:736)
## Detail 0 ##
oracle.apps.fnd.framework.OAException: oracle.jbo.NoDefException: JBO-25002: Definition ITEM_DESCRIPTION of type Attribute not found
  at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:891)
  at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1145)
  at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(OAPageBean.java:2958)
  at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(OAPageBean.java:2755)
  at _oa__html._OA._jspService(_OA.java:101)
  at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
  at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
  at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
  at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
  at oracle.jsp.JspServlet.service(JspServlet.java:156)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
  at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
  at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
  at _oa__html._OA._jspService(_OA.java:94)
  at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
  at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
  at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
  at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
  at oracle.jsp.JspServlet.service(JspServlet.java:156)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
  at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
  at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
  at _oa__html._OA._jspService(_OA.java:94)
  at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
  at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
  at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
  at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
  at oracle.jsp.JspServlet.service(JspServlet.java:156)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
  at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
  at org.apache.jserv.JServConnection.run(JServConnection.java:294)
  at java.lang.Thread.run(Thread.java:736)
oracle.apps.fnd.framework.OAException: oracle.jbo.NoDefException: JBO-25002: Definition ITEM_DESCRIPTION of type Attribute not found
  at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:891)
  at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1145)
  at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(OAPageBean.java:2958)
  at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(OAPageBean.java:2755)
  at _oa__html._OA._jspService(_OA.java:101)
  at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
  at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
  at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
  at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
  at oracle.jsp.JspServlet.service(JspServlet.java:156)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
  at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
  at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
  at _oa__html._OA._jspService(_OA.java:94)
  at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
  at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
  at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
  at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
  at oracle.jsp.JspServlet.service(JspServlet.java:156)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
  at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
  at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
  at _oa__html._OA._jspService(_OA.java:94)
  at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
  at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
  at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
  at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
  at oracle.jsp.JspServlet.service(JspServlet.java:156)
  at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
  at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
  at org.apache.jserv.JServConnection.run(JServConnection.java:294)
  at java.lang.Thread.run(Thread.java:736)

Similar Messages

  • Extract Data from XML and Load into table using SQL*Loader

    Hi All,
    We have a XML file (sample.xml) which contains credit card transaction information. We have a standard SQL*Loader control file which loads the data from a flat file and the control file code is written as position based method. Our requirement is to use this control file as per our requirement(i.e) load the data into the table from our XML file), But we need help in converting the XML to a flat file or Extract the data from the XML tags and pass the information to the control file and in turn it loads the table.
    Your suggestion is highly appreciated.
    Thanks in advance

    Hi,
    First of all go to PSA maintanance ( Where you will see PSA records ).
    Goto list---> Save-> File---> Spreadsheet (Choose Radio Button)
    > Give the proper file name where you want to download and then-----> Generate.
    You will get ur PSA data in Excel Format.
    Thanks
    Mayank

  • Reading  xml data from url and insert into table

    CREATE TABLE url_tab2
    URL_NAME VARCHAR2(100),
    URL SYS.URIType
    INSERT INTO url_tab2 VALUES
    (’This is a test URL’,
    sys.UriFactory.getUri(’http://www.domain.com/test.xml’)
    it is giving error as invalid character

    Check if your single quotes are the correct single quotes.
    The principle works as advertised in the XMLDB Developers Guide...
    C:\>sqlplus / as sysdba
    SQL*Plus: Release 11.1.0.7.0 - Production on Tue Nov 25 21:44:46 2008
    Copyright (c) 1982, 2008, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> create user OTN identified by OTN account unlock;
    User created.
    SQL> grant dba, xdbadmin to OTN;
    Grant succeeded.
    SQL> conn OTN/OTN
    Connected.
    SQL> CREATE TABLE uri_tab (docUrl SYS.URIType, docName VARCHAR2(200));
    Table created.
    SQL> -- Method SYS.URIFACTORY.getURI() with absolute URIs
    SQL> -- Insert an HTTPUri with absolute URL into SYS.URIType using URIFACTORY.
    SQL> -- The target is Oracle home page.
    SQL> INSERT INTO uri_tab VALUES
      2  (SYS.URIFACTORY.getURI('http://www.oracle.com'), 'AbsURL');
    1 row created.
    SQL> -- Insert an HTTPUri with relative URL using constructor SYS.HTTPURIType.
    SQL> -- Note the absence of prefix http://. The target is the same.
    SQL> INSERT INTO uri_tab VALUES (SYS.HTTPURIType('www.oracle.com'), 'RelURL');
    1 row created.
    SQL> -- Insert a DBUri that targets employee data from database table hr.employees.
    SQL>
    SQL> INSERT INTO uri_tab VALUES
      2  (SYS.URIFACTORY.getURI('/oradb/HR/EMPLOYEES/ROW[EMPLOYEE_ID=200]'), 'Emp200');
    1 row created.
    SQL> SELECT e.docUrl.getCLOB(), docName FROM uri_tab e;
    E.DOCURL.GETCLOB()
    DOCNAME
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN
    ">
    <html>
    <head>
    AbsURL
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN
    ">
    <html>
    E.DOCURL.GETCLOB()
    DOCNAME
    <head>
    RelURL
    <?xml version="1.0"?>
    <ROW>
      <EMPLOYEE_ID>200</EMPLOYEE_ID>
      <FIRST_NAME>Jenn
    Emp200
    SQL> set long 1000
    SQL> select HTTPURITYPE('www.oracle.com').getCLob() from dual;
    HTTPURITYPE('WWW.ORACLE.COM').GETCLOB()
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN
    ">
    <html>
    <head>
    <title>Oracle 11g, Siebel, PeopleSoft |
    Oracle, The World's Largest Enterprise S
    oftware Company</title>
    <meta name="title" content="Enterprise Applications | D
    atabase | Fusion Middleware | Applicatio
    ns Unlimited | Business | Oracle, The Wo
    rld's Largest Enterprise Software CompanEdited by: Marco Gralike on Nov 25, 2008 10:13 PM

  • Problem with reading data from screen and inserting in table

    hi ther,
    im new to abap-webdyn pro. can anyone suggest how to read data from screen and insert into table when press 'ADD' button.
    i done screen gui , table creation but problems with action. what the content of acton add.
    is ther any link that helps me or tut??
    thankx in advance!
    regards

    Hi,
    Create a context node for the screen fields for which you want to enter the values with cardinality 1.1.....
    Now in the layout of your view bind the screen input fields to that context node(attributes) to the value property of the input fields...
    Now in the action of ADD button....
    --> go the wizard and select the read node button and select the node which you have created it generates the auto code for you.....
    for example if the node is contains aone attribute like MATNR
    reading the node from wizard will generate the code as....
    DATA lo_nd_matnr TYPE REF TO if_wd_context_node.
      DATA lo_el_matnr TYPE REF TO if_wd_context_element.
      DATA ls_matnr TYPE wd_this->element_matnr.
      DATA lv_matnr TYPE wd_this->element_matnr-matnr.
    * navigate from <CONTEXT> to <MATNR> via lead selection
      lo_nd_matnr = wd_context->get_child_node( name = wd_this->wdctx_matnr ).
    * @TODO handle non existant child
    * IF lo_nd_matnr IS INITIAL.
    * ENDIF.
    * get element via lead selection
      lo_el_matnr = lo_nd_matnr->get_element( ).
    * @TODO handle not set lead selection
      IF lo_el_matnr IS INITIAL.
      ENDIF.
    * get single attribute
      lo_el_matnr->get_attribute(
        EXPORTING
          name =  `MATNR`
        IMPORTING
          value = lv_matnr ).
    here the variable lv_matnr will contain the entered value......
    now you can use this value for further process.
    Thanks,
    Shailaja Ainala.

  • How to fetch data from XML and store it in internal table

    Hi All,
    Can anyone help me out, in fetching data from xml and store it in an internal table. Is there any standard function module is there?
    Regards,
    Karthick

    to do this you can either develop a XSLT program and use it with CALL TRNSFORMATION key word to tranform the XML into itab .
    (search the ABAP General forum, i have posted few samples)
    or simply use the following FM which converts your XML into a itab of name value pair (name would holw the element name and value would hold the value of the element) which you can then loop and read it to your itb.
    data:             xmldata type xstring .
    data: result_xml type standard table of smum_xmltb .
    data: return type standard table of bapiret2 .
    CALL FUNCTION 'SMUM_XML_PARSE'
      EXPORTING
        xml_input       = xmldata
      TABLES
        xml_table       = result_xml
        return          = return .
    Regards
    Raja

  • How to extract data from xml and insert into Oracle table

    Hi,
    I have a large xml file. which will have hundreds of the following transaction tags having column names and there values.
    There is a table one of the schema with coulums "actualCostRate","billRate"....etc.
    I need to extract the values of these columns and insert into the table
    <Transaction actualCostRate="0" billRate="0" chargeable="1" clientID="NikuUK" chargeCode="LCOCD1" externalID="L-RESCODE_UK1-PROJ_UK_CNT_GBP-37289-8" importStatus="N" projectID="TESTPROJ" resourceID="admin" transactionDate="2002-02-12" transactionType="L" units="11" taskID="5017601" inputTypeCode="SALES" groupId="123" voucherNumber="ABCVDD" transactionClass="ABCD"/>
    <Transaction actualCostRate="0" billRate="0" chargeable="1" clientID="NikuEU" chargeCode="LCOCD1" externalID="L-RESCODE_US1-PROJ_EU_STD2-37291-4" importStatus="N" projectID="TESTPROJ" resourceID="admin" transactionDate="2002-02-04" transactionType="L" units="4" taskID="5017601" inputTypeCode="SALES" groupId="124" voucherNumber="EEE222" transactionClass="DEFG"/>

    Re: Insert from XML to relational table
    http://www.google.ae/search?hl=ar&q=extract+data+from+xml+and+insert+into+Oracle+table+&btnG=%D8%A8%D8%AD%D8%AB+Google&meta=

  • Read data from Excel and write into oracle database

    Hi
    I want  to know how can i read data from excel and write into oracle database using java.Kindly help me out to find a solution.
    Thanks and Regards
    Neeta

    Hai,
    I am suggesting the solution.
    I will try out and let u know soon.
    Make a coma separated file from your excel file.
    Assuming that your requirement allows to make a csv file.
    This file may be passed as an file object to be read by java.Using JDBC you must be able to populate the data base.You can also use String Tokenizer if needed.
    You do not want to  go via sql Loader?
    For reading the excel file itself do you want java?

  • Get the data  from excel and insert into the database

    I want to read the data from excel file, get the data from excel and insert into the database.

    You can use the Apache POI HSSF API to read data from Excel files and you can use the Sun JDBC API to insert data in database.
    This has nothing to do with JSP/JSTL.

  • Dynamically fetch data from database and display it in the report

    Hi,
    We have a requirement in developing a report which needs us to dynamically fetch data from the database and display it in the report.
    We have a column called WORKER in the report.
    For each worker there is a measure(PSA) associated with it.
    In the report we have to display both the WORKER and the PSA column.
    What we want is, when we display the list of the workers, the corresponding workerid_id of the worker will be passed and the value of his PSA will be fetched from the database and displayed in the report.
    Or anything similar to this.
    We also have drill applied on this WORKER column. So after any drill up or drill down also the value for PSA should change.
    Is there any way of doing this?
    Please help if possible.
    Thanks,

    hi,
    data : count type i value 0.
    data : Begin of itab occurs 0 ,
    plan_version like hrhap-plan_version,
    APPRAISAL_ID like hrhap-APPRAISAL_ID,
    AP_START_DATE like hrhap-AP_START_DATE,
    AP_END_DATE like hrhap-AP_END_DATE,
    AP_STATUS like hrhap-AP_STATUS,
    AP_STATUS_SUB like hrhap-AP_STATUS_SUB,
    OBJ_DATE_SET like hrhap-OBJ_DATE_SET,
    REVIEW_DATE_SET like hrhap-REVIEW_DATE_SET,
    AP_DATE_SET like hrhap-AP_DATE_SET,
    AP_DATE_EARLIEST like hrhap-AP_DATE_EARLIEST,
    AP_DATE_LATEST like hrhap-AP_DATE_LATEST,
    CHANGE_DATE like hrhap-CHANGE_DATE,
    CHANGE_TIME like hrhap-CHANGE_TIME,
    CHANGE_USER like hrhap-CHANGE_USER,
    end of itab.
    <b>select * from hrhap into corresponding fields of table itab.</b>
    loop at itab.
    write :/ itab-plan_version under 'plan_version',
    itab-appraisal_id under 'Appraisal Id',
    itab-AP_START_DATE under 'Start Date',
    itab-AP_END_DATE under 'End date',
    itab-AP_STATUS under 'Status',
    itab-AP_STATUS_SUB under 'Substatus',
    itab-OBJ_DATE_SET under 'Objective setting date',
    itab-REVIEW_DATE_SET under 'Review date set',
    itab-AP_DATE_SET under 'appraisal date',
    itab-AP_DATE_EARLIEST under 'Earliest appraisal date',
    itab-AP_DATE_LATEST under 'Latest Appraisal date',
    itab-CHANGE_DATE under 'Change Date',
    itab-CHANGE_TIME under 'change time',
    itab-CHANGE_user under 'change user'.
    count = count + 1.
    endloop.
    write : 'No of records' ,count.
    rgds
    anver
    if hlped mark points.

  • To Fetch Data from GTS and print in R/3

    Hi,
      iam in need of help.
    the core is i have a print program in R/3.from R/3 i have to validate some field with SAPGTS.
    so that i have to apply a RFC call from R/3 ( print program ) to GTS and i have to fetch the data from GTS and print in R/3.
    help me out in finding the RFC.
    the print program is for VL02N

    Mohan:
    SAP and GTS are linked through a RFC destination and the RFC user ID is used to make the call. Once this is set up, you can call GTS through a Function Module call. The set up is normally done by BASIS team
    From the program /SAPSLL/SAPLCD_PI_R3 you can drill down to get details of the specific user-exit which you can use to call GTS tables for specific data.
    Let me know if this helps
    Siva

  • Error while fetching data from OWB Client using External Table.

    Dear All,
    I am using Oracle Warehouse Builder 11g & Oracle 10gR2 as repository database on Windows 2000 Server.
    I facing some issue in fetching data from a Flat File using external table from OWB Client.
    I have perform all the steps without any error but when I try to view the data, I got the following error.
    ======================================
    RA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-04040: file expense_categories.csv in SOURCE_LOCATION not found
    ORA-06512: at "SYS.ORACLE_LOADER", line 19
    java.sql.SQLException: ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-04040: file expense_categories.csv in SOURCE_LOCATION not found
    ORA-06512: at "SYS.ORACLE_LOADER", line 19
         at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:70)
         at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:110)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:171)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:455)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:413)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:1030)
         at oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:183)
         at oracle.jdbc.driver.T4CStatement.executeForDescribe(T4CStatement.java:774)
         at oracle.jdbc.driver.T4CStatement.executeMaybeDescribe(T4CStatement.java:849)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1186)
         at oracle.jdbc.driver.OracleStatement.executeQuery(OracleStatement.java:1377)
         at oracle.jdbc.driver.OracleStatementWrapper.executeQuery(OracleStatementWrapper.java:386)
         at oracle.wh.ui.owbcommon.QueryResult.<init>(QueryResult.java:18)
         at oracle.wh.ui.owbcommon.dataviewer.relational.OracleQueryResult.<init>(OracleDVTableModel.java:48)
         at oracle.wh.ui.owbcommon.dataviewer.relational.OracleDVTableModel.doFetch(OracleDVTableModel.java:20)
         at oracle.wh.ui.owbcommon.dataviewer.RDVTableModel.fetch(RDVTableModel.java:46)
         at oracle.wh.ui.owbcommon.dataviewer.BaseDataViewerPanel$1.actionPerformed(BaseDataViewerPanel.java:218)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1849)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2169)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.AbstractButton.doClick(AbstractButton.java:302)
         at javax.swing.AbstractButton.doClick(AbstractButton.java:282)
         at oracle.wh.ui.owbcommon.dataviewer.BaseDataViewerPanel.executeQuery(BaseDataViewerPanel.java:493)
         at oracle.wh.ui.owbcommon.dataviewer.BaseDataViewerEditor.init(BaseDataViewerEditor.java:116)
         at oracle.wh.ui.owbcommon.dataviewer.BaseDataViewerEditor.<init>(BaseDataViewerEditor.java:58)
         at oracle.wh.ui.owbcommon.dataviewer.relational.DataViewerEditor.<init>(DataViewerEditor.java:16)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
         at oracle.wh.ui.owbcommon.IdeUtils._tryLaunchEditorByClass(IdeUtils.java:1412)
         at oracle.wh.ui.owbcommon.IdeUtils._doLaunchEditor(IdeUtils.java:1349)
         at oracle.wh.ui.owbcommon.IdeUtils._doLaunchEditor(IdeUtils.java:1367)
         at oracle.wh.ui.owbcommon.IdeUtils.showDataViewer(IdeUtils.java:869)
         at oracle.wh.ui.owbcommon.IdeUtils.showDataViewer(IdeUtils.java:856)
         at oracle.wh.ui.console.commands.DataViewerCmd.performAction(DataViewerCmd.java:19)
         at oracle.wh.ui.console.commands.TreeMenuHandler$1.run(TreeMenuHandler.java:188)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    ===========================
    In the error it is showing that file expense_categories.csv in SOURCE_LOCATION not found but I am 100% sure that file is very much there.
    Is anybody face the same issue?
    Do we need to configure something before loading data from a flat file from OWB Client?
    Any help would higly appreciable.
    Regards,
    Manmohan Sharma

    Hi Detlef / Gowtham,
    Now I am able to fetch data from flat files from OWB Server as well as OWB Client.
    One way I have achieved as suggested by you
    1) Creating location on the OWB Client
    2) Samples the files at client
    3) Created & Configured external table
    4) Copy all flat files on OWB Server
    5) Updated the location which I created at the client.
    Other way
    1) Creating location on the OWB Client
    2) Samples the files at client
    3) Created & Configured external table
    4) Copied flat files on the sever in same drive & directory . like if my all flat files are on C:\data at OWB Client then I copied flat file C:\data on the OWB Server. But this is feasible for Non-Windows.
    Hence my problem solved.
    Thanks a lot.
    Regards,
    Manmohan

  • How to fetch data from SolMan and move it into SAP BI?

    Hi all,
         I have the portal activity report data residing in the SolMan ( achieved by configuring portal and SolMan).  I need to extract this data from Solution Manager into SAP BI, such that i can report on the data in SAP BI using the BEx tools. How will i proceed with it ? Your response is higly appreciated.
    Regards,
    Divya.

    Hello Divya,
    You must set up E2E Diagnostics for the managed system (portal system).
    You can accomplish this by running transaction solman_setup  in the Sollution Manager and ensure that Initial and Basic Configurations are performed. Afterwards, you must follow the Managed System Configuration (also in solman_setup) for the managed system.
    Afterwards you must activate some specific Portal Activity Data Collectors following the note 1309740.
    Best regards,
    Guilherme Balbinot

  • Get data from view and displaying the table data into Excel  pivot table

    Hi All,
    I have a small reqirement inthat When i get the data from the View that would displayed as Excel Pivot table.
    For displaying gerneral data to Excel I have followed Binarcy cachey
    Please suggest me in this.
    Thanks,
    Lohi.
    Message was edited by:
            Lohitha M

    Try this:
    http://download-west.oracle.com/docs/html/B25947_01/bcservices005.htm#sthref681
    Specifically code sample 8-10 for accessing the AM object.
    Then use the findView method to get a pointer to the VO.

  • Using RSCRM_BAPI to convert data from Query and load into PSA to DSO

    Hi Experts,
    I have a complex query which is being executed in BeX.
    I need to go in the reverse direction and extract the data from the Query and load into the PSA and then to a DSO.
    I am using RSCRM_BAPI for this purpose and have got data into the extract table successfully.
    But , my query has some variable screen wherein we need to give some inputs for selection.
    I have create those Infoobjects and put them in the DSO.
    How do I capture these inputs of  the selection screen for storing in fields of my DSO as the Extract table does not store these inputs  ???

    write the whole insert query desired by you with the help of excel formulas.they are very easy or google 'how to use excel formulas".
    then copy the fromula to whole set of data in excel fields.
    run the insert query in excel as batch.
    i hope this helps.

  • Workflow for exporting xml from Excel and importing into table in InDesign

    Hello,
    I have worked out how to get data from a .xlsx into a table in InDesign. However, the workflow is still a little clunky and I am looking for way to automate the process further. My current workflow is as follows (files can be download here: http://visual360.co.uk/xml.zip)
    xml is exported from .xlsx by mapping the schema (see what_I_get.xml)
    assign tags to table and individual cells in InDesign
    This is the clunky bit: edit the what_I_get.xml to:
    remove the indentation (this seems necessary as otherwise when I get to stage 4, all the imported text is also indented)
    add tag for table in InDesign (p10_table)
    add tags for individual cells (p10_c11 etc.)
    import the produced what_I_want.xml in the structure panel of InDesign.
    Can anyone point me in the direction of how to automate step 3 above?
    Thanks in advance,
    Nick

    Hi Mike,
    Thanks very much for the reply. I am not at all familiar with XSL/XSLT. I have given it a quick google and it seems like it could be quite a steep learning curve to master. Maybe if I explain the whole context here, it may allow you to point me in the direction of a tutorial that provides a step by step approach to achieve my final goal. Alternatively, you may be able to suggest a whole new workflow.
    I am in the process of updating this document: http://www.ncl.ac.uk/students/insessional/assets/documents/IS_Brochure_2014-15.pdf
    The tables on pages 10-21 contain lots and lots of repeated information. We want the layout to in this format so that each group of students has all the information relevant to them on a single double spread. However, the challenge of using this approach is that it is very high maintenance to ensure the duplicated information is kept in sync - even using a copy / paste approach.
    I was hoping to overcome this by using a single source of data (eg. a spreadsheet) which would then feed into the InDesign. This workflow seems to be overcomplicated by the apparent need to use xml as the "middle-man".
    Ideally, I would like to press the export button in Excel and get this information into the the correct cells in the tables on pages 10-21 without a significant amount of manual labour - after all, my reasons for investigating an automated approach in the first place was to avoid the manual entering of data ie. the scope for error...
    An alternative approach maybe to skip Excel altogether and just use .xml. However, I am not sure that this is possible as Indesign only seems to allow you to import each element once. Maybe you could correct me here...
    I am happy to invest a certain amount of time in developing this approach as once it is in place, it will save a huge of proof-reading time year after year, especially as inconsistencies still persist despite our best efforts to weed them out.
    If you could let me know your thoughts on this and maybe identify a tutorial that would help me, I would be extremely grateful.
    Thanks again!
    Nick

Maybe you are looking for