PanelGrid with binding attribute not rendering when event on page fires

I am having a similar issue with my components not being rendered from a dynamic binding attribute as described by this post:http://forum.java.sun.com/thread.jspa?threadID=671672 but for different reason. I have combed the forum and other sources for a week now, tried numerous variations of this based on suggestions I've read for rendering dynamic components and am unable to find the problem. I would appreciate guidance as I don't know what else to do and I imagine there is something basic about the JSF flow layout or component classes I am not doing correctly.
From a high level, I have a page with two panel groups. The first contains a list of command links (like a menu) that have an actionlistener that populates a list of QueryVariable objects called filterCriteria in the backing bean based on the selection made and then calls a function to update components in the second panel. The second panelGroup contains a panelGrid with a binding attribute that constructs a dynamic set of input fields based on the content of the filterCriteria list. When I first naviagate to this page from another page, the fields are rendered properly. However, if I then select a commandLink from the menu, the panelGrid disappears and is not rendered.
I've stepped through the code in a debugger and my actionlistener is called when I select a command link. However, the binding attribute method is not called at this time, so I added a direct call to it from the action listener. I know the actionlistener is working because I've verified it in the debugger and if I navigate away and come back to the page, then the binding method is called and the new selection is reflected in a rendered panelGrid. Why is it not rendering though when I first select the commandLink and the page is updated. Also, fyi, there is an action method for the commandlinks but it returns null;
FWIW, I'm using MyFaces and Facelets in my application.
Below is my code. This is inside a managed session bean:
JSF Snippet:
<h:panelGrid id="inputVarsTable" columns="3" binding="#{query.table}"/>
     public HtmlPanelGrid getTable() {
          if(table == null)
               table = new HtmlPanelGrid();
          return constructSearchInputTable();               
     public void setTable(HtmlPanelGrid table) {
          this.table = table;
  // Updates table component to reflect filterCriteria
     public HtmlPanelGrid constructSearchInputTable()
          HtmlOutputLabel outLabel;
          HtmlOutputText outText;
          HtmlInputText  inText;
          HtmlMessage message;
          List<UIComponent> children;
          ValueBinding vb;
          FacesContext facesContext = FacesContext.getCurrentInstance();
          UIViewRoot uIViewRoot = facesContext.getViewRoot();
        Application application = facesContext.getApplication();
          children = table.getChildren();
    children.clear();
          try {
               for (int i = 0; i < getFilterCriteria().size(); i++) {
                    QueryVariable var = getFilterCriteria().get(i);
                    String id = "var" + i;
                    //<h:outputLabel for="#{var.name}" styleClass="label">
                    outLabel = new HtmlOutputLabel();               
                    outLabel.setFor(id);
                    outLabel.setStyleClass("label");
                    //  <h:outputText value="#{var.name}" />
                    outText = new HtmlOutputText();
                    outText.setValue(var.getName());
                    outText.setParent(outLabel);
                    outLabel.getChildren().add(outText);
                    outLabel.setParent(table);
                    children.add(outLabel);
                    //<h:inputText id="#{var.name}" value="#{var.value}" required="true" />
                    inText = new HtmlInputText();
                    inText.setId(id);
                    String bind = "#{query.filterValues['" + var.getName() + "']}";
                    inText.setValueBinding("value", application.createValueBinding(bind));
                    if(var.getDefaultValue() == null)
                         inText.setRequired(true);
                    inText.setParent(table);
                    children.add(inText);
                    //<h:message for="#{var.name}" styleClass="errorText"/>
                    message = new HtmlMessage();
                    message.setFor(id);
                    message.setStyleClass("errorText");
                    message.setParent(table);
                    children.add(message);     
          } catch (Exception e) {
               log.error(e);
          return table;
  // Command Link Menu ActionListener
     public void structuredQuerySelection(ActionEvent e) {
          queryType = QueryType.StructuredQuery;
          UICommand cmd = (UICommand) e.getSource();
          filterSelection = (String) cmd.getValue();
          Map<String, SearchRequestCtx> queries = pdp.getGenericMetadata().savedQueries;
          SearchRequestCtx ctx = queries.get(filterSelection);
          filterCriteria = new ArrayList<QueryVariable>();
          filterCriteria.addAll(ctx.getVariables());
          constructSearchInputTable();
     // Command Link Menu Action
     public String selectStructuredQuery()
          return null;
     }BTW, this is my first post and I don't really know how that Duke Dollar thing works but I'm happy to offer some to anyone that can solve this issue for me.
Thanks,
Ken

Glad to hear I am not the only one struggling with this type of issue.
I tried your suggestion but it caused a NoSuchElementException when the page tried to render. Stepping through the code, the init function is always called after my panelGrid is constructed. I even commented out the logic to clear the children and confirmed that in the constructed page, the outputText component that binds to init is the first element on the page - right after the opening body tag. Maybe, JSF doesn't necessarily construct the page in top to bottom order? Also, the exception makes me think that this gets called too late in the lifecycle to work. Were you able to get this to work?
java.util.NoSuchElementException
     at java.util.AbstractList$Itr.next(AbstractList.java:427)
     at com.sun.facelets.FaceletViewHandler.encodeRecursive(FaceletViewHandler.java:515)
     at com.sun.facelets.FaceletViewHandler.renderView(FaceletViewHandler.java:445)
     at org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:300)
     at javax.faces.webapp.FacesServlet.service(FacesServlet.java:110)
     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
     at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:214)
     at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
     at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
     at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
     at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
     at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
     at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
     at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:825)
     at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:738)
     at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:526)
     at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
     at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
     at java.lang.Thread.run(Thread.java:595)Ken

Similar Messages

  • Jsf 1.2_08 gives me blank page when i use h:panelGrid with binding attribut

    I am using jsf 1.2_08 (Mojarra 1.2_08-b06-FCS) + jstl-1.2.jar + Apache Tomcat/6.0.6 + jdk1.5.0_08 on linux suse server. when i load a jsp page with a h:panelGrid, i get a blank page
    my panelGrid is as follows
    <h:panelGrid id="financialProjections" binding="#{veusSituationMonitorDisplayBean.financialProjections}" border="0" cellpadding="0" cellspacing="0" columnClasses="nspLabel w200,ra bl,ra bl,ra bl,ra bl,ra bld,ra bl,ra bl" columns="8" width="100%"/>
    when i remove the binding attribute, rest of the page displays fine.
    Thanks in Advance
    my web.xml is
    <?xml version="1.0"?>
    <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_5.xsd">
    <context-param>
    <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
    <param-value>server</param-value>
    </context-param>
    <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet>
    <servlet-name>AJAXServlet</servlet-name>
    <servlet-class>net.em.servlets.AJAXServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet>
    <servlet-name>InitialLizeApplicationbeansServlet</servlet-name>
    <servlet-class>net.em.servlets.InitialLizeApplicationBeanServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>*.faces</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>AJAXServlet</servlet-name>
    <url-pattern>/abc.ajax</url-pattern>
    </servlet-mapping>
    <filter>
    <filter-name>ExtensionsFilter</filter-name>
    <filter-class>
    net.em.emrp.filters.EMExtensionsFilter
    </filter-class>
    <init-param>
    <param-name>uploadMaxFileSize</param-name>
    <param-value>10m</param-value>
    </init-param>
    <init-param>
    <param-name>uploadThresholdSize</param-name>
    <param-value>100k</param-value>
    </init-param>
    </filter>
    <filter>
    <filter-name>ResponseOverrideFilter</filter-name>
    <filter-class>org.displaytag.filter.ResponseOverrideFilter</filter-class>
    </filter>
    <session-config>
    <session-timeout>
    720 <!-- minutes -->
    </session-timeout>
    </session-config>
    <filter-mapping>
    <filter-name>ExtensionsFilter</filter-name>
    <servlet-name>Faces Servlet</servlet-name>
    </filter-mapping>
    <filter-mapping>
    <filter-name>ResponseOverrideFilter</filter-name>
    <url-pattern>*.do</url-pattern>
    </filter-mapping>
    <filter-mapping>
    <filter-name>ResponseOverrideFilter</filter-name>
    <url-pattern>*.jsp</url-pattern>
    </filter-mapping>
    <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>
    <error-page>
    <error-code>404</error-code>
    <location>/error404.html</location>
    </error-page>
    <error-page>
    <error-code>500</error-code>
    <location>/error500.html</location>
    </error-page>
    <taglib>
    <taglib-uri>http://ajaxtags.org/tags/ajax</taglib-uri>
    <taglib-location>/WEB-INF/ajaxtags.tld</taglib-location>
    </taglib>
    </web-app>

    BalusC wrote:
    I rather mean that you shouldn't instantiate the HtmlPanelGrid in the bean yourself, but just use the instance which is set through the setter during the restore_view phase.BalusC, why do you recommend this? The spec allows for the bean to create the component:
    *JSF 1.2, section 3.1.5* says:
    When a component instance is first created (typically by virtue of being referenced by a UIComponentELTag in a JSP page), the JSF implementation will retrieve the ValueExpression for the name binding, and call getValue() on it. If this call returns a non-null UIComponent value (because the JavaBean programmatically instantiated and configured a component already), that instance will be added to the component tree that is being created. If the call returns null, a new component instance will be created, added to the component tree, and setValue() will be called on the ValueBinding (which will cause the property on the JavaBean to be set to the newly created component instance).

  • H:panelGrid width or style attribute not rendering

    Hi
    I am currently experiencing a weird problem. I use a panel grid to align inputs in a form.
    when I try to set the width of the panel grid using the width or style attribute, the HTML equivalent is not rendered when displaying the web page.
    Here is what I try to do:
    <h:panelGrid columns="2" styleClass="patient-problem-form" style="width: 300px;">
    No style attribute is rendered on the table tag...
    Anyone knows what could case this issue?
    I am using
    facelets - 1.1.14
    seam - 2.0.1.CR1
    richfaces - 3.1.3.GA
    just updated glassfish 2-b58c with JSF 1.07 but did not make any difference
    Thanks.

    This will occur if you're using JSF impl newer than 1.2_05, but are using JSF api of 1.2_05 or older. Your classpath may be a mess with duplicated JAR's of different versions. Clean up your classpath. It may be good to know that Glassfish ships with javaee.jar which also contains JSF API. You need to upgrade it as well, you can get a Glassfish updater tool or read the instruactions at Mojarra homepage.

  • Excel Chart High-Low Lines Not Rendering when Chart Object Contains No NumCache and StringCache

    I have a number of Excel xlsx files which contain a Chart object configured with High-low Lines.  The High-Low Lines render without issue when the Number Cache & String Cache exist in the file.  A process updating the files removes the Number
    Cache and String Cache from the Chart Object.  After this process has updated the files Excel no longer observes the High-Low Line configuration.  I have verified that the files still contain the setting for the Chart to have High-Low Lines (<c:hiLowLines
    />).  Excel does not recognize that the setting is set (not rendered when viewed or preserved in the file settings after saving in Excel). Excel does not present any errors and everything else works fine.
    Reproduction of Issue:
    1. Create an Excel Document containing a Chart Object with High-Low Lines enabled.
    2. Manually edit the chart1.xml file (in the xlsx file), removing all the Number Cache and String Cache entries from the document (<c:numCache/>, <c:strCache/>).
    3. Open the Document in Excel and view the Chart.  It will not draw the High-Low Lines and if saved the file will no-longer contain the hiLowLines setting.
    The issue has been confirmed in Excel 2010 and Excel 2013.

    The issue has been tested on different computers, 11 in total.  The OS ranges from Windows 7 to Windows 8.1.
    I have not tried in other file formats.  Due to the requirements of the project I'm restricted to xlsx.
    The application interacting with the files is proprietary.
    I've simulated the issue by removing the Number Cache & String Cache manually from the Chart1.xml file.  This causes the issue to occur.  I will note that if i only remove one of the cache entries from the file the High-Low lines will be observed
    in Excel.  It seems to only happen if all of the cache entries are removed.  The file is never interpreted by Excel as corrupt under any of the modifications.
    The issue seems like Excel fails to evaluate the High-Low Lines property when the cache is completely removed.  I'm not sure what Excel is doing to negate the property under the condition of no cache.  After the files is opened with Excel and saved
    the High-Low Lines property no-longer exists in the file.

  • Down pmnts with taxes are not permitted when processing with jur.code (Message no. FS206)

    Hi Guys,
    I am facing very critical issue on down Payment request, to process with saperate Tax Value.
    We are supporting on Roll-out for Germany. We have implemented all standard SAP processes in the Project. We have also implemented many interfaces and one of the Interface is Sabrix Tax Engine (Tax Jurisdiction Code).
    As per the Germany legal requirement, the Tax has to get calculated whenever the funds gets transfered from one Bank Account to Another Bank Account.
    Coming to the issue: In the Customer Down Payment scenario, we are creating the Down payment request for Customer and as per Germany local requirement the Tax of 19% has to get calculated on Down payment.
    For an Example: We have the Sales Order Contract Value of 100,000.00 EUR and we are creating the Down Payment reqeust of 10% which is 10000 EUR + Tax 19% 1900 EUR.
    We are trying to post the Down Payment request in F-37 and we get the issue "Down pmnts with taxes are not permitted when processing with jur.code". This error is appearing due to Sabrix Tax engine (Tax Jurisdiction Code) has implemented in our System.
    We have gone through the SAP notes 97288 and 213567 and understood that the Standard SAP does not support us to post the Down Payment request with Separate Tax Value, when the External Tax Engine has implemented.
    I request you to suggest me, if you have already seen this issue in any of your Projects and fixed through the work-around solution. We have been working on work-around since 2 weeks, however no result.
    Below is the error message:
    Down pmnts with taxes are not permitted when processing with jur.code
    Message no. FS206

    HI Preeti,
    Thanks for your response. We have already seen the similar SAP notes and the SAP notes explains that the "Down pmnts with taxes cannot be done along with with jur.code". The only solution is to post the DP without Tax.
    However there might be some workaround which can be done in SAP, to process the Down Payment/Advance Payments with Tax Value along with Jurisdiction Code. I would like to know this.
    Did any one seen this case in your experiece, if yes, what is the work-around solution?.
    Need your help guys!,...
    Regards,
    Damodar Naidu

  • Getting error "Object variable or with block variable not set" when trying to open a FR report in studio

    Problem Description
    We are on FR 11.1.2.2.305 installed on AIX. a user is getting this error: "Object variable or with block variable not set" when trying to open a FR report from FR studio client installed on windows xp . Initialy, we thought it may be a FR client installion issue. We uninstalled and cleaned up registry and did a fresh installation of the client but the issue still persists. The FR server and the client are on the same version.
    The user is a LDAP user who is facing the issue. We have confirmed with other users and they dont have any issue accessing FR report from their own client but when they try to connect from the users machine who is having issues, the others users also see the above error. All the users are ldap users and all belong to same shared services groups so the provisiong is the same.
    Any input will be appreciated.
    Thanks

    OK, in this case of one single computer, please make sure that settings as per below KB document as in place and then validate the issue:
    Internet Explorer (IE7, IE8, IE9 and IE10) Recommended Settings for Oracle Hyperion Products (Doc ID 820892.1)
    The information in this document applies to the following Enterprise Performance Management products:
        Calculation Manager
        Data Relationship Management (DRM)
        Enterprise Performance Management Architect (EPMA)
        EPM Workspace
        Essbase Administration Services (EAS)
        Financial Data Quality Management (FDM)
        Financial Management (HFM)
        Financial Reporting
        Foundation Services
        Interactive Reporting
        Planning
        Shared Services
        Web Analysis
    Thanks!

  • RE: my input fields does not display when running the page

    my input fields does not display when running the page
    why is that so?

    Hi,
    Can you send the HTML code for us?
    Afonso

  • URL attributes not rendered on WF notification with embedded OAF Regions

    I am customizing a notification which has embedded OAF regions. I need to put a URL in the message, for which I have created an item attribute of type URL, hardcoded this to a random URL for now, and pulled this down as a message attribute as well. I then put the message attribute in the HTML body as &URL_NAME after the framework regions. This, however, did not work. What happens is that in the notification, the URL message attribute is not token subsitute and instead of the URL link, plain text is rendered as URL_NAME. Also, I get a warning message at the top of the notification:
    Attribute URL_NAME does not refer to a framework region
    If I put the URL as the first attribute in the message body, then the URL is rendered correctly, and all the framework region attributes are rendered as text. It almost seems as if the message body can either have framework regions or message attribute tokens.
    Any inputs will be appreciated.
    Thanks in advance.

    I having a similar issue with the Expenses workflow. I have done the following
    Steps:
    1. Create custom OAF shared region
    2. Create form function XX_APPROVERS where WEB HTML is OA.jsp?page=/xx/oracle/apps/per/ame/dynamicapprovals/webui/xxApproversRN
    3. Create WF attribute XX_APPROVERS_HIERARCHY with value as JSP:/OA_HTML/OA.jsp?OAFunc=XX_APPROVERS.
    4. Copied WF attribute to messsage and added &XX_APPROVERS_HIERARCHY to message body:
    &OIE_APEXP_BODY
    WF_NOTIFICATION(HISTORY)
    *&XX_APPROVAL_HIERARCHY*
    For NEW expense reports/workflows , the notification is fine and the custom region is displayed. However, for workflows already in process the following WARNING is displayed:
    Attribute XX_APPROVERS_HIERARCHY does not refer to a framework region.
    In the notification body the attibute name is also displayed.
    This does not prevent the person responding to the notifications. How can I prevent this warning and why does the change affect workflows already in process ?
    Thanks

  • Prepopulating a property with binding attribute

    Hi,
    I have a requirement to populate a set of fields when the user changes options in a select box. It works fine if there is no binding attribute defined for that field. If there is a binding attribute, the value set in the bean is not being shown in the page.
    For e.g
    <h:selectOneMenu id="cardType" value="#{checkoutBean.paymentInfo.cardType}" required="true" binding="#{checkoutBean.paymentInfo.cardTypeComponent}">
    </h:selectOneMenu>The value is set is not shown as selected if I have the binding attribute. If I remove binding attribute above it works fine.
    Also i tried doing getCardTypeComponent().setValue(cardType) and getCardTypeComponent().setSubmittedValue(cardType), but they are not of any help.
    Please let me know how this can be addressed.

    manick_r wrote:
    Thanks for your help BalusC. I am using MyFaces 1.1. Better post this issue at their own mailinglist. You see, you are here at a Sun JSF forum, not at a Apache MyFaces forum.
    Sorry, I won't be able to post piece of code as there are so many dependency between components.Are you insinuating that you haven't even excluded the other components from being suspicious? How did you conclude then that the fault is in the JSF specification?
    All I do is
    1. Have got a select box. Added a binding attribute to the select box.
    2. Trying to populate with a value fethced from DB on certain user action.(For u to test, please set the value from the constructor of the bean..).
    whatever value preset is not shown as selected in the select box.Back to point 2: you're presetting it in the constructor of the bean? Do you know that a session scoped bean is created only once per session? Put it in the request scope rather than session scope to get the constructor invoked on every request.

  • Error: object variable or with block variable not set when creating journal

    Hello
    When I try to create a new journal, I get an error "object variable or with block variable not set"
    This is happening with some computers but not all of them, the same user can create a journal in some computers.
    I tried uninstalling and reinstalling BPC office client but that did not work.
    Do you have any other ideas ?
    Thank you in advance.

    Hi,
       You have to check first  if you are able to access the reporting service frm that speific client machine typing:
    http://<reporting server name>/reports. If all is woking well , you have to check also the number of default sheets for an empty excel sheet (should be 3) - I ma not sure what version are you using.
        If still not work, please let me know when exactly the error appear, when you try to open the template (clicking on journal option) or after when you fill the report, save it, so on.
    Best regards,
    Mihaela

  • PDF conversion with PDF2ID; Hypertext not working when exported back to pdf.

    I have done a PDF conversion with PDF2ID, however Hypertext is not working when I exported it back to pdf. I am using the PDF2ID plug-in program to redo all the product booklets for our company as the hypertext did not work when downloaded to any smart phone. All that appeared were blank placeholders in each booklet index page.
    According to the PDF2ID people the program plug-in recovers all URLs static and dynamic and bookmarks and local links and suggested I check with Adobe ID5 for help, but Adobe says my $1,000 ID5 is no longer supported and that I should go to the forums.....so here I am.
    This is the first time I've even opened my ID5, so I'm a bit lost. Now I need to improve the quality of the PDFs, as we also need to convert all images to TIFF-CMYK in order to have the booklets printed & bound professionally. they tell me ID can do that.
    Any help is greatly appreciated.
    David

    Daveorne wrote:
    they tell me ID can do that.
    Ugh...in some companies, that is training.
    Don't take this the wrong way David, but of course ID can't do anything. PDF2ID conversions can be sketchy in the hands of the experienced. The same can be said of properly preparing matials for print. As Bob has already alluded, you're in an unfair position there. It's not uncommon for "management" types to just throw some sophisticated tools at a need and expect someone to make it work. In order to do what's being asked of you, you'll have to learn a fair bit about InDesign and production. It's too soon to ask about the output when you haven't learned to manage the input.

  • Png with transparent background not rendering on the mac

    I created a png with a transparent background for a header.  It renders fine on the ipad and iphone but not on the mac.  Is there a reason why? The header is on http://surfingthebluemarble.com/news.html
    Thanks in advance for your help!
    Regards,
    umbre gachoong

    If the header in question is the News on the Blue Marble header it seems to be rendering fine on the page and fine if I download the image to my system.
    The background is transparent.

  • Report does not refresh when link to page

    I have a report on page 1 with a column link to a report on page 2.
    The link sets items on page 2.
    If I use the 'Page in this Application' from the column link, the items on page 2 are set and the report is automatically refreshed.
    If I use the 'URL' in the column link, the items are set but the report on page 2 is not refreshed. I have more than 3 items to pass via the link so I have to use the URL. The url syntax is correct - if I click a Go button on page 2 the data refreshes fine.
    I have the same problem when clicking a tab that I have set to clear the page items - the tab clears the cache on the target page but the data in the report is not refreshed until I click the go button.
    The items on page 2 are select lists and text (always submit when enter pressed).
    How can I get the report on page 2 to auto refresh without the user having to click the Go button?
    Message was edited by: kgamble
    kgamble

    I can't post the pages (site reasons) but here's the debug.
    All the item values are set correctly to what I want but at point 041 - I get the custom "no rows returned error". If I click the refresh button (essentially a submit with go) the date appears.
    I am now using the link set up to go to 'Page in Application' with clear cache and 3 item variables set and reset pagination ticked and the request of Go (its the same result without the request and the pagination unticked).
    Any ideas?
    Thanks
    Kathryn
    0.00:
    0.00: S H O W: application="129" page="8" workspace="" request="Go" session="8392008407576157812"
    0.02: Language derived from: FLOW_PRIMARY_LANGUAGE, current browser language: en-gb
    0.02: alter session set nls_language="ENGLISH"
    0.02: alter session set nls_territory="UNITED KINGDOM"
    0.02: NLS: CSV charset=WE8MSWIN1252
    0.02: ...NLS: Set Decimal separator="."
    0.02: ...NLS: Set NLS Group separator=","
    0.02: ...NLS: Set date format="DD-MON-RR"
    0.02: ...Setting session time_zone to dbtimezone
    0.02: NLS: Language=en-gb
    0.02: Application 129, Authentication: CUSTOM2, Page Template: 3508132500492586
    0.03: ...Supplied session ID can be used
    0.03: ...Application session: 8392008407576157812, user=PENTESTER
    0.03: ...Determine if user "KGAMBLE" workspace "1728921676563485" can develop application "129" in workspace "1728921676563485"
    0.03: Session: Fetch session header information
    0.03: Saving g_arg_names=P8_IDR and g_arg_values=Y
    0.05: ...Session State: Save "P8_IDR" - saving same value: "Y"
    0.05: Saving g_arg_names=P8_STATUS and g_arg_values=Outstanding
    0.05: ...Session State: Save "P8_STATUS" - saving same value: "Outstanding"
    0.05: Saving g_arg_names=P8_SECTION and g_arg_values=P
    0.05: ...Session State: Save "P8_SECTION" - saving same value: "P"
    0.05: ...Metadata: Fetch page attributes for application 129, page 8
    0.05: Fetch session state from database
    0.05: Branch point: BEFORE_HEADER
    0.05: Fetch application meta data
    0.05: Authorization Check: "4732024931692101" User: "PENTESTER" Component: "PAGE"
    0.06: Clear cache: request=RP
    0.06: ...Resetting pagination for page
    0.06: Clear cache: request=8
    0.06: ...Clearing Cache for Page 8
    0.06: Nulling cache for application "129" page: 8
    0.08: Saving g_arg_names=P8_IDR and g_arg_values=Y
    0.08: ...Session State: Saved Item "P8_IDR" New Value="Y"
    0.08: Saving g_arg_names=P8_STATUS and g_arg_values=Outstanding
    0.08: ...Session State: Saved Item "P8_STATUS" New Value="Outstanding"
    0.08: Saving g_arg_names=P8_SECTION and g_arg_values=P
    0.08: ...Session State: Saved Item "P8_SECTION" New Value="P"
    0.08: Computation point: BEFORE_HEADER
    0.08: Processing point: BEFORE_HEADER
    0.09: Show page template header
    0.09: Computation point: AFTER_HEADER
    0.09: Processing point: AFTER_HEADER
    0.11: Authorization Check: "4732329087693375" User: "PENTESTER" Component: "parenttab"
    0.13: Authorization Check: "6131220670151932" User: "PENTESTER" Component: "parenttab"
    Home New Complaint
    Existing Data
    Logout |
    Complaints Complainants
    0.14: Region: Complainant Search
    Complainant Search
    0.14: Item: P8_SD_SEARCH TEXT_WITH_ENTER_SUBMIT
    SD Number
    0.16: Item: P8_SURNAME COMBOBOX Complainant -- All -- ARDVARK ARMSTRONG BAKER BLOGGS CHICKEN HARPER HILL JONES PERRY REAPER ROBINSON SHERMAN SMITH T WATSON
    0.16: Item: P8_NI_SEARCH TEXT_WITH_ENTER_SUBMIT
    NI Number
    0.16: Region: criteria_go
    0.16: Item: P8_GO BUTTON
    0.17: Item: P8_ROWS COMBOBOX Number of complaints per page 10 15 20 30 50 100 200 500 1000 5000
    0.17: Region: Complaint Search
    Complaint Search
    The list of complaints must match ALL of these specified search criteria:
    0.19: Item: P8_START PICK_DATE_DD_MON_YYYY
    Start
    0.19: Item: P8_END PICK_DATE_DD_MON_YYYY
    End
    0.20: Authorization Check: "4733005669696056" User: "PENTESTER" Component: ""
    0.20: Item: P8_TARGET COMBOBOX
    Target -- All -- Acknowledgement In Target Acknowledgement Target not Met Acknowledgement Pending Final Response In Target Final Response Target not Met Final Response Pending
    0.22: Item: P8_RECUR COMBOBOX
    Recurrent? -- All -- YES NO
    0.22: Item: P8_PAY_E COMBOBOX Ex Gratia/Interest
    Payments -- Select -- YES NO
    0.23: Item: P8_IDR COMBOBOX
    Type of Complaint -- All -- IDR Other Complaint
    0.23: Item: P8_STATUS COMBOBOX Status -- All -- Outstanding Completed 01-Jan-2007 05-Feb-2007 05-Mar-2007 12-Feb-2007 12-Mar-2007 15-Jan-2007 22-Jan-2007 26-Feb-2007 29-Jan-2007
    0.23: Computation point: BEFORE_BOX_BODY
    0.23: Processing point: BEFORE_BOX_BODY
    0.25: Region: Complaints List
    Complaints List
    0.25: show report
    0.28: Authorization Check: "4733005669696056" User: "PENTESTER" Component: "COLUMN"
    0.28: determine column headings
    0.28: activate sort
    0.38: parse query as: GENERAL1
    0.38: binding: ":P8_NI_SEARCH"="P8_NI_SEARCH" value=""
    0.39: binding: ":P8_SD_SEARCH"="P8_SD_SEARCH" value=""
    0.39: binding: ":P8_SURNAME"="P8_SURNAME" value="AA"
    0.39: binding: ":P8_START"="P8_START" value=""
    0.39: binding: ":P8_END"="P8_END" value=""
    0.39: binding: ":P8_SECTION"="P8_SECTION" value="P"
    0.39: binding: ":P8_STATUS"="P8_STATUS" value="Outstanding"
    0.39: binding: ":P8_TARGET"="P8_TARGET" value=""
    0.39: binding: ":P8_IDR"="P8_IDR" value="Y"
    0.39: binding: ":P8_RECUR"="P8_RECUR" value="AA"
    0.39: binding: ":P8_PAY_E"="P8_PAY_E" value="X"
    0.41: print column headings
    0.41: rows loop: 15 row(s)
    There are no complaints matching the criteria. Please double check all the criteria in the boxes above.
    0.42: Computation point: AFTER_BOX_BODY
    0.42: Processing point: AFTER_BOX_BODY

  • Acrobat not rendering characters after inserting pages

    Hi,
    I have two documents: Document A and Document B. I need to merge the two of them together, or, more specifically, Document B into Document A. Both are PDFs, obviously.
    Document B looks just fine when I open it on its own, but the minute I insert it into Document A, random characters stop rendering. In other words, if I open Document B right now the title page says,
    Sample Corporations, wholly owned subsidiaries of Parent Corporation; Year Ended December 31, 2007.
    If I insert Document B into Document A, or vice-versa, the title page will read,
    Sample Corporations, wholl owned subsidiaries of Parent Corporation; Year Ended December , .
    The "y" of "wholly," the day, and year have disappeared. There are numerous examples of this throughout the merged document, but only Document B is affected. Sending one of the pages to the printer has the same result -- what doesn't appear on the screen will not appear on the printed page.
    I'm using Acrobat 8 pro for Windows on an XP machine.
    Has anyone seen this? Any idea what's causing it, and/or how to fix it? Thanks!
    --Jennifer

    Hi Matt,
    As these are official company audit forms, I don't have access to the originals to be able to recreate them, unfortunately.
    How do I determine if the document has subset fonts? If that's the case, I might be able to go to our contact in finance & accounting and ask her to recreate them accordingly.

  • Table of Contents become not clickable when I convert Pages to PDF

    Hello,
    I created a document in Pages but the TOC becomes not clickable when I export it to PDF. I tried "Print as PDF", too but didn't work. Is there a fix or workaround? I am working on User Manual for a new system for my company and not many people will be able to use Pages document.
    Thanks!

    What version of Pages?
    Sounds like Pages 5.2.2. They are supposed to have fixed that, but seems you are still having the problem.
    If you are doing a manual you will be far better off using Pages '09.
    Pages 5.2.2 has so many features missing. and is buggy to boot.
    Peter

Maybe you are looking for