Displaying bean values in different pages

I have a bean that is set in a loop and it returns values according to the number of records selected in my checkbox. At the moment the bean displays the records one after the other on the same page. i am trying to figure out a way where I can display the first record's details then have a button<next> to click on for the next record.
The bean is set like this in the servlet:
String selected[] = request.getParameterValues("select");//from JSP
int index = Integer.parseInt(selected);
for(int j=0; j<trades.length; j++)
if(index == j)
     doConfirmation();      
displayVector.addElement(setConfirmerBean(trades[j]));
session.setAttribute("displayVector", displayVector);
public void setConfirmerBean()
ABC bean = new ABC()
bean.setCustNumber();
In the JSP I get displayVector from the session and iterate through it to display the records it contains. I need to display records per page not all in one page, any ideas/help will be appreciated.
thanx

Take a look at
http://java.sun.com/blueprints/patterns/j2ee_patterns/page_by_page_iterator/index.html

Similar Messages

  • Displaying Bean values

    I have a database bean that works well when I select from a drop down list and get the lastname and it also gives me the count of how many lastnames I have that are a match in the database.
    Now I added a firstname list with the lastname list and the count shows up on the JSP and the lastname shows on the JSP but the firstname doesnt show up.
    mypage.jsp is this code:
    <jsp:useBean id="countandfielda" class="colors.Countandfielda" />
    <form post="post" action="colors/Countandfielda.jsp">
    First Name: <select name="firstName">
    <option value=""></option>
    <option value="Joe">Joe</option>
    <option value="Dave">Dave</option>
    <option value="Edward">Edward</option>
    <option value="Will">Will</option>
    <option value="%">All</option>
    </select>
    <br>
    Last Name:
    <select name="lastName">
    <option value=""></option>
    <option value="Smith">Smith</option>
    <option value="Jones">Jones</option>
    <option value="Pope">Pope</option>
    <option value="Edwards">Edwards</option>
    <option value="%">All</option>
    </select>
    <input type="submit">
    </form>
    <jsp:setProperty name="countandfielda"  property="lastName" />
    <jsp:setProperty name="countandfielda"  property="firstName" />
    LastName<br> <jsp:getProperty name="countandfielda" property="lastName" /><br>
    FirstName<br> <jsp:getProperty name="countandfielda" property="firstName" /><br>
    <jsp:setProperty name="countandfielda"  property="mycount" />
    count = <jsp:getProperty name="countandfielda" property="mycount" />I tried changing the setProperty and getProperty order for the firstName and lastName but it didnt work.
    Here is my output if for example I select a firstname of Dave and select lastname of Jones and get a successful hit on the database:
    LastName
    Jones
    FirstName
    count = 1 It doesnt want to output the FirstName value (which should be Dave). My Tomcat log shows the firstname and lastname but cant get it to show on my JSP Bean page.
    Please advise.

    Thanks,
    I tried this and it shows the names on the JSP but it doesnt seem to read the database because it shows the firstname and lastname of whatever I select in the options list (whether a hit or not in the database) and the count doesnt show any hits.
    Please advise:
    public class Countandfielda
       protected int mycount = 0;
       protected String lastName;
       protected String firstName;
       protected String query;
    public Countandfielda()
       //Calling this method in my no arg constructor
        viewDatabaseTable();
    public int getMycount()
      return mycount;
    public void setMycount(int aMycount)
       mycount = aMycount;
    public String getLastName()
       return lastName;
    public void setLastName(String aLastName)
       lastName = aLastName;
    public String getFirstName()
       //this.viewDatabaseTable();
       return firstName;
    public void setFirstName(String aFirstName)
       firstName = aFirstName;
    public void viewDatabaseTable()
      //I tried putting the mutators here and it didnt work where it gave no results from database
      //setFirstName(firstName);
      //setLastName(lastName);
      //setMyCount(mycount);
      exq(query);
    public void exq(String query)
    try          
    Class.forName("org.gjt.mm.mysql.Driver");
            Connection conn = DriverManager.getConnection("jdbc:mysql://localhost/myfirst?user=root&password=aaaaaa");
    PreparedStatement ps = conn.prepareStatement("SELECT * FROM user WHERE lastname like ? and firstname like ?");
    ps.setString(1, lastName);
    ps.setString(2, firstName);
            ResultSet results = ps.executeQuery();
              lastName = "";
              firstName = "";
              while(results.next())               
         firstName += results.getString("firstName") + " ";
         lastName += results.getString("lastName") +"<br>";          
              mycount++;
              System.out.println(mycount);     
         catch(Exception e)          
         System.out.println("Exception here. Did not work.");               
    }I also tried changing my bean calling page:
    <form select area...>
    <jsp:setProperty name="countandfielda"  property="firstName" />
    FirstName<br> <jsp:getProperty name="countandfielda" property="firstName" /><br>
    <jsp:setProperty name="countandfielda"  property="lastName" />
    LastName<br> <jsp:getProperty name="countandfielda" property="lastName" /><br>
    <jsp:setProperty name="countandfielda"  property="mycount" />
    count = <jsp:getProperty name="countandfielda" property="mycount" />

  • Displaying an application item's value from a page template

    Hello,
    I have an application item 'F50_TEST' and I need to display its value on every page that's using a specific page template. I think I can access data like the APP_USER by using #APP_USER# in the template, but can I access application items that way?
    Thank you,
    Pavel

    Hello,
    In your template, you can use '&F50_TEST.' (notice the trailing dot) to display the value .
    Regards,
    Arie.

  • How to call the form bean value on jsp withthe help of jstl tag

    hi
    all friends
    i am working in struts & i use jstl tag in jsp. i have one problem rise is how to call the form bean value in jsp page by using jstl tag.
    i now how to retrive the value through jsp:logic
    eg. <logic:empty name="userListForm" property="users">
    NO USER FOUND
    </logic:empty>
    see * userListForm mean formbaen name.
    * users means collection object.
    so how can i write above e.g in jstl

    You use the jstl core:if or core:choose combined with the EL:
    <c:if test="${empty users.userListForm}">
    NO USERS FOUND
    </c:if>I suggest you lookup the jsp expression language (EL) using google, it's very powerful.

  • Details of Each Vendor on Different Page

    Dear Experts,
    I have to develop a smartform in which I have to display Details of different vendors
    each on New Page.
    Vendor numbers are passed from driver program Selection Screen.
    Each page dispays Vendor Name and Address in Secondary Windows and List of Purchase
    Order Details for each Vendor in a Main Window.
    I want to have page break as new vendor number is encountered to display it in next/different Page.
    can anyone pls. tell how will it be done.
    Thanks.
    Regards
    Tanu

    Hi tanu,
    It is possible.its not a Big issue . Tell me you have to print only the Details of Vendor .
    For mulltiple vendors , You have to define the condition in smartforms.
    At the end of Secondary Window Rigth click on that Creat->flow Logic->Command->
    In general attribute tick Go to new page and select the same. and at the same time write in condition when new dealer comes.
    Hope it will solve ur problem.
    Please confirm.
    if not solve .
    Edited by: Supriya  Bhatt on Jul 4, 2009 3:55 PM
    Edited by: Supriya  Bhatt on Jul 4, 2009 4:13 PM

  • Bean Value display in JSP Page

    Hi,
    I am trying to display a value stored in my bean on the jsp page. The value is to be displayed on the initial jsp page.
       public void doInitialization()
              request = (IPortalComponentRequest) this.getRequest();
              response = (IPortalComponentResponse) this.getResponse();
              myContext = request.getComponentContext();
              myProfile = myContext.getProfile();      
              Statement += "doInitialization";
              BeanContainer = new MockUpBean();
              BeanContainer.setValues( Statement);
              myProfile.putValue( "myBean", BeanContainer);
              // reset String
              BeanContainer = ( MockUpBean) myProfile.getValue( "myBean");     
        }// public void doInitialization()
    On the JSP Page side:
    <jsp:useBean id="myBean" scope="application" class="MockUpBeanPackage.MockUpBean" />
    <%= myBean.getValues()%>
    The jsp page does no pick up the value I try to store in the doInitialise method.
    Any thoughts on what I may have done wrong in my code.
    I try response.write("Test"), this too does not show up in my JSP page.
    Any advice would be appreciated.
    Thank you
    NAC

    Marty,
    The portalapp.xml file is as follows:
    <?xml version="1.0" encoding="utf-8"?>
    <application>
      <application-config>
        <property name="PrivateSharingReference" value="com.sap.portal.htmlb"/>
      </application-config>
      <components>
        <component name="MockUpPage">
          <component-config>
            <property name="ClassName" value="MockUpPackage.MockUpPage"/>
            <property name="SecurityZone" value="MockUpPackage/low_safety"/>       
            <property name="ComponentType" value="jspnative"/>
            <property name="JSP" value="pagelet/InitialPage.jsp"/>
          </component-config>
          <component-profile>
            <property name="tagLib" value="/SERVICE/htmlb/taglib/htmlb.tld"/>
          </component-profile>
        </component>
      </components>
      <services/>
    </application>
    Again any help would be apreciated. I have used this piece of code to write values to beans in various projects, never had any issues. This is the first time I am having an issue with this piece of code.
    NAC

  • How do you display certain values in a list depending on a tag on a page?

    I have many lists on my site and I would like to create lots of different pages on my site for each customer. Then depending on which customer I am on, I would like the values in all the lists to change. For example if I have a page for 'Custmer A', I would
    like all my lists to only display values for 'Customer A', such as their orders and details. I understand that I could create a different list view for each customer on each lists but since I have so many customers this will take too long to do for my multiple
    lists, especially as I add new customers. Therefore is there a way of tagging a new page with a unique ID and then creating list views for my lists which pickup on the ID tag of the page which then displays the relevant data that contains this ID. This way
    I can duplicate this for new customers, without hvaing to creates 100s of list views. 
    Sorry for making this sounds more complicated than it is!
    Thanks

    If you were on earlier Sharepoint versions, I would have suggested using the Content Query Web Part (CQWP) to display content targeted to the user that is viewing the page. But with Sharepoint 2013, the concept is much more evolved with Managed Navigation
    and new features in CQWP.
    Have a look at the following article for start:
    Sharepoint 2013 CQWP and Managed Navigation
    Thanks, Ransher Singh, MCP, MCTS | Click Vote As Helpful if you think that post is helpful in responding your question click Mark As Answer, if you think that this is your answer for your question.

  • How to get a value from User's AD attribute and Display it on a SharePoint page ?

    Forum,
    We have a specific attribute in Active Directory for every single user. Meaning: In our Active Directory we have an attribute e.g. "UserType" and the value of this attribute is different from user to another.
    Requirement: I need to display the value of this attribute on the SharePoint page - How to do so?
    I don't think using the User Profile properties is the way to go. So, Could you please guide me on how to use C# or JavaScript to retrieve the value from AD attribute of each user and show it on the SharePoint site?
    Thanks for your inputs !

    Using C# or javascript to authenticate the user to AD to read the property directly will be very difficult. Creating a custom user profile property and adding a sync from AD to that property is definitely the easiest way to do what you are describing.
     Once its in User Profiles there are lots of samples on how to add it to the page.  
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • Display Javascript array value OnChange instead of Bean value

    I intially loop through a collection of employees display the values within the employee loop I have a select statement that i loop through a collection of programs that has on OnChange. I want to display the javascript value instead of the bean value onChange. The following code displays the bean value initally and onChange it displays both because the if is never false?
    *<c:if test="${programs[programIndex] != emps.department}">${emps.department}</c:if>*
    * <div id="programText"> </div>*
    * <input name="department" type="hidden" id="department">*
    JSP page
    <jsp:useBean id="programs" scope="request" class="java.util.Collection"/>
    <jsp:useBean id="employeeList" scope="request" class="java.util.Collection"/>
    <script language="JavaScript" type="text/javascript">
    var programs = new Array();
    function setProgramFields() {
    nameField = document.getElementById("programList");
    idx = nameField.selectedIndex;
    emField = document.getElementById("programText");
    emHiddenField = document.getElementById("department");
    emField.innerHTML = programs[idx];
    emHiddenField.value = programs[idx];
    <c:forEach var="emps" items="${employeeList}">
    <td width="170px">
    *<c:if test="${programs[programIndex] != emps.department}">${emps.department}</c:if>*
    * <div id="programText"> </div>*
    * <input name="department" type="hidden" id="department">*
    </td>
    <td width="275px">
    <div class="selectBorder">
    <select name="programName" type="text" class="searchProgram" id="programList" onChange="setProgramFields()">
    <c:set var="programIndex" value="0"/>
    <c:forEach var="sp" items="${programs}">
    <c:if test="${sp.programName == emps.programName}">
    <option value="${emps.programName}" selected="selected">${emps.programName}</option>
    </c:if>
    <c:if test="${sp.programName != emps.programName}">
    <option value="${sp.programName}">${sp.programName}</option>
    </c:if>
    <script language="JavaScript" type="text/javascript">
    programs[${programIndex}] = "${sp.department}";
    </script>
    <c:set var="programIndex" value="${programIndex + 1}"/>
    </c:forEach>
    </select>
    </div>
    </td>
    </c:forEach>
    Edited by: kmb_ms on Sep 15, 2008 2:38 PM

    Apologize for not formatting the code. I used the status.index the code as suggested. The code if more efficient but the results are the same and I still have the same problem.
    <select name="programName" type="text" class="searchProgram" id="programList" onChange="setProgramFields()">
    <c:forEach var="sp" items="${programs}" varStatus="status">
    <c:if test="${sp.programName == emps.programName}">
    <option value="${emps.programName}" selected="selected">${emps.programName}</option>
    </c:if>
    <c:if test="${sp.programName != emps.programName}">
    <option value="${sp.programName}">${sp.programName}</option>
    </c:if>
    <script language="JavaScript" type="text/javascript">
    departments[${status.index}] = "${sp.department}";
    </script>
    </c:forEach>
    </select> How can I access the value of the array to compare with the value of the bean.
    <script language="JavaScript" type="text/javascript">
    var departments = new Array();
    function setProgramFields() {
    nameField = document.getElementById("programList");
    idx = nameField.selectedIndex;
    emField = document.getElementById("departmentText");
    emHiddenField = document.getElementById("department");
    emField.innerHTML = departments[idx];
    emHiddenField.value = departments[idx];
    </script>The following code displays both the value of the bean and the value of the array onChange b/c the if statement is always true???? This is where I need help.
    <td width="170px">
         <c:if test="${departments[idx] != emps.department}">${emps.department}</c:if>
         <div id="departmentText"> </div>
         <input name="department" type="hidden" id="department">
    </td>

  • How i can display data from backing bean from jsf adf page

    Hi all
    I am creating a adf bc jsf application i am referring hr schema employee table
    in my jsf page i have a inputtext with label employee number if i enter employee number and press tab i should get employee name and jobid and salary for this purpose i am doing like as follows
    my view object query is as follows
    SELECT EMPLOYEE_ID,FIRST_NAME,JOB_ID,SALARY
    FROM EMPLOYEES
    WHERE EMPLOYEE_ID=:EMP_NO
    and my backing bean for my jsf page is as follows
    package view.backing;
    import javax.faces.component.html.HtmlForm;
    import javax.faces.event.ValueChangeEvent;
    import oracle.adf.view.faces.component.core.input.CoreInputText;
    import oracle.adf.view.faces.component.core.output.CoreOutputText;
    import oracle.adf.view.faces.component.html.HtmlBody;
    import oracle.adf.view.faces.component.html.HtmlHead;
    import oracle.adf.view.faces.component.html.HtmlHtml;
    import oracle.jbo.ApplicationModule;
    import oracle.jbo.Row;
    import oracle.jbo.ViewObject;
    import oracle.jbo.client.Configuration;
    public class BindTest3
    private HtmlHtml html1;
    private HtmlHead head1;
    private HtmlBody body1;
    private HtmlForm testForm;
    private CoreInputText employeeId;
    private CoreOutputText firstName;
    private CoreOutputText jobId;
    private CoreOutputText salary;
    public void setHtml1(HtmlHtml html1)
    this.html1 = html1;
    public HtmlHtml getHtml1()
    return html1;
    public void setHead1(HtmlHead head1)
    this.head1 = head1;
    public HtmlHead getHead1()
    return head1;
    public void setBody1(HtmlBody body1)
    this.body1 = body1;
    public HtmlBody getBody1()
    return body1;
    public void setTestForm(HtmlForm form1)
    this.testForm = form1;
    public HtmlForm getTestForm()
    return testForm;
    public void setEmployeeId(CoreInputText inputText1)
    this.employeeId = inputText1;
    public CoreInputText getEmployeeId()
    return employeeId;
    public void changeMethod(ValueChangeEvent event)
    String EmployeeId=(String)event.getNewValue();
    CheckForBind check=new CheckForBind();
    System.out.println(check.getEmployeeNo());
    String amDef = "model.AppModule";
    String config = "AppModuleLocal";
    ApplicationModule am =
    Configuration.createRootApplicationModule(amDef,config);
    ViewObject vo = am.findViewObject("EmployeeBindViewObj1");
    vo.setNamedWhereClauseParam("EMP_NO",EmployeeId);
    System.out.println("Query will return "+
    vo.getEstimatedRowCount()+" rows...");
    vo.executeQuery();
    while (vo.hasNext()) {
    Row curUser = vo.next();
    System.out.println(vo.getCurrentRowIndex()+" "+
    curUser.getAttribute("EmployeeId")+" "+
    curUser.getAttribute("FirstName")+" " curUser.getAttribute("JobId")" "+curUser.getAttribute("Salary"));
    //firstName =(String)curUser.getAttribute("EmployeeId");
    //setFirstName(curUser.getAttribute("EmployeeId"));
    firstName.setValue((String)curUser.getAttribute("FirstName"));
    //jobId.setValue((CoreOutputText) curUser.getAttribute("FirstName"));
    // salary.setValue((CoreOutputText)curUser.getAttribute("Salary"));
    // values.setJobId((CoreOutputText)curUser.getAttribute("JobId"));
    // values.setFirstName((CoreOutputText) curUser.getAttribute("FirstName"));
    //values.setSalary((CoreOutputText)curUser.getAttribute("Salary"));
    Configuration.releaseRootApplicationModule(am,true);
    public void setFirstName(CoreOutputText outputText1)
    this.firstName = outputText1;
    public CoreOutputText getFirstName()
    return firstName;
    public void setJobId(CoreOutputText outputText2)
    this.jobId = outputText2;
    public CoreOutputText getJobId()
    return jobId;
    public void setSalary(CoreOutputText outputText3)
    this.salary = outputText3;
    public CoreOutputText getSalary()
    return salary;
    and my jsf page is as follows
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ page contentType="text/html;charset=windows-1252"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces" prefix="af"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces/html" prefix="afh"%>
    <f:view>
    <afh:html binding="#{backing_BindTest3.html1}" id="html1">
    <afh:head title="Home" binding="#{backing_BindTest2.head1}" id="head1">
    <meta http-equiv="Content-Type"
    content="text/html; charset=windows-1252"/>
    <style type="text/css">
    body {
    background-color: #f7f7f7;
    </style>
    </afh:head>
    <afh:body binding="#{backing_BindTest3.body1}" id="body1">
    <h:form binding="#{backing_BindTest3.testForm}" id="testForm">
    <af:inputText label="Employee No" binding="#{backing_BindTest3.employeeId}"
    id="employeeId" valueChangeListener="#{backing_BindTest3.changeMethod}" autoSubmit="true"/>
    <af:outputText value="#{backing_BindTest3.firstName.value}"
    binding="#{backing_BindTest3.firstName}"
    id="firstName"/>
    <af:outputText value="outputText2"
    binding="#{backing_BindTest3.jobId}"
    id="jobId"/>
    <af:outputText value="outputText3"
    binding="#{backing_BindTest3.salary}"
    id="salary"/>
    </h:form>
    </afh:body>
    </afh:html>
    </f:view>
    <%-- oracle-jdev-comment:auto-binding-backing-bean-name:backing_BindTest2--%>
    but i am getting result in console but i cant get the value of firstname into my jsf page
    can any one can tell me for get the value to jsf page what i can do
    and what are the changes i can do in my jsf page

    hi,
    i tried to set value like as follows
    name=(CoreOutputText)curUser.getAttribute("FirstName");
    but that time i getting exception like as follows
    ec 22, 2007 2:17:27 PM com.sun.faces.lifecycle.ProcessValidationsPhase execute
    SEVERE: java.lang.ClassCastException: java.lang.String
    javax.faces.el.EvaluationException: java.lang.ClassCastException: java.lang.String
         at com.sun.faces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:150)
         at oracle.adf.view.faces.component.UIXComponentBase.__broadcast(UIXComponentBase.java:1087)
         at oracle.adf.view.faces.component.UIXEditableValue.broadcast(UIXEditableValue.java:247)
         at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:269)
         at javax.faces.component.UIViewRoot.processValidators(UIViewRoot.java:363)
         at com.sun.faces.lifecycle.ProcessValidationsPhase.execute(ProcessValidationsPhase.java:98)
         at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:245)
         at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:110)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:213)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:228)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:197)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:123)
         at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:103)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:162)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:871)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:221)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:122)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:111)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: java.lang.ClassCastException: java.lang.String
         at view.backing.ChangeValue.changeMethod(ChangeValue.java:49)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.sun.faces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:146)
    What will be the resion please help it is very critical for me

  • How can I share values between different jsp pages?

    Hi,
    I'm doing a jsp, bc4j application (JDeveloper 9.0.3), and I need to share some values between different jsp pages. To do this,
    I have used the tag <jsp:usebean.....></jsp:usebean> in this way:
    on pageone.jsp
    <jsp:useBean id="param" scope="session" class="MyPackage.Parameters" ></jsp:useBean>
    on pagetwo.jsp     
    <jsp:useBean id="param" scope="session" class="MyPackage.Parameters" ></jsp:useBean>
    and so on, in order to refer to the same instance of the class "Parameters".
    After deploying, the application works well only if the client is the same pc where the AS resides, otherwise the variables of "Parameters" are null.
    Please, could you help me?
    Thanks
    Nunzio.

    I am seeing an indication on 9.0.3 that static includes are not static, but instead always dynamic. The compiler generates a call to the included page, and doesn't include the content in the calling page as it should.

  • Displaying a group of data in different Pages

    Hello
    I will try to explain my Problem below briefly
    I have a problem with displaying a group of data in different Pages.I want to display a group of data like this:
    page1      page2
    data1Part1      data1Part2
    Page3     Page4
    data2Part1      data2Part2
    Page5     Page6
    data3Part1      data3Part2
    page 7     Page 8
    data4Part1      data4Part2
    What I get is :
    page1      page2
    data1Part1      data2Part1
    Page3     b]Page4
    data3Part1      data4Part1
    Page5     Page6
    data2Part2      data3Part2
    page 7     Page 8
    data4Part2      data4Part2
    I test <?for-each-group@section:ROW?> and Different first page etc. It doesn't work.I would appreciate your help. I can send you the output, template and xml doc, if you can have a look at it.
    Thanks

    Send me all files along with expected output at [email protected]

  • Selected variable value is different from the displayed value

    Hi all,
    I have an issue with variable selection in portal. I have a IO - customer which is compounded to source system. So I have soem customers with the same key with different sources. And I have a variable created on customer. For ex - i have 3 customers like below. 
    SA/1234567
    BP/1234567
    F5/1234567
    1 - And when I search for a customer 1234567 - I find only one customer that is SA/1234567. And IO properties are set to read all the masterdata values and not infoprovider or posted values.  - thats issue one - I would like to see all the three and let the user select what ever he wants.
    2 - Now when I select SA/1234567 and run the report. It shows me data for F5/1234567 - which is correct data for that customer. But in the template I have a info field web item to display the selected variables on the screen. That info field shows the Customer as BP/1234567 - which is wrong and confusing. I checked the properties of the web item and everything seems ok.  So in the variable screen I get a value, the result set if of another value and the variable value that shows in the Info tab is another customer. - Driving me nuts
    3 - When I recreate the same scenario in 3.x query - everything works the way they should - this only happens in 7.0 query. What am I missing here??
    Any pointer or insight is appreciated - sorry for the long post.
    Voodi
    Edited by: voodi on Jun 8, 2010 2:26 PM

    Sorry - its not how its displaying the values rather what its displaying - it misses on 2 other values from the three - though the Bex setting in IO are set to read all the values from materdata table. And in the query I'm using IO properties. And display settings are ok

  • Displayed values and printed values are different.

    I have multiple pages in PDF and each page consists of multiple form fields.The data in form fields displays the correct values but when on clicking on any
    of the field value is getting changed(the value in 1st page is getting displayed for the remaining all pages) and on click on some other location value again restores.
    On printing the PDF the values in the 1st page getting printed in all the pages.This is a bit urgent and need help on this.Using Adobe 9.0 standard version

    Hi Anshuka ,
    Make sure that the form field does not have the same name ,that may be a possible reason you are getting the duplicate values for rest of the pages.
    If possible please share the PDF with me so that I can have a look at it and assist you further.
    Regards
    Sukrit Dhingra

  • Display values in different versions for 3 specific years

    Hi
    I want to show in a dynamic report and in a dynamic input schedule values for different versions ACT and PLAN via Excel client.
    In the rows are entity, time (for 2009, 2010, 2011) and version. And in the columns are special time dimension to show month. Sounds very strange - and it is so... Now I want to show only values for ACT for year 2010 and PLAN for 2011.
    How can I enter the dimension within the expansion area? Is there a way to combine 2 different dimensions like a statement "where time is 2010 and version is ACT"?
    Thank you very much for your ideas

    Hi Nilanjan
    Thank you for your post.
    I'll give EVTIME a try. But it will not solve my problem I guess. EVTIM is helpful for columns to use offset I do understand. Can I use it within expansion area of EVDRE function?
    The display behavior has to be dynamaic. Cause there is in the first expansion dimension entity with a hierarchy. 2.nd expansion is year and 3.rd is version. And I only want to see ACT row for 2009, FC row for 2010 and  PLAN row for 2011. Next 3 rows must be the next item of dimension entity and so on...
    Currently I see 2009 ACT, 2010 ACT and 2011 ACT same like 3 HR and 3 PLAN rows.
    Any ideas?

Maybe you are looking for

  • Unable to load null status:404 when replying in Verizon webmail

    Unable to load null status:404 when replying in Verizon webmail. Error appears in its own window. It seems to be related to MIME-encoded incoming messages. I can open a new message window and copy/paste the reply-message into the new message and then

  • Backing up onto an external hard drive

    I just purchased a 120 GB external hard drive. I wish to back up my iTunes library there, but everytime I try to do this, I am only give the option of a CD or DVD. Any suggestions? Also, is it worth trying to run iTunes exclusively from the Ex. HD an

  • Exporting video to web site

    Ive just completed a short three minute movie and I am having an impossible time trying to exporting it to a web site. I would like it to be viewed in a Windows environment rather than QuickTime. I believe that I accurately provided the correct serve

  • CANNOT REMOVE ERROR CODE 13010

    I have down loaded new version of itunes but still get erroe code 13010 what can i do please?

  • All my text is in CAPS (without Caps lock on)... any idea why?

    Typing in text layer types capital letters (even if I type regular small letters). No idea why and how I can change this.