Bug table layout

Good morning,
I am working with a layout system, and had a problem with several tables
First, its structure:
-> PanelBox or ShowDetailItem
--> PanelGroupLayout - vertical
---> PanelCollection - AFStretchWidth
----> ADFTable - AFStretchWidth or without AFStretchWidth
Problem: The table when we started the application, the bottom covered with something, when we click on any column, back to
normal.
Anyone ever had similar problem?
I've tried many ways and continues to reflect the problem.
Jdeveloper: 11.1.2.1.0
Weblogic Integred: 10.3.5
Java: 1.6.26
Grateful.
Edited by: Rafael Silva on 10/02/2012 06:09

as ditto(somewhat not all)
i gave a look to your code. and try to reproduce that behaiour.
it's nt happening for me.
<?xml version='1.0' encoding='UTF-8'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
          xmlns:f="http://java.sun.com/jsf/core"
          xmlns:h="http://java.sun.com/jsf/html"
          xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
  <jsp:directive.page contentType="text/html;charset=UTF-8"/>
  <f:view>
    <af:document id="d1" binding="#{backingBeanScope.backing_untitled3.d1}">
      <af:messages binding="#{backingBeanScope.backing_untitled3.m1}" id="m1"/>
      <af:form id="f1" binding="#{backingBeanScope.backing_untitled3.f1}">
        <af:pageTemplate viewId="/oracle/ui/pattern/dynamicShell/dynamicTabShell.jspx"
                         value="#{bindings.pageTemplateBinding}" id="pt1">
          <f:facet name="copyright"/>
          <f:facet name="about"/>
          <f:facet name="navigation"/>
          <f:facet name="globalLinks"/>
          <f:facet name="status"/>
          <f:facet name="globalToolbar"/>
          <f:facet name="globalSearch"/>
          <f:facet name="globalTabs"/>
          <f:facet name="welcome">
          <af:panelHeader text="Employees"
                                  binding="#{backingBeanScope.backing_untitled3.ph1}"
                                  id="ph1">
                  <f:facet name="context"/>
                  <f:facet name="menuBar"/>
                  <f:facet name="toolbar"/>
                  <f:facet name="legend"/>
                  <f:facet name="info"/>
                    <af:panelGroupLayout layout="scroll" binding="#{backingBeanScope.backing_untitled3.pgl2}"
                                         id="pgl2">
                    <af:query id="qryId1" headerText="Search" disclosed="true"
                              value="#{bindings.ImplicitViewCriteriaQuery.queryDescriptor}"
                              model="#{bindings.ImplicitViewCriteriaQuery.queryModel}"
                              queryListener="#{bindings.ImplicitViewCriteriaQuery.processQuery}"
                              queryOperationListener="#{bindings.ImplicitViewCriteriaQuery.processQueryOperation}"
                              binding="#{backingBeanScope.backing_untitled3.qryId1}"
                              inlineStyle="padding:10px 10px 10px 10px;"
                              resultComponentId="::pc1:t1"/>
<af:panelCollection binding="#{backingBeanScope.backing_untitled3.pc1}"
                                    id="pc1" styleClass="AFStretchWidth" featuresOff="statusBar">
                  <f:facet name="menus">
</f:facet>
                  <f:facet name="toolbar">
                      <af:toolbar binding="#{backingBeanScope.backing_untitled3.t2}"
                                  id="t2">
                      <af:commandLink text="commandLink 1"
                                      binding="#{backingBeanScope.backing_untitled3.cl1}"
                                      id="cl1">
                        <af:showPopupBehavior popupId="::p1"/>
                      </af:commandLink>
                    </af:toolbar>
                  </f:facet>
                  <f:facet name="statusbar"/>
                  <af:table value="#{bindings.EmployeesView1.collectionModel}"
                            var="row" width="100%" columnStretching="column:c2"
                            rows="#{bindings.EmployeesView1.rangeSize}"
                            emptyText="#{bindings.EmployeesView1.viewable ? 'No data to display.' : 'Access Denied.'}"
                            fetchSize="#{bindings.EmployeesView1.rangeSize}"
                            rowBandingInterval="0"
                            filterModel="#{bindings.ImplicitViewCriteriaQuery.queryDescriptor}"
                            queryListener="#{bindings.ImplicitViewCriteriaQuery.processQuery}"
                            filterVisible="true" varStatus="vs"
                            selectedRowKeys="#{bindings.EmployeesView1.collectionModel.selectedRow}"
                            selectionListener="#{bindings.EmployeesView1.collectionModel.makeCurrent}"
                            rowSelection="single" styleClass="AFStretchWidth"
                            binding="#{backingBeanScope.backing_untitled3.t1}"
                            id="t1"
                            partialTriggers=":::::cb1 :::::cb2 :::::cb3 :::::cb4">
                    <af:column sortProperty="EmployeeId" filterable="true"
                               sortable="true" inlineStyle="text-align:right;"
                               headerText="#{bindings.EmployeesView1.hints.EmployeeId.label}"
                               id="c11" width="50" >
                      <af:inputText value="#{row.bindings.EmployeeId.inputValue}"
                                    label="#{bindings.EmployeesView1.hints.EmployeeId.label}"
                                    required="#{bindings.EmployeesView1.hints.EmployeeId.mandatory}"
                                    columns="#{bindings.EmployeesView1.hints.EmployeeId.displayWidth}"
                                    maximumLength="#{bindings.EmployeesView1.hints.EmployeeId.precision}"
                                    shortDesc="#{bindings.EmployeesView1.hints.EmployeeId.tooltip}"
                                    id="it2" inlineStyle="text-align:right;">
                        <f:validator binding="#{row.bindings.EmployeeId.validator}"/>
                        <af:convertNumber groupingUsed="false"
                                          pattern="#{bindings.EmployeesView1.hints.EmployeeId.format}"/>
                      </af:inputText>
                    </af:column>
                    <af:column sortProperty="FirstName" filterable="true"
                               sortable="true"
                               headerText="#{bindings.EmployeesView1.hints.FirstName.label}"
                               id="c6">
                      <af:inputText value="#{row.bindings.FirstName.inputValue}"
                                    label="#{bindings.EmployeesView1.hints.FirstName.label}"
                                    required="#{bindings.EmployeesView1.hints.FirstName.mandatory}"
                                    columns="#{bindings.EmployeesView1.hints.FirstName.displayWidth}"
                                    maximumLength="#{bindings.EmployeesView1.hints.FirstName.precision}"
                                    shortDesc="#{bindings.EmployeesView1.hints.FirstName.tooltip}"
                                    id="it6">
                        <f:validator binding="#{row.bindings.FirstName.validator}"/>
                      </af:inputText>
                    </af:column>
                    <af:column sortProperty="LastName" filterable="true"
                               sortable="true"
                               headerText="#{bindings.EmployeesView1.hints.LastName.label}"
                               id="c1">
                      <af:inputText value="#{row.bindings.LastName.inputValue}"
                                    label="#{bindings.EmployeesView1.hints.LastName.label}"
                                    required="#{bindings.EmployeesView1.hints.LastName.mandatory}"
                                    columns="#{bindings.EmployeesView1.hints.LastName.displayWidth}"
                                    maximumLength="#{bindings.EmployeesView1.hints.LastName.precision}"
                                    shortDesc="#{bindings.EmployeesView1.hints.LastName.tooltip}"
                                    id="it10">
                        <f:validator binding="#{row.bindings.LastName.validator}"/>
                      </af:inputText>
                    </af:column>
                    <af:column sortProperty="Email" filterable="true"
                               sortable="true"
                               headerText="#{bindings.EmployeesView1.hints.Email.label}"
                               id="c4">
                      <af:inputText value="#{row.bindings.Email.inputValue}"
                                    label="#{bindings.EmployeesView1.hints.Email.label}"
                                    required="#{bindings.EmployeesView1.hints.Email.mandatory}"
                                    columns="#{bindings.EmployeesView1.hints.Email.displayWidth}"
                                    maximumLength="#{bindings.EmployeesView1.hints.Email.precision}"
                                    shortDesc="#{bindings.EmployeesView1.hints.Email.tooltip}"
                                    id="it1">
                        <f:validator binding="#{row.bindings.Email.validator}"/>
                      </af:inputText>
                    </af:column>
                    <af:column sortProperty="PhoneNumber" filterable="true"
                               sortable="true"
                               headerText="#{bindings.EmployeesView1.hints.PhoneNumber.label}"
                               id="c9">
                      <af:inputText value="#{row.bindings.PhoneNumber.inputValue}"
                                    label="#{bindings.EmployeesView1.hints.PhoneNumber.label}"
                                    required="#{bindings.EmployeesView1.hints.PhoneNumber.mandatory}"
                                    columns="#{bindings.EmployeesView1.hints.PhoneNumber.displayWidth}"
                                    maximumLength="#{bindings.EmployeesView1.hints.PhoneNumber.precision}"
                                    shortDesc="#{bindings.EmployeesView1.hints.PhoneNumber.tooltip}"
                                    id="it5">
                        <f:validator binding="#{row.bindings.PhoneNumber.validator}"/>
                      </af:inputText>
                    </af:column>
                    <af:column sortProperty="HireDate" filterable="true"
                               sortable="true"  width="90" inlineStyle="text-align:left;"
                               headerText="#{bindings.EmployeesView1.hints.HireDate.label}"
                               id="c5">
                      <f:facet name="filter">
                        <af:inputDate value="#{vs.filterCriteria.HireDate}"
                                      binding="#{backingBeanScope.backing_untitled3.id1}"
                                      id="id1"/>
                      </f:facet>
                      <af:inputDate value="#{row.bindings.HireDate.inputValue}"
                                    label="#{bindings.EmployeesView1.hints.HireDate.label}"
                                    required="#{bindings.EmployeesView1.hints.HireDate.mandatory}"
                                    shortDesc="#{bindings.EmployeesView1.hints.HireDate.tooltip}"
                                    id="id2">
                        <f:validator binding="#{row.bindings.HireDate.validator}"/>
                        <af:convertDateTime pattern="#{bindings.EmployeesView1.hints.HireDate.format}"/>
                      </af:inputDate>
                    </af:column>
                    <af:column sortProperty="JobId" filterable="true"
                               sortable="true"  width="70" inlineStyle="text-align:center;"
                               headerText="#{bindings.EmployeesView1.hints.JobId.label}"
                               id="c3">
                      <af:inputText value="#{row.bindings.JobId.inputValue}"
                                    label="#{bindings.EmployeesView1.hints.JobId.label}"
                                    required="#{bindings.EmployeesView1.hints.JobId.mandatory}"
                                    columns="#{bindings.EmployeesView1.hints.JobId.displayWidth}"
                                    maximumLength="#{bindings.EmployeesView1.hints.JobId.precision}"
                                    shortDesc="#{bindings.EmployeesView1.hints.JobId.tooltip}"
                                    id="it7">
                        <f:validator binding="#{row.bindings.JobId.validator}"/>
                      </af:inputText>
                    </af:column>
                    <af:column sortProperty="Salary" filterable="true"
                               sortable="true" width="110" inlineStyle="text-align:center;"
                               headerText="#{bindings.EmployeesView1.hints.Salary.label}"
                               id="c2">
                      <af:inputText value="#{row.bindings.Salary.inputValue}"
                                    label="#{bindings.EmployeesView1.hints.Salary.label}"
                                    required="#{bindings.EmployeesView1.hints.Salary.mandatory}"
                                    columns="#{bindings.EmployeesView1.hints.Salary.displayWidth}"
                                    maximumLength="#{bindings.EmployeesView1.hints.Salary.precision}"
                                    shortDesc="#{bindings.EmployeesView1.hints.Salary.tooltip}"
                                    id="it9">
                        <f:validator binding="#{row.bindings.Salary.validator}"/>
                        <af:convertNumber groupingUsed="false"
                                          pattern="#{bindings.EmployeesView1.hints.Salary.format}"/>
                      </af:inputText>
                    </af:column>
                    <af:column sortProperty="CommissionPct" filterable="true"
                               sortable="true" width="90" inlineStyle="text-align:center;"
                               headerText="#{bindings.EmployeesView1.hints.CommissionPct.label}"
                               id="c8">
                      <af:inputText value="#{row.bindings.CommissionPct.inputValue}"
                                    label="#{bindings.EmployeesView1.hints.CommissionPct.label}"
                                    required="#{bindings.EmployeesView1.hints.CommissionPct.mandatory}"
                                    columns="#{bindings.EmployeesView1.hints.CommissionPct.displayWidth}"
                                    maximumLength="#{bindings.EmployeesView1.hints.CommissionPct.precision}"
                                    shortDesc="#{bindings.EmployeesView1.hints.CommissionPct.tooltip}"
                                    id="it3">
                        <f:validator binding="#{row.bindings.CommissionPct.validator}"/>
                        <af:convertNumber groupingUsed="false"
                                          pattern="#{bindings.EmployeesView1.hints.CommissionPct.format}"/>
                      </af:inputText>
                    </af:column>
                    <af:column sortProperty="ManagerId" filterable="true"
                               sortable="true" width="120" inlineStyle="text-align:center;"
                               headerText="#{bindings.EmployeesView1.hints.ManagerId.label}"
                               id="c10">
                      <af:inputText value="#{row.bindings.ManagerId.inputValue}"
                                    label="#{bindings.EmployeesView1.hints.ManagerId.label}"
                                    required="#{bindings.EmployeesView1.hints.ManagerId.mandatory}"
                                    columns="#{bindings.EmployeesView1.hints.ManagerId.displayWidth}"
                                    maximumLength="#{bindings.EmployeesView1.hints.ManagerId.precision}"
                                    shortDesc="#{bindings.EmployeesView1.hints.ManagerId.tooltip}"
                                    id="it8">
                        <f:validator binding="#{row.bindings.ManagerId.validator}"/>
                        <af:convertNumber groupingUsed="false"
                                          pattern="#{bindings.EmployeesView1.hints.ManagerId.format}"/>
                      </af:inputText>
                    </af:column>
                    <af:column sortProperty="DepartmentId" filterable="true"
                               sortable="true" width="16"
                               headerText="#{bindings.EmployeesView1.hints.DepartmentId.label}"
                               id="c7">
                      <af:inputText value="#{row.bindings.DepartmentId.inputValue}"
                                    label="#{bindings.EmployeesView1.hints.DepartmentId.label}"
                                    required="#{bindings.EmployeesView1.hints.DepartmentId.mandatory}"
                                    columns="#{bindings.EmployeesView1.hints.DepartmentId.displayWidth}"
                                    maximumLength="#{bindings.EmployeesView1.hints.DepartmentId.precision}"
                                    shortDesc="#{bindings.EmployeesView1.hints.DepartmentId.tooltip}"
                                    id="it4">
                        <f:validator binding="#{row.bindings.DepartmentId.validator}"/>
                        <af:convertNumber groupingUsed="false"
                                          pattern="#{bindings.EmployeesView1.hints.DepartmentId.format}"/>
                      </af:inputText>
                    </af:column>
                  </af:table>
                </af:panelCollection>
            </af:panelGroupLayout>
           </af:panelHeader>
           </f:facet>
       <f:facet name="p">
            <af:popup binding="#{backingBeanScope.backing_untitled3.p1}" childCreation="deferred" autoCancel="disabled"
                      id="p1" contentDelivery="lazyUncached" >
              <af:dialog binding="#{backingBeanScope.backing_untitled3.d2}"
                         id="d2">
                <af:panelFormLayout binding="#{backingBeanScope.backing_untitled3.pfl1}"
                                    id="pfl1">
                  <af:inputText value="#{bindings.EmployeeId.inputValue}"
                                label="#{bindings.EmployeeId.hints.label}"
                                required="#{bindings.EmployeeId.hints.mandatory}"
                                columns="#{bindings.EmployeeId.hints.displayWidth}"
                                maximumLength="#{bindings.EmployeeId.hints.precision}"
                                shortDesc="#{bindings.EmployeeId.hints.tooltip}"
                                binding="#{backingBeanScope.backing_untitled3.it11}"
                                id="it11">
                    <f:validator binding="#{bindings.EmployeeId.validator}"/>
                    <af:convertNumber groupingUsed="false"
                                      pattern="#{bindings.EmployeeId.format}"/>
                  </af:inputText>
                  <af:inputText value="#{bindings.FirstName.inputValue}"
                                label="#{bindings.FirstName.hints.label}"
                                required="#{bindings.FirstName.hints.mandatory}"
                                columns="#{bindings.FirstName.hints.displayWidth}"
                                maximumLength="#{bindings.FirstName.hints.precision}"
                                shortDesc="#{bindings.FirstName.hints.tooltip}"
                                binding="#{backingBeanScope.backing_untitled3.it12}"
                                id="it12">
                    <f:validator binding="#{bindings.FirstName.validator}"/>
                  </af:inputText>
                  <af:inputText value="#{bindings.LastName.inputValue}"
                                label="#{bindings.LastName.hints.label}"
                                required="#{bindings.LastName.hints.mandatory}"
                                columns="#{bindings.LastName.hints.displayWidth}"
                                maximumLength="#{bindings.LastName.hints.precision}"
                                shortDesc="#{bindings.LastName.hints.tooltip}"
                                binding="#{backingBeanScope.backing_untitled3.it13}"
                                id="it13">
                    <f:validator binding="#{bindings.LastName.validator}"/>
                  </af:inputText>
                  <af:inputText value="#{bindings.Email.inputValue}"
                                label="#{bindings.Email.hints.label}"
                                required="#{bindings.Email.hints.mandatory}"
                                columns="#{bindings.Email.hints.displayWidth}"
                                maximumLength="#{bindings.Email.hints.precision}"
                                shortDesc="#{bindings.Email.hints.tooltip}"
                                binding="#{backingBeanScope.backing_untitled3.it14}"
                                id="it14">
                    <f:validator binding="#{bindings.Email.validator}"/>
                  </af:inputText>
                  <af:inputText value="#{bindings.PhoneNumber.inputValue}"
                                label="#{bindings.PhoneNumber.hints.label}"
                                required="#{bindings.PhoneNumber.hints.mandatory}"
                                columns="#{bindings.PhoneNumber.hints.displayWidth}"
                                maximumLength="#{bindings.PhoneNumber.hints.precision}"
                                shortDesc="#{bindings.PhoneNumber.hints.tooltip}"
                                binding="#{backingBeanScope.backing_untitled3.it15}"
                                id="it15">
                    <f:validator binding="#{bindings.PhoneNumber.validator}"/>
                  </af:inputText>
                  <af:inputDate value="#{bindings.HireDate.inputValue}"
                                label="#{bindings.HireDate.hints.label}"
                                required="#{bindings.HireDate.hints.mandatory}"
                                shortDesc="#{bindings.HireDate.hints.tooltip}"
                                binding="#{backingBeanScope.backing_untitled3.id3}"
                                id="id3">
                    <f:validator binding="#{bindings.HireDate.validator}"/>
                    <af:convertDateTime pattern="#{bindings.HireDate.format}"/>
                  </af:inputDate>
                  <af:inputText value="#{bindings.JobId.inputValue}"
                                label="#{bindings.JobId.hints.label}"
                                required="#{bindings.JobId.hints.mandatory}"
                                columns="#{bindings.JobId.hints.displayWidth}"
                                maximumLength="#{bindings.JobId.hints.precision}"
                                shortDesc="#{bindings.JobId.hints.tooltip}"
                                binding="#{backingBeanScope.backing_untitled3.it16}"
                                id="it16">
                    <f:validator binding="#{bindings.JobId.validator}"/>
                  </af:inputText>
                  <af:inputText value="#{bindings.Salary.inputValue}"
                                label="#{bindings.Salary.hints.label}"
                                required="#{bindings.Salary.hints.mandatory}"
                                columns="#{bindings.Salary.hints.displayWidth}"
                                maximumLength="#{bindings.Salary.hints.precision}"
                                shortDesc="#{bindings.Salary.hints.tooltip}"
                                binding="#{backingBeanScope.backing_untitled3.it17}"
                                id="it17">
                    <f:validator binding="#{bindings.Salary.validator}"/>
                    <af:convertNumber groupingUsed="false"
                                      pattern="#{bindings.Salary.format}"/>
                  </af:inputText>
                  <af:inputText value="#{bindings.CommissionPct.inputValue}"
                                label="#{bindings.CommissionPct.hints.label}"
                                required="#{bindings.CommissionPct.hints.mandatory}"
                                columns="#{bindings.CommissionPct.hints.displayWidth}"
                                maximumLength="#{bindings.CommissionPct.hints.precision}"
                                shortDesc="#{bindings.CommissionPct.hints.tooltip}"
                                binding="#{backingBeanScope.backing_untitled3.it18}"
                                id="it18">
                    <f:validator binding="#{bindings.CommissionPct.validator}"/>
                    <af:convertNumber groupingUsed="false"
                                      pattern="#{bindings.CommissionPct.format}"/>
                  </af:inputText>
                  <af:inputText value="#{bindings.ManagerId.inputValue}"
                                label="#{bindings.ManagerId.hints.label}"
                                required="#{bindings.ManagerId.hints.mandatory}"
                                columns="#{bindings.ManagerId.hints.displayWidth}"
                                maximumLength="#{bindings.ManagerId.hints.precision}"
                                shortDesc="#{bindings.ManagerId.hints.tooltip}"
                                binding="#{backingBeanScope.backing_untitled3.it19}"
                                id="it19">
                    <f:validator binding="#{bindings.ManagerId.validator}"/>
                    <af:convertNumber groupingUsed="false"
                                      pattern="#{bindings.ManagerId.format}"/>
                  </af:inputText>
                  <af:inputText value="#{bindings.DepartmentId.inputValue}"
                                label="#{bindings.DepartmentId.hints.label}"
                                required="#{bindings.DepartmentId.hints.mandatory}"
                                columns="#{bindings.DepartmentId.hints.displayWidth}"
                                maximumLength="#{bindings.DepartmentId.hints.precision}"
                                shortDesc="#{bindings.DepartmentId.hints.tooltip}"
                                binding="#{backingBeanScope.backing_untitled3.it20}"
                                id="it20">
                    <f:validator binding="#{bindings.DepartmentId.validator}"/>
                    <af:convertNumber groupingUsed="false"
                                      pattern="#{bindings.DepartmentId.format}"/>
                  </af:inputText>
                  <f:facet name="footer">
                    <af:panelGroupLayout layout="vertical"
                                         binding="#{backingBeanScope.backing_untitled3.pgl1}"
                                         id="pgl1">
                      <af:panelGroupLayout layout="horizontal"
                                           binding="#{backingBeanScope.backing_untitled3.pgl3}"
                                           id="pgl3">
                        <af:commandButton actionListener="#{bindings.First.execute}"
                                          text="First"
                                          disabled="#{!bindings.First.enabled}"
                                          partialSubmit="true"
                                          binding="#{backingBeanScope.backing_untitled3.cb1}"
                                          id="cb1"/>
                        <af:commandButton actionListener="#{bindings.Previous.execute}"
                                          text="Previous"
                                          disabled="#{!bindings.Previous.enabled}"
                                          partialSubmit="true"
                                          binding="#{backingBeanScope.backing_untitled3.cb2}"
                                          id="cb2"/>
                        <af:commandButton actionListener="#{bindings.Next.execute}"
                                          text="Next"
                                          disabled="#{!bindings.Next.enabled}"
                                          partialSubmit="true"
                                          binding="#{backingBeanScope.backing_untitled3.cb3}"
                                          id="cb3"/>
                        <af:commandButton actionListener="#{bindings.Last.execute}"
                                          text="Last"
                                          disabled="#{!bindings.Last.enabled}"
                                          partialSubmit="true"
                                          binding="#{backingBeanScope.backing_untitled3.cb4}"
                                          id="cb4"/>
                      </af:panelGroupLayout>
                      <af:commandButton text="Submit"
                                        binding="#{backingBeanScope.backing_untitled3.cb5}"
                                        id="cb5"/>
                    </af:panelGroupLayout>
                  </f:facet>
                </af:panelFormLayout>
              </af:dialog>
  </af:popup>
            </f:facet>
           <f:facet name="innerToolbar">
          </f:facet>
        </af:pageTemplate>
      </af:form>
    </af:document>
  </f:view>
  <!--oracle-jdev-comment:auto-binding-backing-bean-name:backing_untitled3-->
</jsp:root>i h'd doubt in your code and your picture
http://imageshack.us/photo/my-images/820/afterclickq.jpg/
in that picture seems to clicktoedit option for table.
but the code show all are output text and show details items are shown in picture but the code doent show like that..
whatever. if your using click to edit option in table means one records to getsup of gets down. it's not problem.

Similar Messages

  • In BI Publisher RTF table layout issue for invoice printing

    Hi,
    I am working on check printing and invoice printing project on bi publisher and i am facing one issue. That is i have used section break on check priting so because of that if the the records are more than 20 then check will print on second page and on first page there would be void printed othervise it should print on first page only. In this case the preprinted stationary is not having invoice table form. we are using blank preprinted stationary to print this .
    Now i have done with invoice and cheque layout but in output if the number of records are more than 20 then its going to second page but the problem is that invoice table break into two parts and and the end lineof table layout is not coming on first page .even on second page i am not getting start layout line to make complete table outline.
    I want that full table layouton both the pages of the table. i have tried to to create table skeleton and used it as a watermark to print all the records on it but it is coming in to the middle of the page .so it not working.
    Please anyone knows the solution on this problem please let me know or share your thoughts on this issue.
    As i have tried many options but still stuck into this issue .Kindly help me.
    Regards,
    Prachi G.

    Hmmm ... sounds like a regression bug.
    I would contact support, provide, the version you are using, layout template, sample XML data, 2000 RTF output and 2003 RTF output and ask them to investigate.
    Tim

  • [JHS 10.1.2]  Table layout not warning for losing changes

    I have a table layout in which I can change data.
    When I change data but don't commit (or in case of end-users forget) and navigate to the next 10 records in the table I get no warning that I will loose my changes.
    I guess this is fixed in production version? Could you please confirm this.
    Regards,
    Marcel

    Marcel,
    The JHeadstart 10.1.2 release notes of the latest 10.1.2 build mention a JDeveloper bug 4509014. Can you check if this explains your problem?
    Does your page include file upload? If not, then you can avoid this bug by setting formSubmitted=true on the table. The latest build of JHeadstart 10.1.2 already generates this correctly.
    kind regards,
    Sandra Muller
    JHeadstart Team
    Oracle Consulting

  • How to customize the table layout in WAD (BI70)

    hi experts,
    i want to customize the table layout in WAD.
    in 3.5, i can set the table interface class,and use T_Code se24.
    but now i am using BI7.0, there is no table interface, so how can i customize the table layout?

    Use report designer for customerizing.

  • Problem with "Row-specific or Cascading Lists in Table Layout"

    Hello, friends!
    I have read article "Row-specific or Cascading Lists in Table Layout" written by Steven Davelaar. I have maked several table layouts with this technique and it worked fine.
    But now I have one problem, and this problem is very strange. One of VOs for which I use this table layouts throw exception after commit changes on first LOV attribute (Deptno). First time it was error
    (oracle.jbo.ReadOnlyAttrException) JBO-27008: for atribute mgrList
    at oracle.jbo.AttrValException.<init>(AttrValException.java:112)
         at oracle.jbo.ReadOnlyAttrException.<init>(ReadOnlyAttrException.java:40)
         at oracle.jbo.server.ViewRowImpl.setAttribute(ViewRowImpl.java:815)
         at oracle.jbo.jbotester.JboTesterUtil.setData(JboTesterUtil.java:173)
    Then I setted updateable property of MgrList attribute to always and now i have this error:
    oracle.jbo.domain.DataCreationException: JBO-25009: Cannot create an object of type:java.util.List with value:[{}]
         at oracle.jbo.domain.TypeFactory.get(TypeFactory.java:721)
         at oracle.jbo.domain.TypeFactory.getInstance(TypeFactory.java:85)
    I don't know why, but all worked fine yestarday. And same code works fine for another VOs. And article Test application works fine too.
    Help me, please.
    Thank you.

    <table id="OsnovaniyaPrikazEnd" model="${jhsTableBindings.OsnovaniyaPrikazEnd_1B}" detailDisclosure="${uix.eventResult.detailData}" partialRenderMode="multiple" partialTargets="messageBox _uixState " proxied="true" alternateText="${nls.NO_ROWS_FOUND}" width="50%" rendered="${bindings.newGroup_end2Iterator.findMode!='true'}">
    <tableFormat tableBanding="rowBanding"/>
    <contents>
    <formValue value="${uix.current.rowKeyStr}" name="rowKeyStr" id="${ui:concat('OsnovaniyaPrikazEnd:rowKeyStr:',uix.current.tableIndex)}"/>
    <column>
    <columnFormat displayGrid="true" cellNoWrapFormat="true" columnDataFormat="numberFormat"/>
    <columnHeader>
    <sortableHeader model="${ctrl:createSortableHeaderModel(bindings.OsnovaniyaPrikazEnd,'Id')}" text="Id" required="yes"/>
    </columnHeader>
    <contents>
    <messageTextInput id="${ui:concat('OsnovaniyaPrikazEnd:Id:',uix.current.tableIndex)}" model="${ui:cond(uix.current.isNewRow,null,uix.current.newGroup_end2Id)}" text="${uix.current.OsnovaniyaPrikazEndId}" name="Id" promptAndAccessKey="&Id" rows="1" maximumLength="1" columns="1">
    <onSubmitValidater>
    <decimal/>
    </onSubmitValidater>
    </messageTextInput>
    </contents>
    </column>
    <column>
    <columnFormat displayGrid="true" cellNoWrapFormat="true" columnDataFormat="numberFormat"/>
    <columnHeader>
    <sortableHeader model="${ctrl:createSortableHeaderModel(bindings.OsnovaniyaPrikazEnd,'IdPrikaz')}" text="IdPrikaz"/>
    </columnHeader>
    <contents>
    <messageTextInput id="${ui:concat('OsnovaniyaPrikazEnd:IdPrikaz:',uix.current.tableIndex)}" model="${ui:cond(uix.current.isNewRow,null,uix.current.newGroup_end2IdPrikaz)}" text="${uix.current.OsnovaniyaPrikazEndIdPrikaz}" name="IdPrikaz" promptAndAccessKey="&IdPrikaz" rows="1" maximumLength="1" columns="1">
    <onSubmitValidater>
    <decimal/>
    </onSubmitValidater>
    </messageTextInput>
    </contents>
    </column>
    <column>
    <columnFormat displayGrid="true" cellNoWrapFormat="true" columnDataFormat="numberFormat"/>
    <columnHeader>
    <sortableHeader model="${ctrl:createSortableHeaderModel(bindings.OsnovaniyaPrikazEnd,'IdOsnovanie')}" text="&#1053;&#1072; &#1086;&#1089;&#1085;&#1086;&#1074;&#1072;&#1085;&#1080;&#1080;"/>
    </columnHeader>
    <contents>
    <messageChoice id="${ui:concat('OsnovaniyaPrikazEnd:IdOsnovanie:',uix.current.tableIndex)}" model="${ui:cond(uix.current.isNewRow,null,uix.current.IdOsnovanie)}" name="IdOsnovanie" promptAndAccessKey="&IdOsnovanie" selectedValue="${uix.current.newGroup_end2IdOsnovanie}">
    <contents childData="${jhsTableBindings.Osnovaniya_not_viewVO_1T.rangeSet}">
    <option value="${uix.current.Id}" text="${uix.current.Text}"/>
    </contents>
    <primaryClientAction>
    <firePartialAction event="whenListChanged" formSubmitted="true" unvalidated="true" targets="${ui:cond(uix.current.isNewRow,'OsnovaniyaPrikazEnd', 'OsnovaniyaPrikazEnd')}"/>
    </primaryClientAction>
    </messageChoice>
    </contents>
    </column>
    <column>
    <columnFormat displayGrid="true" cellNoWrapFormat="true" columnDataFormat="numberFormat"/>
    <columnHeader>
    <sortableHeader model="${ctrl:createSortableHeaderModel(bindings.OsnovaniyaPrikazEnd,'IdMoves')}" text="IdMoves"/>
    </columnHeader>
    <contents>
    <messageChoice rendered="${uix.current.ListLength>'1'}" id="${ui:concat('OsnovaniyaPrikazEnd:IdMoves:',uix.current.tableIndex)}"
    model="${ui:cond(uix.current.isNewRow,null,uix.current.OsnovaniyaPrikazEndIdMoves)}" name="IdMoves" promptAndAccessKey="&IdMoves"
    selectedValue="${uix.current.newGroup_end2IdMoves}">
    <contents childData="${uix.current.MovesList.inputValue}">
    <option value="${uix.current.Id}" text="${uix.current.Fam1}"/>
    </contents>
    </messageChoice>
    </contents>
    </column>
    <column>
    <columnFormat displayGrid="true" columnDataFormat="iconButtonFormat"/>
    <columnHeader>
    <text text="&#1059;&#1076;&#1072;&#1083;&#1080;&#1090;&#1100;?"/>
    </columnHeader>
    <contents>
    <checkBox name="deleteRow" value="ok"/>
    </contents>
    </column>
    </contents>
    </table>
    Thank you.

  • How to add a table layout in CRM Sales order?

    dear all ,
    anyone know how to add a table layout in CRM sales order customer tab that using the EEWB added?
    can EEWB do this?   i didn't find the appropriate business object......

    Hi , Swapna
    is you mail address right? can not send out.
    first , you should have added one field using EEWB ,  then to EEWB , find the extension , double click on the task, there  you will find a  "object list"  on the right, the list will give you many many very important  information , you should look through .
    then double click on the "screen:  ..........EEW......." ,  layout , there you will find the field you have added in .  and you can draw anything you want there , then back to the screen flow , write you flow logic in PBO and PAI .
    about the global  data definition,  again to the "object list", you will find a "Report source code:  ......................TOP". in there ,you can define all you data .
    another thing  if you want to save your input field to database tables that you draw (not by EEWB added)
    two ways:
    1. write update table directly  in  PAI module .
    2.  you can use this BADI :  ORDER_SAVE , this is when you save the order to trigger the save action.

  • Error when trying to save in Table Layout

    Hi,
    I am using
    JDeveloper 10.1.3.1.0.3984 and
    JHeadstart 10.1.3.1 release 10.1.3.1.26
    I have some groups with Table and Form layout.
    In some table layout - Multi-Row Update is allowed.
    In those table layouts, if I want to save after update then it gives and error in Internet Explorer dialogue box:
    Line: 469
    Char: 5
    Error: Object doesn't support this action
    Code: 0
    I tried byr removing the group from Application Definition file and adding it again, but it was not fixed.
    Does anybody have any idea why it may happen?
    Thanks
    Syed Jabbar
    University of Windsor
    Windsor, ON, Canada

    Hi,
    It seems like a javascript error, probably from client side validation of faces components. Are you using a supported browser? Have a look here
    http://blogs.oracle.com/jheadstart/2007/12/supported_browsers_for_adf_fac.html
    This is probably not a JHeadstart specific problem, could you try to create the same page using ADF drag and drop and see if the problem persist. Also please post your question on the jdeveloper forum: JDeveloper and ADF
    Kind regards,
    Ruud Bijkerk

  • Upgrading E1 from 8.12 tools 8.97.2.1 to 9.0.2 tools -need db table layouts

    Where can I find a net change E1 812 vs. E1 9.0.2 document regarding specifically database table layouts when considering table conversion. For example, if the table layout for the F0911 table in E1 9.0.2 has changed as compared to the same in E1 8.12 with respect to added fields, deleted fields, changed fields, etc.
    Thanks

    Hi,
    https://support.oracle.com/CSP/ui/flash.html#tab=KBHome%28page=KBHome&id=%28%29%29,%28page=KBNavigator&id=%28viewingMode=1143&from=BOOKMARK&bmDocDsrc=KB&bmDocID=705511.1&bmDocType=REFERENCE&bmDocTitle=JD%20Edwards%20EnterpriseOne%20Applications%20Programmer%27s%20Guide%20Xe%20to%209.0%29%29
    Best Regards.
    Bruno Condemi

  • How to get the sum of  a column in a table layout region

    i have page table layout region and i have many rows in that ...i have a column say xyz now i want the sum of all xyz in all rows ...is that possible ..if it is how..????
    please help me out in this issues...so that i can proceed further with my work..im stuck otu here....if the solution r there in the devguide please tell me where it is ..i mean under which section...bcoz it 1400page document...

    If you are mentioning about table/advanced table region you can enable totalling in those regions. Please check the Table / Advanced Table section as appropriate in Chapter 4 of the dev guide.
    If it is not a table / advancedTable then you will have to programmatically total the column value and display it in the appropriate cell.

  • Moving Columns in Table Layout

    Hi,
    I'm newbie to Disco.Is there any short cut to move columns the way we want in Table Layout or we've to manually move column by column?
    Thanks,
    Kiran

    Hi,
    I'm newbie to Disco.Is there any short cut to move columns the way we want in Table Layout or we've to manually move column by column?Not really, though it is often helpful to drag the columns you want to move into page items first before dragging them down to place required in the table layout.
    Rod West

  • How to remove the Personalize link from the table layout displayed on Page.

    While i create a new page and a table layout is created on this page it displays a link called Personalize this table. For every table i create the same is displayed.
    If 10 such table layouts are there i get personalize options on all such 10 layouts on same page.
    If anyone of u knows @ this please help me out how to remove that link from the page.

    You can set the value for the profile FND: Personalization Region Link Enabled / FND_PERSONALIZATION_REGION_LINK_ENABLED to No.
    For additional information, please check the Personalization topic of the Oracle Application Framework Profile Options chapter in the OA Framework developer's guide.

  • UIX Custom table layout with ADF Bindings

    hello,
    Please point me to examples of binding ADF data controls on UIX table and also the UIX table layout with different row and col spans.
    Thanks in Advance.

    bump.

  • Disable a field in a Table layout based on the condition

    Hello,
    In the seeded page, there is a table layout region with viewobject name as View1. It has 3 fields displayed as Field A, Field B, Field C with multiple rows displayed when the page opens. Fields B and C are MessageTextInputs and Field A is MessageChoice. So in the displayed rows in the table, if the value selected in the Field A is "Bonus" then the fields B and C needs to be disabled so that the user should not be able to enter any information. So if there are 5 rows in that table, only 1 or 2 rows might have the value "Bonus" in the field A and only for those rows, fields B and C needs to be disabled.
    I would appreciate if anyone can provide me with a logic. I know how to disable a field based on the value of other field but in this case here, its a table region with multiple rows and only few of them needs to be disabled. I couldn't think of any logic here. Any help is greatly appreciated.
    Thank You
    KK

    Similar problem
    Re: How to make Advanced table readonly

  • Delete in Table Layout gives JHS-00101

    Hello JHeadstart Team,
    I'm using jdev 10.1.3.1 and jhs 10.1.3 (SU1).
    In my application I have 2 master-detail pages (master = form layout, detail = table layout). In both pages the delete action does not work, i.e. selecting a delete checkbox and pressing the save button gives JHS-00101: No changes to save !?
    Select, Insert and Update work fine!
    Log:
    07/02/22 10:03:16 [907] (39985) ApplicationPoolImpl.reuseReferencedInstance(2172) Reusing a cached session application module instance
    07/02/22 10:03:16 [908] (0) ApplicationPoolImpl.reuseReferencedInstance(2172) Reusing a cached session application module instance
    10:03:16 DEBUG (JhsPageLifecycle) -Executing prepareModel, page=/pages/GEWGemeindedatenBenutzerdefiniert/KulissenBenutzerdefiniert.jspx, pagedef=KulissenBenutzerdefiniertPageDef
    10:03:16 DEBUG (JhsNavigationHandlerImpl) -Executing checkRoles
    07/02/22 10:03:16 [909] (109) DCBindingContainer.internalRefreshControl(2314) **** refreshControl() for BindingContainer :KulissenBenutzerdefiniertPageDef
    07/02/22 10:03:16 [910] (0) DCIteratorBinding.getViewObject(1224) Resolving VO:KulissenBenutzerdefiniertView1 for iterator binding:KulissenBenutzerdefiniertIterator
    07/02/22 10:03:16 [911] (0) DCIteratorBinding.getViewObject(1224) Resolving VO:KulissenzuordnungenView1 for iterator binding:KulissenzuordnungenIterator
    07/02/22 10:03:16 [912] (16) DCJboDataControl.syncWithForceOption(1248) *** DCDataControl.sync() called from :DCBindingContainer.refresh
    07/02/22 10:03:16 [913] (0) JboBeanUtils.getProperty(81) *** Using bean introspection to lookup value :currentRowIndexInRange
    10:03:16 DEBUG (JhsPageLifecycle) -executing processModelUpdaters
    10:03:16 DEBUG (JhsCollectionModel) -KulissenzuordnungenCollectionModel: Executing processNewRows
    10:03:16 DEBUG (JhsCollectionModel) -KulissenzuordnungenCollectionModel: KulissenzuordnungenTable new row 0 ignored, no attributes updated.
    10:03:16 DEBUG (JhsCollectionModel) -KulissenzuordnungenCollectionModel: KulissenzuordnungenTable new row 1 ignored, no attributes updated.
    10:03:16 DEBUG (JhsPageLifecycle) -executing validateModelUpdates
    10:03:16 DEBUG (JhsPageLifecycle) -executing onCommit
    10:03:16 DEBUG (JhsNavigationHandlerImpl) -handleNavigation action=null, outcome=Commit
    10:03:16 DEBUG (JhsPageLifecycle) -Executing prepareRender, page=/pages/GEWGemeindedatenBenutzerdefiniert/KulissenBenutzerdefiniert.jspx, pagedef=KulissenBenutzerdefiniertPageDef
    07/02/22 10:03:16 [946] (125) DCBindingContainer.internalRefreshControl(2314) **** refreshControl() for BindingContainer :KulissenBenutzerdefiniertPageDef
    07/02/22 10:03:16 [947] (0) DCJboDataControl.syncWithForceOption(1248) *** DCDataControl.sync() called from :DCBindingContainer.refresh
    07/02/22 10:03:16 [948] (31) JboBeanUtils.getProperty(81) *** Using bean introspection to lookup value :currentRowIndexInRange
    In the ADF BC Tester the application modules run properly, the delete action as well.
    Why is there no call to (JhsCollectionModel) -KulissenzuordnungenCollectionModel: Key of row that will be removed: oracle.jbo.Key?
    How can I debug?
    Is there something wrong in the model level or view level?
    Thanks in advance
    Peter

    Hello again,
    I found the reason for the described behaviour:
    If I check "Use Table Range?" in the detail block the delete action works, if I turn off this attribute the delete action gives JHS-00101.
    Can you verify this ?! My workaround for the meantime is to set the Number of rows that should be displayed to a very high number.
    Regards
    Peter

  • How to Email POWL Reports / Apply Web Dynpro ALV Table Layout Settings

    Hi all,
    we want to be able to automatically extract POWL reports and email them to users in a batch job.
    We can refresh a POWL report using FM POWL_QUERY_REFRESH, and access the raw report data using method CL_POWL_QUERY_ACCESSOR=>GET_CACHED_RESULTS.
    However this merely gives us a table of raw data.  No view layout (ie. Web Dynpro ALV table layout) settings have been applied, so there is no hiding or arranging of columns, row sorting, calculations or filters.
    Ideally we would like to be able to specify a query and view layout.  The batch job would then refresh and extract the data, and format the data according to the view layout before sending it on as an attachment in an email.
    Does anyone know how to determine and apply Web Dynpro ALV table layout settings to format table data outside of the Web Dynpro environment ?
    Thanks & regards,
    Grogan

    Hi Grogan,
    Did you find out how this works..i also have the same issue.
    Thanks
    Jdsouza

Maybe you are looking for

  • Transfer data from a table to another table

    Hello I want to transfer data from a table in one server to another table in a different server, I want to do this on a nightly job, what will be the best way, please advise, thank you.

  • Can any one give guidence

    hi, experts     i am seraching job on abap     here is my objects   u2022     Developed a Stock overview report. u2022     Developed a Sales order report. u2022     Developed Vendor analysis report. u2022     Developed a report on Account receivable

  • "Lost" my Catalog after last update!

    I have PSE9+PRE9 and I was using Organizer's Catalog! After the last update from Adobe I just "lost" all items in my Catalog! Any advice? Using Mac OS X 10.6.7.

  • HpF4280 all in one won't print documents or copy

    Printer will print test page--It will scan, save the scan, print scanned document--It will print pages from Internet. HOWEVER, when I try to print a Word, Excel, (both 2007) or even Notepad document it spits out blank sheets. Same with copying--doesn

  • IPhoto slideshows don't transfer over to Photos?

    My iPhoto slideshows are listed under the Photos app, but none of the settings were transferred, or music selections?  Any way to recover these?