JHS detects changes in query bind param when there is none

I have a view object with a query bind parameter using #{param.id} in the JHS app definition. The page has a hidden field with the same name as param.id to handle reposts. The page layout is master-detail with the VO using the query bind param as the master.
The problem is that every time navigation to the detail occurs, the query on the master is rerun. In the output, I see "Value of bind param id has changed, old value=3110 new value=3110." The same thing is true with table-form layout.

Bump. This is a big issue for us. The view object is being requeried everytime naviagation between rows or to the detail occurs. What are the possible causes of this? The output we are seeing is below.
10:28:40 DEBUG (JhsNavigationHandlerImpl) -Executing checkRoles
07/03/13 10:28:40 [778] **** refreshControl() for BindingContainer :CadetGroupsObjPageDef
07/03/13 10:28:40 [779] DCUtil, returning:oracle.adf.model.binding.DCDataControl$MethodResultsMap, for methodResults
07/03/13 10:28:40 [780] Invoke method Action:999
07/03/13 10:28:40 [781] DCInvokeMethod:Invoking ABCMenuAppModuleDataControl.dataProvider.applyBindParams()
10:28:40 DEBUG (JhsApplicationModuleImpl) -Executing applyBindParams for CadetGroupsViewObj
10:28:40 DEBUG (JhsApplicationModuleImpl) -ViewObject CadetGroupsViewObj: value of bind param stfPid has changed: old value=3110 ,new value=3110
10:28:40 DEBUG (JhsApplicationModuleImpl) -ViewObject CadetGroupsViewObj: executing query, bind parameter values have changed
07/03/13 10:28:40 [782] Column count: 16

Similar Messages

  • Reset 'Administrator' when there is None?

    How can I reset 'Administrator' when there is None?
    Up to now I was only mildly disappointed at the process of rebuilding mom's aging iMac. Basically, she needs to throw it away, sparing any subsuquent user the hassles I've endured 24/7 for the past 8 days or so... So, now I have a great, and utterly simple question which every single advanced user should know how to resolve. "Jean" -the main and only named user, is not an Administrator, and evidently it wants some other password to enter the space that would enable us to go any further.
    I can firewire the drive, doctor it from my REAL Macintosh, and I can blank it out for a third time and start over, but eventually the motherboard is going to catch fire, that's a certainty. This brings into question the entire validity of rerstoring "Permissions"alltogether.

    This may help: 
    Restore admin user status.
    If your admin user loses admin status for whatever reason (and it has happened to a few people), and you do not have a second admin account, then try the following: 
    Boot into single-user mode.  At the prompt enter:
    mount -uw /
    nicl -raw /var/db/netinfo/local.nidb -merge /groups/admin users your-username-here 
    Press RETURN after each command.  To restart in OS X enter: 
    reboot
    I recommend you write down these commands in a monospaced font.  Be sure to carefully note where there are spaces in the command line.

  • PanelGrid binding error when there is tabs

    Hi everybody
    I have a problem with binding a panellayout to a backbean method when there are tabs on the page.
    This is my panellayout
    <h:panelGrid binding="#{TestFolder$TestTable.grid}" id="gridPanel1" />The method return HtmlPanelGrid which contains dynamic hiddenfields . Hiddenfields values taken from the database according to given parameter. It work nice and shows hidden field values as well, when i view page source.
    But when the selected tab change exception thrown saying
    javax.el.PropertyNotWritableException: The class 'com.epic.tdms.jsf.TestFolder.TestTable' does not have a writable property 'grid'.
    StandardWrapperValve[Faces Servlet]: PWC1406: Servlet.service() for servlet Faces Servlet threw exception
    javax.el.PropertyNotWritableException: The class 'com.epic.tdms.jsf.TestFolder.TestTable' does not have a writable property 'grid'.
    This is my full jsp code
    <?xml version="1.0" encoding="UTF-8"?>
    <jsp:root version="1.2" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:ui="http://www.sun.com/web/ui">
        <jsp:directive.page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"/>
        <f:view>
            <ui:page binding="#{TestFolder$TestTable.page1}" id="page1">
                <ui:html binding="#{TestFolder$TestTable.html1}" id="html1">
                    <f:loadBundle basename="com.epic.tdms.jsf.Bundle" var="messages1"/>
                    <ui:head binding="#{TestFolder$TestTable.head1}" id="head1"/>
                    <ui:body binding="#{TestFolder$TestTable.body1}" id="body1" style="-rave-layout: grid">
                        <ui:form binding="#{TestFolder$TestTable.form1}" id="form1" virtualFormsConfig="virtualForm1 | |">
                            <ui:tabSet id="tabSet1" selected="tab2" style="left: 240px; top: 288px; position: absolute">
                                <ui:tab id="tab1" text="Tab 1">
                                    <ui:panelLayout id="layoutPanel1" style="height: 223px; position: relative; width: 100%; -rave-layout: grid">
                                    </ui:panelLayout>
                                </ui:tab>
                                <ui:tab id="tab2" text="Tab 2">
                                    <ui:panelLayout id="layoutPanel2" style="height: 223px; position: relative; width: 100%; -rave-layout: grid">
                                    </ui:panelLayout>
                                </ui:tab>
                            </ui:tabSet>
                        </ui:form>
                    </ui:body>
                    <h:panelGrid binding="#{TestFolder$TestTable.grid}" id="gridPanel1" style="position: absolute; left: 288px; top: 96px" />
                </ui:html>
            </ui:page>
        </f:view>
    </jsp:root>This is the method which return grid
    public HtmlPanelGrid getGrid() throws Exception
            HtmlPanelGrid grid = new HtmlPanelGrid();
           List<UIComponent> children = grid.getChildren();
            HtmlDataTable table = new HtmlDataTable();
            table.setId("table_userRoles");
            table.setValueExpression("value",createValueExpression("#{TestFolder$TestTable.childHiddenFields}", List.class));
            table.setVar("hiddenFields");
            HiddenField hidden = new HiddenField();
            hidden.setValueExpression("value", createValueExpression("#{hiddenFields.value}", String.class));
            children.add(table);
            HtmlColumn nameColumn = new HtmlColumn();
            nameColumn.getChildren().add(hidden);
            table.getChildren().add(nameColumn);
            grid.getChildren().add(table);
            return grid;
        }Please help me to solve this out.
    Thanks in advance

    BalusC Thank you very much for answering, and your answer is very helpful. It worked for my another project. Actually there I have forget to set the setter.
    And I have solved the problem, I put in prerender method and it works now.

  • Query runs faster when there is no statistics

    Hi Gurus
    I have a Oracle 10.2.0.1 instance and I'm seeing the following weird behavior, I appreciate any pointers or references to resolve this problem.
    Thank you very much.
    1. Run the below mentioned query for 10 times continuously from sqlplus. Elapsed time is around 115 seconds (around 2
    min) for each execution. Elapsed time is constant, no increase or decrease. Tables involved in the query have statistics with 100% sampling.
    2. delete the statistics on 2 tables involved in query. Flush the shared_pool
    (alter system flush shared_pool).
    3. Run the query for 10 times. Elapsed time is less than 2 seconds for each execution. Elapsed time is constant, no
    increase or decrease.
    The Query: (it is a generated query, no option for modifying it).
    select count(distinct itm1.itm_id) FROM ita ita1, ita ita2, itm itm1, itm itm2, itm itm3
    where itm1.itm_container_id = 2812
    and itm1.itm_version_id &lt;= 999999999
    and itm1.itm_next_version_id &gt;= 999999999
    and itm2.itm_primary_key = 'RAYBESTOS'
    and itm3.itm_primary_key = '1'
    and ita1.ita_node_id = 3111
    and itm2.itm_container_id = 2020
    and ita1.ita_item_id = itm1.itm_id
    and ita1.ita_version_id &lt;= 999999999
    and ita1.ita_next_version_id &gt;= 999999999
    and itm2.itm_id = ita1.ita_value_numeric
    and itm2.itm_version_id &lt;= 999999999
    and itm2.itm_next_version_id &gt;= 999999999
    and ita2.ita_node_id = 3118
    and itm3.itm_container_id = 2025
    and ita2.ita_item_id = itm1.itm_id
    and ita2.ita_version_id &lt;= 999999999
    and ita2.ita_next_version_id &gt;= 999999999
    and itm3.itm_id = ita2.ita_value_numeric
    and itm3.itm_version_id &lt;= 999999999
    and itm3.itm_next_version_id &gt;= 999999999;
    Query uses dynamic sampling when there is no statistics.
    tkprof report shows there is a small difference in execution plan between 2 cases. When there is no statistics, there is table access by index rowid. It may be the reason for faster response time.
    Rows Row Source Operation
    1 SORT GROUP BY (cr=47235 pr=0 pw=0 time=919461 us)
    758 {color:#ff0000}TABLE ACCESS BY INDEX ROWID TCTG_ITA_ITEM_ATTRIBUTES (cr=47235 pr=0 pw=0 time=600473 us){color}
    14163 NESTED LOOPS (cr=40652 pr=0 pw=0 time=299694 us)
    7081 NESTED LOOPS (cr=25708 pr=0 pw=0 time=538463 us)
    12771 NESTED LOOPS (cr=90 pr=0 pw=0 time=255699 us)
    1 MERGE JOIN CARTESIAN (cr=6 pr=0 pw=0 time=271 us)
    1 INDEX RANGE SCAN ICTG_ITM_1 (cr=3 pr=0 pw=0 time=74 us)(object id 105409)
    1 BUFFER SORT (cr=3 pr=0 pw=0 time=112 us)
    1 INDEX RANGE SCAN ICTG_ITM_1 (cr=3 pr=0 pw=0 time=43 us)(object id 105409)
    12771 INDEX RANGE SCAN ICTG_ITA_1 (cr=84 pr=0 pw=0 time=102210 us)(object id 105399)
    7081 INDEX RANGE SCAN ICTG_ITM_0 (cr=25618 pr=0 pw=0 time=363715 us)(object id 105408)
    7081 INDEX RANGE SCAN ICTG_ITA_0 (cr=14944 pr=0 pw=0 time=239803 us)(object id 105398)

    Hi Jonathan,
    Thanks again for your response. Yes, you are correct. Most of the rows have all 9s, and a small percentage have something else - and there are only a small number of distinct values.
    Here is the histogram info when there is statistics (some old data have been trimmed for this test).
    TABLE_NAME                            COLUMN_NAME                    NUM_DISTINCT NUM_BUCKETS   HISTOGRAM
    TCTG_ITA_ITEM_ATTRIBUTES              ITA_COMPANY_ID                             2             2FREQUENCY
    TCTG_ITA_ITEM_ATTRIBUTES              ITA_CATALOG_ID                            62            62FREQUENCY
    TCTG_ITA_ITEM_ATTRIBUTES              ITA_ITEM_ID                           720867             1NONE
    TCTG_ITA_ITEM_ATTRIBUTES              ITA_NODE_ID                              118           118FREQUENCY
    TCTG_ITA_ITEM_ATTRIBUTES              ITA_VALUE_NUMERIC                     587504           254HEIGHT BALANCED
    TCTG_ITA_ITEM_ATTRIBUTES              ITA_VALUE_STRING                     1060930           254HEIGHT BALANCED
    TCTG_ITA_ITEM_ATTRIBUTES              ITA_VERSION_ID                            48            48FREQUENCY
    TCTG_ITA_ITEM_ATTRIBUTES              ITA_NEXT_VERSION_ID                        1             1FREQUENCY
    TCTG_ITA_ITEM_ATTRIBUTES              ITA_OCCURRENCE_ID                      16250           254HEIGHT BALANCED
    TCTG_ITA_ITEM_ATTRIBUTES              ITA_VALUE_STRING_IGNORECASE          1498257           254HEIGHT BALANCED
    TCTG_ITM_ITEM                         ITM_COMPANY_ID                             2             2FREQUENCY
    TCTG_ITM_ITEM                         ITM_ID                                720867             1NONE
    TCTG_ITM_ITEM                         ITM_CONTAINER_ID                          62            62FREQUENCY
    TCTG_ITM_ITEM                         ITM_PRIMARY_KEY                       531960             1NONE
    TCTG_ITM_ITEM                         ITM_VERSION_ID                            48            48FREQUENCY
    TCTG_ITM_ITEM                         ITM_NEXT_VERSION_ID                        1             1FREQUENCY
    TCTG_ITM_ITEM                         ITM_STATUS                                 3             1NONE
    TCTG_ITM_ITEM                         ITM_COLLAB_INFO                            7             1NONE
    TCTG_ITM_ITEM                         ITM_LAST_MODIFIED                     717098             1NONEdisplay_cursor without statistics
    SQL> @disp-cursor
                           756
    Elapsed: 00:00:03.81
    SQL_ID  d9q6j48ns19zv, child number 0
    select /*+ gather_plan_statistics */ count(distinct itm1.itm_id)   FROM ita ita1, ita ita2, itm itm1, itm itm2, itm itm3 where
    itm1.itm_container_id = 2812      and itm1.itm_version_id <= 999999999      and itm1.itm_next_version_id >= 999999999      and
    itm2.itm_primary_key = 'RAYBESTOS'      and itm3.itm_primary_key = '1'      and ita1.ita_node_id = 3111      and
    itm2.itm_container_id = 2020      and ita1.ita_item_id = itm1.itm_id      and ita1.ita_version_id <= 999999999      and
    ita1.ita_next_version_id >= 999999999      and itm2.itm_id = ita1.ita_value_numeric      and itm2.itm_version_id <= 999999999
    and itm2.itm_next_version_id >= 999999999      and ita2.ita_node_id = 3118      and itm3.itm_container_id = 2025      and
    ita2.ita_item_id = itm1.itm_id      and ita2.ita_version_id <= 999999999      and ita2.ita_next_version_id >= 999999999      and
    itm3.itm_id = ita2.ita_value_numeric      and itm3.itm_version_id <= 999999999      and itm3.itm_next_version_id >= 999999999
    Plan hash value: 2184662757
    | Id  | Operation                    | Name                     | Starts | E-Rows | A-Rows |   A-Time   | Buffers |  OMem |  1Mem | Used-Mem |
    |   1 |  SORT GROUP BY               |                          |      1 |      1 |      1 |00:00:03.61 |     178K| 73728 | 73728 |      |
    |*  2 |   TABLE ACCESS BY INDEX ROWID| TCTG_ITA_ITEM_ATTRIBUTES |      1 |      1 |    756 |00:00:00.96 |     178K|       |  |           |
    |   3 |    NESTED LOOPS              |                          |      1 |      1 |  69879 |00:00:01.27 |     145K|       |  |           |
    |   4 |     NESTED LOOPS             |                          |      1 |      1 |  34939 |00:00:02.66 |   71815 |       |  |           |
    |   5 |      NESTED LOOPS            |                          |      1 |      1 |  35695 |00:00:00.71 |     229 |       |  |           |
    |   6 |       MERGE JOIN CARTESIAN   |                          |      1 |      1 |      1 |00:00:00.01 |       6 |       |  |           |
    |*  7 |        INDEX RANGE SCAN      | ICTG_ITM_1               |      1 |      1 |      1 |00:00:00.01 |       3 |       |  |           |
    |   8 |        BUFFER SORT           |                          |      1 |      1 |      1 |00:00:00.01 |       3 | 73728 | 73728 |      |
    |*  9 |         INDEX RANGE SCAN     | ICTG_ITM_1               |      1 |      1 |      1 |00:00:00.01 |       3 |       |  |           |
    |* 10 |       INDEX RANGE SCAN       | ICTG_ITA_1               |      1 |      1 |  35695 |00:00:00.29 |     223 |       |  |           |
    |* 11 |      INDEX RANGE SCAN        | ICTG_ITM_0               |  35695 |      1 |  34939 |00:00:01.14 |   71586 |       |  |           |
    |* 12 |     INDEX RANGE SCAN         | ICTG_ITA_0               |  34939 |      1 |  34939 |00:00:01.20 |   73590 |       |  |           |
    Predicate Information (identified by operation id):
       2 - filter("ITM3"."ITM_ID"="ITA2"."ITA_VALUE_NUMERIC")
       7 - access("ITM2"."ITM_PRIMARY_KEY"='RAYBESTOS' AND "ITM2"."ITM_CONTAINER_ID"=2020 AND "ITM2"."ITM_NEXT_VERSION_ID">=999999999 AND
                  "ITM2"."ITM_VERSION_ID"<=999999999)
           filter("ITM2"."ITM_VERSION_ID"<=999999999)
       9 - access("ITM3"."ITM_PRIMARY_KEY"='1' AND "ITM3"."ITM_CONTAINER_ID"=2025 AND "ITM3"."ITM_NEXT_VERSION_ID">=999999999 AND
                  "ITM3"."ITM_VERSION_ID"<=999999999)
           filter("ITM3"."ITM_VERSION_ID"<=999999999)
      10 - access("ITA1"."ITA_NODE_ID"=3111 AND "ITM2"."ITM_ID"="ITA1"."ITA_VALUE_NUMERIC" AND "ITA1"."ITA_NEXT_VERSION_ID">=999999999
                  AND "ITA1"."ITA_VERSION_ID"<=999999999)
           filter("ITA1"."ITA_VERSION_ID"<=999999999)
      11 - access("ITA1"."ITA_ITEM_ID"="ITM1"."ITM_ID" AND "ITM1"."ITM_NEXT_VERSION_ID">=999999999 AND "ITM1"."ITM_CONTAINER_ID"=2812 AND
                  "ITM1"."ITM_VERSION_ID"<=999999999)
           filter(("ITM1"."ITM_CONTAINER_ID"=2812 AND "ITM1"."ITM_VERSION_ID"<=999999999))
      12 - access("ITA2"."ITA_ITEM_ID"="ITM1"."ITM_ID" AND "ITA2"."ITA_NEXT_VERSION_ID">=999999999 AND "ITA2"."ITA_NODE_ID"=3118 AND
                  "ITA2"."ITA_VERSION_ID"<=999999999)
           filter(("ITA2"."ITA_NODE_ID"=3118 AND "ITA2"."ITA_VERSION_ID"<=999999999))
    Note
       - dynamic sampling used for this statement
    54 rows selected.
    Elapsed: 00:00:00.04Display_cursor with statistics
    SQL> @disp-cursor
                           756
    Elapsed: 00:01:57.53
    SQL_ID  d9q6j48ns19zv, child number 0
    select /*+ gather_plan_statistics */ count(distinct itm1.itm_id)   FROM ita ita1, ita ita2, itm itm1, itm itm2, itm
    itm3 where itm1.itm_container_id = 2812      and itm1.itm_version_id <= 999999999      and itm1.itm_next_version_id
    = 999999999 and itm2.itm_primary_key = 'RAYBESTOS' and itm3.itm_primary_key = '1' andita1.ita_node_id = 3111      and itm2.itm_container_id = 2020      and ita1.ita_item_id = itm1.itm_id      and
    ita1.ita_version_id <= 999999999      and ita1.ita_next_version_id >= 999999999      and itm2.itm_id =
    ita1.ita_value_numeric      and itm2.itm_version_id <= 999999999      and itm2.itm_next_version_id >= 999999999
    and ita2.ita_node_id = 3118      and itm3.itm_container_id = 2025      and ita2.ita_item_id = itm1.itm_id      and
    ita2.ita_version_id <= 999999999      and ita2.ita_next_version_id >= 999999999      and itm3.itm_id =
    ita2.ita_value_numeric      and itm3.itm_version_id <= 999999999      and itm3.itm_next_version_id >= 999999999
    Plan hash value: 332134648
    | Id  | Operation                | Name       | Starts | E-Rows | A-Rows |   A-Time   | Buffers |  OMem |  1Mem | Used-Mem |
    |   1 |  SORT GROUP BY           |            |      1 |      1 |      1 |00:01:54.75 |    3041K| 73728 | 73728 |          |
    |   2 |   NESTED LOOPS           |            |      1 |      1 |    756 |00:00:30.95 |    3041K|       |       |          |
    |   3 |    NESTED LOOPS          |            |      1 |      1 |  34939 |00:00:02.73 |   71818 |       |       |          |
    |   4 |     NESTED LOOPS         |            |      1 |      1 |  35695 |00:00:00.75 |     230 |       |       |          |
    |   5 |      MERGE JOIN CARTESIAN|            |      1 |      1 |      1 |00:00:00.01 |       6 |       |       |          |
    |*  6 |       INDEX RANGE SCAN   | ICTG_ITM_1 |      1 |      1 |      1 |00:00:00.01 |       3 |       |       |          |
    |   7 |       BUFFER SORT        |            |      1 |      1 |      1 |00:00:00.01 |       3 | 73728 | 73728 |          |
    |*  8 |        INDEX RANGE SCAN  | ICTG_ITM_1 |      1 |      1 |      1 |00:00:00.01 |       3 |       |       |          |
    |*  9 |      INDEX RANGE SCAN    | ICTG_ITA_1 |      1 |      1 |  35695 |00:00:00.32 |     224 |       |       |          |
    |* 10 |     INDEX RANGE SCAN     | ICTG_ITM_0 |  35695 |      1 |  34939 |00:00:01.19 |   71588 |       |       |          |
    |* 11 |    INDEX RANGE SCAN      | ICTG_ITA_1 |  34939 |      1 |    756 |00:01:52.76 |    2969K|       |       |          |
    Predicate Information (identified by operation id):
       6 - access("ITM3"."ITM_PRIMARY_KEY"='1' AND "ITM3"."ITM_CONTAINER_ID"=2025 AND
                  "ITM3"."ITM_NEXT_VERSION_ID">=999999999 AND "ITM3"."ITM_VERSION_ID"<=999999999)
           filter("ITM3"."ITM_VERSION_ID"<=999999999)
       8 - access("ITM2"."ITM_PRIMARY_KEY"='RAYBESTOS' AND "ITM2"."ITM_CONTAINER_ID"=2020 AND
                  "ITM2"."ITM_NEXT_VERSION_ID">=999999999 AND "ITM2"."ITM_VERSION_ID"<=999999999)
           filter("ITM2"."ITM_VERSION_ID"<=999999999)
       9 - access("ITA1"."ITA_NODE_ID"=3111 AND "ITM2"."ITM_ID"="ITA1"."ITA_VALUE_NUMERIC" AND
                  "ITA1"."ITA_NEXT_VERSION_ID">=999999999 AND "ITA1"."ITA_VERSION_ID"<=999999999)
           filter(("ITA1"."ITA_VALUE_NUMERIC" IS NOT NULL AND "ITA1"."ITA_VERSION_ID"<=999999999))
      10 - access("ITA1"."ITA_ITEM_ID"="ITM1"."ITM_ID" AND "ITM1"."ITM_NEXT_VERSION_ID">=999999999 AND
                  "ITM1"."ITM_CONTAINER_ID"=2812 AND "ITM1"."ITM_VERSION_ID"<=999999999)
           filter(("ITM1"."ITM_CONTAINER_ID"=2812 AND "ITM1"."ITM_VERSION_ID"<=999999999))
      11 - access("ITA2"."ITA_NODE_ID"=3118 AND "ITM3"."ITM_ID"="ITA2"."ITA_VALUE_NUMERIC" AND
                  "ITA2"."ITA_NEXT_VERSION_ID">=999999999 AND "ITA2"."ITA_ITEM_ID"="ITM1"."ITM_ID" AND
                  "ITA2"."ITA_VERSION_ID"<=999999999)
           filter(("ITA2"."ITA_VALUE_NUMERIC" IS NOT NULL AND "ITA2"."ITA_VERSION_ID"<=999999999 AND
                  "ITA2"."ITA_ITEM_ID"="ITM1"."ITM_ID"))
    51 rows selected.
    Elapsed: 00:00:00.28

  • Message indicator shows messages when there are none

    How to correct the envelope indicator at the top of the screen that shows the number of messages to be 3 when the message & email inbox is empty? I have tried shutting the unit down but it still shows 3 messages and there is none. Help, thanks.
    Solved!
    Go to Solution.

    Hello,
    Please open your message icon and press the menu button(left of the trackball) and click saved messages. Are there any messages in there?

  • Headphones detected when there is none? Please help!

    Hello!
    I am in search of major help. I have owned my iPod Touch for a while now, never had a problem with it until recently.
    I sometimes unplug the iPod's headphones because I wish to show something to someone.... however, although I have unplugged the headphones it still shows them as plugged in, and the speakers will not work.
    This is normally not such a big problem because I normally have my headphones plugged in. Nevertheless, it is very annoying.
    Please, help me! Your help is very appreciated.
    -Thanks!

    If you are brave you could try squirting some electrical contact cleaner in the jack and then quickly insert/remove/insert/remove the headphone plug.

  • OS X 10.5 Mail shows unread messages when there are none and get ghost messages

    I have been searching for an ansswer to this delimma, but have found similar issues but none exactly the same.  I run 10.6 server and have mixed network users of 10.6 and 10.5 clients.  One of the users on 10.5 's mail app keeps showing unread messages, but there are no unread messages.  When they click on another mail box in the mail client or another folder the number changes, but ther always seems to be one or two.  The user also gets at least 2 blank e-mails in the mail app.  I have check the users web mail account and there are no blank e-mail messages or spam.  I tried to rebuild the mail box, and have also tried trashing the indexs, and they still get the same message.  Short of creating a new user does anyone have any suggestions?  None of my other users seem to have the same problem, although they do not use mail as much as this one user does..... 

    I get this issue every single day, and it is specifically reproducible. Here is the scenario:
    1) I have two mail accounts configured on my iPhone, one is my work account and is disabled on the phone, the other is my gmail account which is always enabled on my phone
    2) Each morning, when I head into work I enabled my work email account so I can start reading my work emails for the day. This downloads all the new messages from the server and displays them as unread.
    3) I read some of them, but not all of them.
    4) Once I get to my office, I read all of the rest of my new work emails from the Mail app on my MacBook Pro.
    EXPECTED: The messages that are read on the mail app are updated as read messages
    OBSERVED: On my iphone, not all of the messages have their statuses changed to read. Some of them always remain as unread messages
    5) Next, I delete some of the messages read from my computer from the email server altogether.
    EXPECTED: These messages would also appear deleted when using the mail app on my iPhone
    OBSERVED: Not only are the messages not deleted, but they are still listed as unread
    The only way to resolve this each day is for me to select each message and view it for a second to have the unread message indicator removed. I have to turn off the mail account and turn it back on for it to correctly sync with the mail server and correct the mistakes.
    There is clearly a problem within the iPhone mail app with retrieving updates from the mail servers.
    I have an iPhone 4 running iOS 4.2.1 that I purchased in November. Before that, I had an iPhone 3G S and never experienced the issue on my 3G S. My MacBook Pro was used with both devices.

  • Having problem with 7.1.2 upgrade, mail icon indicates 70 pending messages when there are none

    Recently upgraded to iOS 7.1.2, the mail icon indicate there are 70 pending messages when in fact there are none

    Recently upgraded to iOS 7.1.2, the mail icon indicate there are 70 pending messages when in fact there are none

  • Home sync thinks there are duplicate names when there are none

    Home sync keeps complaining about some directories having the same name except for some capitalized letters which is complete bogus.
    Example: I have a directory called "W3C Css geniales layout" and there is no other directory or file with the same (stupid ) name anywhere on my computer. The other example is "Moviessamlonlab". in this case there is another directory called "Movies-Tony". I suspect that homesync has problems with Spaces and hyphens in directory names. Renaming the directories helped. I still think this is a bug since any directory name that I can create (without the os complaining) is valid and should be considered valid by any other program! I have an intel core 2 duo macBook with OS X 10.4.10

    Hello there,
    I'm having the same problem here,
    tried deleting ~/Library/Mirrors/*,
    tried changing/resetting to "me":wheel the user/group of the files on the client AND on the server,
    tried changing the permissions to 775,
    tried a "touch" on every file
    tried a chflags -R nouchg
    all of these amounts to the more files are touched on the server, the more conflicts occur.
    The weird thing is that files ARE synchronized both ways correctly,
    I just keep getting a Synchronization conflict on EVERY file (59014 files) at every background sync...
    Any help here ?

  • Packaging shows 4 process color when there is none

    My packaging shows 4 process inks even though there is only a black and white image. My pdf image was first saved as a grayscale. When that didn't work, I converted it to a Gray Gamma 2.2 Grayscale in Acrobat and "saved as" my image. It still shows up as a 4 process color. Interestingly, when I check separations, it shows up as only black.
    To check my InDesign, I completely removed everything from the document and left a blank page. The packaging still shows 4 color process.
    Verified in Ink Manager that Convert Spot to Process is not checked.
    Is there anything else I need to check?

    No, but undo the Gray Gamma 2.2. I am not familair with the result, and may be appended, but it is not necessary.
    There will always be the CMY channels listed in Adobe Products; you correctly verified only black is in use via the Seperations Preview.
    InDesign package always lists cmyk inks.

  • Email Widget Shows Unread Mail When There is None

    Title says it all. My email widget shows I have 'X' number of unread emails when in fact I have zero unread emails. Suggestions?

    The "inbox" on the phone is blank, and refreshing the email accounts doesn't make any messages appear. I go back to my home screen and ... the widget says I have 'X' unread emails. Open the email widget again, inbox is blank, refresh - nothing new, return to home screen and the widget still says I have 'X' unread emails.

  • Mail Icon indicates 1 message when there is none.

    My mail icon shows that there is 1 message in my mail box when in fact it's empty. Is there any way of correcting this problem?

    Maybe there is a message in a other folder, e.g. the spam folder. Tap on the "Inbox" top left on the screen. A window appears, in this window - again in the top left corner is a button with your account name. Tap on it and you will see the available folder. One more tap shows you all your mail accounts.
    enjoy your magic machine

  • Why is it possible to scroll horizontal when there is none?

    Hi there people,
    I hope some of you can help me out with this little problem. Put lots of effort in my new portfolio but there is one irritating thing I can't get on with. The option to scroll horizontale is constantly enabled while there is nothing on the side; just blank! Maybe this is because I put images in the header and footer in the master. I want these images fixed in the middle and to be repeated in the browser. How can I do this? Is this a bug or just inexperience?
    Here is the link of the trial:
    http://nkrouwel.businesscatalyst.com
    Please help me out here!
    Thanx

    Hi,
    It sounds like what you're looking for is to have the images as background fills for a rectangle. If you set the rectangle to have no background fill or stroke then set these images as the background for them you can tile (horizontally, vertically, or both) the image and you can set the rectangle to be 100% width. That way the rectangle will always be the same width as the browser and the image will be repeated, or set in the middle of the page and you don't need to tile the image.
    Anytime you have an object outside of the browser area in Muse the page will scroll horizontally, so the easiest way to achieve any effect that you want to be 100% width will be to use rectangles, text frames, and any other object that supports 100% width.
    Hope that helps!
    Dana

  • My officejet 6500 has an error msg of jam/misfee​d when there is none.

    My officejet 6500 had some water fall onto it. Luckily some paper was piled on top and blocked most of it. But some of the water seeped in where the copier rollers are. I let it dry completely and nothing was affected, re: printing. About a week later, I put something heavy'ish on top, which might or might not be the problem too, just thought I'd mention it. After putting the heavy item on top, the printer came up with the error message that there was a jam or misfeed in the scan path. Trust me, there's no misfeed, and there is no jam. I suspect something happened in there to misalign it somehow, either due to the moisture or the weight (it was a heavy picture frame) on it for about an hour.
    I have tried what I can to make this go away. I miss being able to use the feeder to either scan multiple pages or to copy them. I can't use the copier at all, but I can still scan a page at a time, but it takes forever, and I have to quickly hit cancel, then scan before the error kicks back. It's tedious.
    I don't want to lose the printer, but then again, it's not worth enough to hire someone to fix. Any ideas on how to fix or salvage?

    A hard reset can resolve this issue. But I suggest that you do it under the supervision of an HP Tech over the phone. This way, if the issue is still unresolved, they can replace the printer.
    Make it easier for other people to find solutions, by marking my answer with \'Accept as Solution\' if it solves your problem.
    Click on the BLUE KUDOS button on the left to say "Thanks"
    I am an ex-HP Employee.

  • Why does iTunes report 1GB of photos when there are none?

    My iPhone was running out of space so I imported all photos to Aperture and deleted them from the phone after the import.
    If I now go to the photos app I see that it is empty, but iTunes reports 1010 pictures occupying 984,9 MB of space on the phone.
    I've tried factory resetting the phone and restoring a backup, but that didn't help.

    Have you rebooted your iPad? Hold down the sleep and home keys until you see the silver apple and it reboots. See if that helps.
    I know with my hotmail it downloaded a bunch of old mail and I had to go through and 'read' it all to get it to be unread.

Maybe you are looking for