Item disappeared from cache...

I inserted 4 items in my cache. I have a JTable that displays them as they show up. I saw all four come in. That app's console logging confirmed it:
2009-10-08 14:51:50.299/78.263 Oracle Coherence GE 3.5/459 <Info> (thread=AWT-EventQueue-0, member=4): insert MSFT      47V31209        1       SIM     2009281 0
2009-10-08 14:54:52.292/260.256 Oracle Coherence GE 3.5/459 <Info> (thread=AWT-EventQueue-0, member=4): insert MSFT     47V31209        3       SIM     2009281 0
2009-10-08 14:55:11.208/279.172 Oracle Coherence GE 3.5/459 <Info> (thread=AWT-EventQueue-0, member=4): insert MSFT     47V31209        5       SIM     2009281 0
2009-10-08 14:55:36.024/303.988 Oracle Coherence GE 3.5/459 <Info> (thread=AWT-EventQueue-0, member=4): insert MSFT     47V31209        7       SIM     2009281 0I tried to list the items using coherence's provided console app:
Map (orders): cache executions
<distributed-scheme>
  <!--
  To use POF serialization for this partitioned service,
  uncomment the following section
  <serializer>
  <class-
  name>com.tangosol.io.pof.ConfigurablePofContext</class-
  name>
  </serializer>
  -->
  <scheme-name>example-distributed</scheme-name>
  <service-name>DistributedCache</service-name>
  <backing-map-scheme>
    <local-scheme>
      <scheme-ref>example-binary-backing-map</scheme-ref>
    </local-scheme>
  </backing-map-scheme>
  <autostart>true</autostart>
</distributed-scheme>
Map (executions): list
MSFT    47V31209        5       SIM     2009281 0 = BUY 1 MSFT @ 1.0 Thu Oct 08 14:55:11 CDT 2009
MSFT    47V31209        7       SIM     2009281 0 = BUY 1 MSFT @ 1.0 Thu Oct 08 14:55:35 CDT 2009
MSFT    47V31209        3       SIM     2009281 0 = BUY 1 MSFT @ 1.0 Thu Oct 08 14:54:52 CDT 2009
Iterator returned 3 items
Map (executions): size
4It says size is 4 but "Iterator returned 3 items". what??
I refreshed my swing app's CQC and it confirmed that there are only 3 now:
2009-10-08 15:01:25.147/653.111 Oracle Coherence GE 3.5/459 <Info> (thread=AWT-EventQueue-0, member=4): insert MSFT     47V31209        5       SIM     2009281 0
2009-10-08 15:01:25.147/653.111 Oracle Coherence GE 3.5/459 <Info> (thread=AWT-EventQueue-0, member=4): insert MSFT     47V31209        3       SIM     2009281 0
2009-10-08 15:01:25.147/653.111 Oracle Coherence GE 3.5/459 <Info> (thread=AWT-EventQueue-0, member=4): insert MSFT     47V31209        7       SIM     2009281 0Apparently an item disappeared from the cache somehow, right? My app with the CQC updating the JTable didn't get any entryDeleted events.
Thanks,
Andrew

All I do to reproduce it is start coherence, register a trigger with that offending line of code in it and add an Execution to the Executions cache. The Execution shows up, but is immediately gone as soon as that line of code in the trigger runs. No entryDeleted event comes over the CQC. I haven't tried doing a get on the missing object's key yet.
This starts the application:
setlocal
set JAVA_HOME=c:\jdk
set memory=256m
set java_opts=%java_opts% -Xms%memory%
set java_opts=%java_opts% -Xmx%memory%
set java_opts=%java_opts% -server
set java_opts=%java_opts% -Dtangosol.coherence.distributed.localstorage=false
set java_opts=%java_opts% -Dtangosol.coherence.member=%username%
set PATH=%JAVA_HOME%\bin
set CP=.
set CP=%CP%;%JAVA_HOME%\lib
set CP=%CP%;S:\java\javaclasses\log4j-1.2.8.jar
set CP=%CP%;S:\java\oms2\lib\oms2.jar
set CP=%CP%;S:\java\mju\classes
set CP=%CP%;s:\java\javaclasses\mysql-connector-java.jar
set CP=%CP%;s:\java\coup\lib\coup.jar
set CP=%CP%;s:\java\execution_viewer\lib\execution_viewer.jar
set CP=%CP%;S:\java\stats\classes\
set CP=%CP%;S:\java\javaclasses\quoteclient.jar
set CP=%CP%;S:\java\javaclasses\commons-collections-3.2.1.jar
set CP=%CP%;S:\java\javaclasses\commons-configuration-1.6.jar
set CP=%CP%;S:\java\javaclasses\commons-lang-2.4.jar
set CP=%CP%;S:\java\javaclasses\commons-logging-1.1.1.jar
rem --- BORLAND LAYOUTS ---
set CP=%CP%;s:\java\javaclasses\jbcl.jar
rem --- BORLAND LAYOUTS ---
rem --- COHERENCE ----
set CP=%CP%;C:\coherence\lib\tangosol.jar
set CP=%CP%;C:\coherence\lib\coherence.jar
set CP=%CP%;C:\coherence\lib\coherence-messagingpattern-2.2.0.jar
set CP=%CP%;C:\coherence\lib\coherence-work.jar
rem --- COHERENCE ----
IF EXIST %JAVA_HOME%\bin\java_for_execution_viewer.exe GOTO OK
copy %JAVA_HOME%\bin\java.exe %JAVA_HOME%\bin\java_for_execution_viewer.exe
:OK
%JAVA_HOME%\bin\java_for_execution_viewer.exe -classpath %CP% %java_opts% execution_viewer.ExecutionViewer
endlocalThis starts the coherence node
set java_home=c:\jdk1.6.0_14_64bit
:config
@rem specify the Coherence installation directory
set coherence_home=%~dp0\..
@rem specify the JVM heap size
set memory=512m
:start
if not exist "%coherence_home%\lib\coherence.jar" goto instructions
:launch
set java_opts=%java_opts% -Xms%memory%
set java_opts=%java_opts% -Xmx%memory%
set java_opts=%java_opts% -Dtangosol.coherence.management=all
set java_opts=%java_opts% -Dtangosol.coherence.management.remote=true
set java_opts=%java_opts% -Dtangosol.coherence.localhost=%my_ip%
set java_opts=%java_opts% -Djava.net.preferIPv4Stack=true
set java_opts=%java_opts% -Dcom.sun.management.jmxremote
set java_opts=%java_opts% -Dcom.sun.management.jmxremote.authenticate=false
set java_opts=%java_opts% -Dcom.sun.management.jmxremote.ssl=false
set java_opts=%java_opts% -Dtangosol.coherence.cacheconfig=c:/coherence/cache-config-dev.xml
set java_opts=%java_opts% -Dtangosol.pof.enabled=false
set CP=%CP%;"%coherence_home%\lib\coherence.jar"
set CP=%CP%;S:\java\javaclasses\log4j-1.2.8.jar
set CP=%CP%;s:\java\coup\lib\coup.jar
set CP=%CP%;S:\java\oms2\lib\oms2.jar
set CP=%CP%;S:\java\stats\classes\
echo %java_opts%
REM "%java_exec%" -Dcom.sun.management.jmxremote.port=9991 -Dcom.sun.management.jmxremote.authenticate=false -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote -Dtangosol.coherence.management=all -Dtangosol.coherence.management.remote=true -server -showversion "%java_opts%" -cp "%coherence_home%\lib\coherence.jar" com.tangosol.net.DefaultCacheServer %1
copy %java_home%\bin\java.exe %java_home%\bin\java_for_coherence.exe
echo ****
%java_home%/bin/java_for_coherence.exe -server -showversion %java_opts% -cp %CP% com.tangosol.net.DefaultCacheServer %1
echo ****
goto exit
:instructions
echo Usage:
echo   ^<coherence_home^>\bin\cache-server.cmd
goto exit
:exitthis is c:/coherence/cache-config-dev.xml
<?xml version="1.0"?>
<!DOCTYPE cache-config SYSTEM "cache-config.dtd">
<cache-config>
        <!-- ***********  SCHEME MAPPINGS  ***********  -->
        <caching-scheme-mapping>
                <cache-mapping>
                        <cache-name>executions</cache-name>
                        <scheme-name>executions-scheme</scheme-name>
                </cache-mapping>
                <cache-mapping>
                        <cache-name>stats.*</cache-name>
                        <scheme-name>stats-scheme</scheme-name>
                </cache-mapping>
                <cache-mapping>
                        <cache-name>positions</cache-name>
                        <scheme-name>positions-scheme</scheme-name>
                </cache-mapping>
                <cache-mapping>
                        <cache-name>oms</cache-name>
                        <scheme-name>default-scheme</scheme-name>
                </cache-mapping>
                <cache-mapping>
                        <cache-name>orders</cache-name>
                        <scheme-name>orders-scheme</scheme-name>
                </cache-mapping>
                <cache-mapping>
                        <cache-name>coup.*</cache-name>
                        <scheme-name>default-scheme</scheme-name>
                </cache-mapping>
                <cache-mapping>
                        <cache-name>legacyExecs</cache-name>
                        <scheme-name>default-scheme</scheme-name>
                </cache-mapping>
        </caching-scheme-mapping>
        <!-- ******************************** -->
        <caching-schemes>
        <!-- <distributed-scheme> -->
                  <optimistic-scheme>
                        <scheme-name>stats-scheme</scheme-name>
                        <!-- <service-name>ReplicatedCache.Optimistic</service-name> -->
                        <service-name>ReplicatedCache.Optimistic</service-name>
                        <backing-map-scheme>
                                 <local-scheme/>
                                 <!-- <external-scheme>  -->
                                 <!-- <paged-external-scheme>  -->
                                 <!-- <overflow-scheme>  -->
                                 <!-- <class-scheme>  -->
                        </backing-map-scheme>
                        <autostart>true</autostart>
                </optimistic-scheme>
        <!-- </distributed-scheme> -->
                <distributed-scheme>
                        <scheme-name>executions-scheme</scheme-name>
                        <service-name>DistributedCache</service-name>
                        <!--
                        <serializer>
                        <class-name>com.tangosol.io.pof.ConfigurablePofContext</class-name>
                        </serializer>
                        -->
                        <!-- <listener>
                        <class-scheme>
                        <class-factory-name>oms.grid.ExecutionMapTrigger</class-factory-name>
                        <method-name>createTriggerListener</method-name>
                        </class-scheme>
                </listener> -->
                <backing-map-scheme>
                        <read-write-backing-map-scheme>
                                <scheme-name>ExecutionDatabaseScheme</scheme-name>
                                <internal-cache-scheme>
                                        <local-scheme>
                                                <!-- Any Memory Scheme Name Could Go Here, Right? -->
                                                <scheme-name>SomeScheme1</scheme-name>
                                        </local-scheme>
                                </internal-cache-scheme>
                                <cachestore-scheme>
                                        <class-scheme>
                                                <class-name>oms.grid.ExecutionCacheStore</class-name>
                                                <class-factory-name>oms.grid.ExecutionCacheStore</class-factory-name>
                                                <init-params>
                                                        <init-param>
                                                                <param-name>url</param-name>
                                                                <param-type>String</param-type>
                                                                <param-value>jdbc:mysql://localhost:6033/oms2?autoReconnect=true</param-value>
                                                        </init-param>
                                                        <init-param>
                                                                <param-name>username</param-name>
                                                                <param-type>String</param-type>
                                                                <param-value>xxx</param-value>
                                                        </init-param>
                                                        <init-param>
                                                                <param-name>password</param-name>
                                                                <param-type>String</param-type>
                                                                <param-value>xxx</param-value>
                                                        </init-param>
                                                </init-params>
                                        </class-scheme>
                                </cachestore-scheme>
                                <write-delay>30s</write-delay>
                                <write-batch-factor>0.5</write-batch-factor>
                        </read-write-backing-map-scheme>
                        <!--
                        <local-scheme>
                        <scheme-ref>example-binary-backing-map</scheme-ref>
                        </local-scheme>
                        -->
                </backing-map-scheme>
                <autostart>true</autostart>
        </distributed-scheme>
        <distributed-scheme>
                <scheme-name>positions-scheme</scheme-name>
                <service-name>DistributedCache</service-name>
                <!--
                <serializer>
                <class-name>com.tangosol.io.pof.ConfigurablePofContext</class-name>
                </serializer>
                -->
                <backing-map-scheme>
                        <read-write-backing-map-scheme>
                                <scheme-name>PositionDatabaseScheme</scheme-name>
                                <internal-cache-scheme>
                                        <local-scheme>
                                                <!-- Any Memory Scheme Name Could Go Here, Right? -->
                                                <scheme-name>SomeScheme2</scheme-name>
                                        </local-scheme>
                                </internal-cache-scheme>
                                <cachestore-scheme>
                                        <class-scheme>
                                                <class-name>oms.grid.PositionCacheStore</class-name>
                                                <class-factory-name>oms.grid.PositionCacheStore</class-factory-name>
                                                <!-- <method-name>PositionCacheStoreFactory</method-name> -->
                                                <init-params>
                                                        <init-param>
                                                                <param-name>url</param-name>
                                                                <param-type>String</param-type>
                                                                <param-value>jdbc:mysql://localhost:6033/oms2?autoReconnect=true</param-value>
                                                        </init-param>
                                                        <init-param>
                                                                <param-name>username</param-name>
                                                                <param-type>String</param-type>
                                                                <param-value>xxx</param-value>
                                                        </init-param>
                                                        <init-param>
                                                                <param-name>password</param-name>
                                                                <param-type>String</param-type>
                                                                <param-value>xxx</param-value>
                                                        </init-param>
                                                </init-params>
                                        </class-scheme>
                                </cachestore-scheme>
                                <write-delay>30s</write-delay>
                                <write-batch-factor>0.5</write-batch-factor>
                        </read-write-backing-map-scheme>
                        <!--
                        <local-scheme>
                        <scheme-ref>example-binary-backing-map</scheme-ref>
                        </local-scheme>
                        -->
                </backing-map-scheme>
                <autostart>true</autostart>
        </distributed-scheme>
        <distributed-scheme>
                <scheme-name>orders-scheme</scheme-name>
                <service-name>DistributedCache</service-name>
                <backing-map-scheme>
                        <local-scheme/>
                </backing-map-scheme>
                <listener>
                        <class-scheme>
                                <class-factory-name>oms.grid.OrderAddTrigger</class-factory-name>
                                <method-name>createTriggerListener</method-name>
                        </class-scheme>
                </listener>
                <!--
                <serializer>
                <class-name>com.tangosol.io.pof.ConfigurablePofContext</class-name>
                </serializer>
                -->
                <autostart>true</autostart>
        </distributed-scheme>
        <distributed-scheme>
                <scheme-name>default-scheme</scheme-name>
                <service-name>DistributedCache</service-name>
                <!--
                <serializer>
                <class-name>com.tangosol.io.pof.ConfigurablePofContext</class-name>
                </serializer>
                -->
                <backing-map-scheme>
                        <local-scheme/>
                </backing-map-scheme>
                <autostart>true</autostart>
        </distributed-scheme>
</caching-schemes>
</cache-config>
this is coherence-cache-config.xml from the coherence.jar.
<?xml version="1.0"?>
<!--
Note: This XML document is an example Coherence Cache Configuration deployment
descriptor that should be customized (or replaced) for your particular caching
requirements. The cache mappings and schemes declared in this descriptor are
strictly for demonstration purposes and are not required.
For detailed information on each of the elements that can be used in this
descriptor please see the Coherence Cache Configuration deployment descriptor
guide included in the Coherence distribution or the "Cache Configuration
Elements" page on the Coherence Wiki (http://wiki.tangosol.com).
-->
<!DOCTYPE cache-config SYSTEM "cache-config.dtd">
<cache-config>
  <caching-scheme-mapping>
    <cache-mapping>
      <cache-name>dist-*</cache-name>
      <scheme-name>example-distributed</scheme-name>
      <init-params>
        <init-param>
          <param-name>back-size-limit</param-name>
          <param-value>8MB</param-value>
        </init-param>
      </init-params>
    </cache-mapping>
    <cache-mapping>
      <cache-name>near-*</cache-name>
      <scheme-name>example-near</scheme-name>
      <init-params>
        <init-param>
          <param-name>back-size-limit</param-name>
          <param-value>8MB</param-value>
        </init-param>
      </init-params>
    </cache-mapping>
    <cache-mapping>
      <cache-name>repl-*</cache-name>
      <scheme-name>example-replicated</scheme-name>
    </cache-mapping>
    <cache-mapping>
      <cache-name>opt-*</cache-name>
      <scheme-name>example-optimistic</scheme-name>
      <init-params>
        <init-param>
          <param-name>back-size-limit</param-name>
          <param-value>5000</param-value>
        </init-param>
      </init-params>
    </cache-mapping>
    <cache-mapping>
      <cache-name>local-*</cache-name>
      <scheme-name>example-object-backing-map</scheme-name>
    </cache-mapping>
    <cache-mapping>
      <cache-name>*</cache-name>
      <scheme-name>example-distributed</scheme-name>
    </cache-mapping>
  </caching-scheme-mapping>
  <caching-schemes>
    <!--
    Distributed caching scheme.
    -->
    <distributed-scheme>
      <scheme-name>example-distributed</scheme-name>
      <service-name>DistributedCache</service-name>
      <!-- To use POF serialization for this partitioned service,
           uncomment the following section -->
      <!--
      <serializer>
        <class-name>com.tangosol.io.pof.ConfigurablePofContext</class-name>
      </serializer>
      -->
      <backing-map-scheme>
        <local-scheme>
          <scheme-ref>example-binary-backing-map</scheme-ref>
        </local-scheme>
      </backing-map-scheme>
      <autostart>true</autostart>
    </distributed-scheme>
    <!--
    Near caching (two-tier) scheme with size limited local cache
    in the front-tier and a distributed cache in the back-tier.
    -->
    <near-scheme>
      <scheme-name>example-near</scheme-name>
      <front-scheme>
        <local-scheme>
          <eviction-policy>HYBRID</eviction-policy>
          <high-units>100</high-units>
          <expiry-delay>1m</expiry-delay>
        </local-scheme>
      </front-scheme>
      <back-scheme>
        <distributed-scheme>
          <scheme-ref>example-distributed</scheme-ref>
        </distributed-scheme>
      </back-scheme>
      <invalidation-strategy>present</invalidation-strategy>
      <autostart>true</autostart>
    </near-scheme>
    <!--
    Replicated caching scheme.
    -->
    <replicated-scheme>
      <scheme-name>example-replicated</scheme-name>
      <service-name>ReplicatedCache</service-name>
      <backing-map-scheme>
        <local-scheme>
          <scheme-ref>unlimited-backing-map</scheme-ref>
        </local-scheme>
      </backing-map-scheme>
      <autostart>true</autostart>
    </replicated-scheme>
    <!--
    Optimistic caching scheme.
    -->
    <optimistic-scheme>
      <scheme-name>example-optimistic</scheme-name>
      <service-name>OptimisticCache</service-name>
      <backing-map-scheme>
        <local-scheme>
          <scheme-ref>example-object-backing-map</scheme-ref>
        </local-scheme>
      </backing-map-scheme>
      <autostart>true</autostart>
    </optimistic-scheme>
    <!--
     A scheme used by backing maps that may store data in object format and
     employ size limitation and/or expiry eviction policies.
    -->
    <local-scheme>
      <scheme-name>example-object-backing-map</scheme-name>
      <eviction-policy>HYBRID</eviction-policy>
      <high-units>{back-size-limit 0}</high-units>
<!--      <expiry-delay>{back-expiry 1h}</expiry-delay> -->
      <flush-delay>1m</flush-delay>
      <cachestore-scheme></cachestore-scheme>
    </local-scheme>
    <!--
     A scheme used by backing maps that store data in internal (binary) format
     and employ size limitation and/or expiry eviction policies.
    -->
    <local-scheme>
      <scheme-name>example-binary-backing-map</scheme-name>
      <eviction-policy>HYBRID</eviction-policy>
      <high-units>{back-size-limit 0}</high-units>
      <unit-calculator>BINARY</unit-calculator>
<!--      <expiry-delay>{back-expiry 1h}</expiry-delay> -->
      <flush-delay>1m</flush-delay>
      <cachestore-scheme></cachestore-scheme>
    </local-scheme>
    <!--
    Backing map scheme definition used by all the caches that do
    not require any eviction policies
    -->
    <local-scheme>
      <scheme-name>unlimited-backing-map</scheme-name>
    </local-scheme>
   <!--
    ReadWriteBackingMap caching scheme.
    -->
    <read-write-backing-map-scheme>
      <scheme-name>example-read-write</scheme-name>
      <internal-cache-scheme>
        <local-scheme>
          <scheme-ref>example-binary-backing-map</scheme-ref>
        </local-scheme>
      </internal-cache-scheme>
      <cachestore-scheme></cachestore-scheme>
      <read-only>true</read-only>
      <write-delay>0s</write-delay>
    </read-write-backing-map-scheme>
    <!--
    Overflow caching scheme with example eviction local cache
    in the front-tier and the example LH-based cache in the back-tier.
    -->
    <overflow-scheme>
      <scheme-name>example-overflow</scheme-name>
      <front-scheme>
        <local-scheme>
          <scheme-ref>example-binary-backing-map</scheme-ref>
        </local-scheme>
      </front-scheme>
      <back-scheme>
        <external-scheme>
          <scheme-ref>example-bdb</scheme-ref>
        </external-scheme>
      </back-scheme>
    </overflow-scheme>
    <!--
    External caching scheme using Berkley DB.
    -->
    <external-scheme>
      <scheme-name>example-bdb</scheme-name>
      <bdb-store-manager>
        <directory></directory>
      </bdb-store-manager>
      <high-units>0</high-units>
    </external-scheme>
    <!--
    External caching scheme using memory-mapped files.
    -->
    <external-scheme>
      <scheme-name>example-nio</scheme-name>
      <nio-file-manager>
        <initial-size>8MB</initial-size>
        <maximum-size>512MB</maximum-size>
        <directory></directory>
      </nio-file-manager>
      <high-units>0</high-units>
    </external-scheme>
    <!--
    Invocation Service scheme.
    -->
    <invocation-scheme>
      <scheme-name>example-invocation</scheme-name>
      <service-name>InvocationService</service-name>
      <autostart system-property="tangosol.coherence.invocation.autostart">true</autostart>
    </invocation-scheme>
    <!--
    Proxy Service scheme that allows remote clients to connect to the
    cluster over TCP/IP.
    -->
    <proxy-scheme>
      <scheme-name>example-proxy</scheme-name>
      <service-name>TcpProxyService</service-name>
      <acceptor-config>
        <tcp-acceptor>
          <local-address>
            <address system-property="tangosol.coherence.extend.address">localhost</address>
            <port system-property="tangosol.coherence.extend.port">9099</port>
          </local-address>
        </tcp-acceptor>
      </acceptor-config>
      <autostart system-property="tangosol.coherence.extend.enabled">false</autostart>
    </proxy-scheme>
  </caching-schemes>
</cache-config>Thanks,
Andrew

Similar Messages

  • Issue with sent items disappearing from Outlook

    We are having an issue with many of our users who have had their sent items disappear from Outlook. We are running Exchange 2010 SP2 with Rollup 8. All users on Windows 7 appear to be working fine, it is just users on XP that are having the issue. All
    PCs are SP3 with updates applied. The messages were there previously, but the Sent folder shows empty as of Monday. They show correctly in OWA, it is just in Outlook itself that is the problem. If we enable cached mode the items populate, but our standard
    policy is to run online with no local PST. We have tried running Outlook with /clearviews and in Safe Mode, but this does not resolve the issue.

    Hi,
    From your description, all the sent items are correct in OWA. So the Exchange Server is ok.
    About this issue, I recommend you install all the latest Windows updates and check the result.
    Hope it helps.
    If there are any problems, please feel free to let me know.
    Best regards,
    Amy
    Amy Wang
    TechNet Community Support

  • Weird User error - Items disappear from Workflow inbox when refreshed

    Hi All,
    One of our end users gets this error -
    He logs into business workplace, and clicks on one of the items and exits without doing anything - on refresh the item vanishes from his workflow inbox - not visible in any sub folders or Outbox (Work items exceuted by me).
    Same thing occurs when he clicks on the "Reserve" or "Replace" icons for an item and does a Refresh. The item disappears from Inbox.
    Tried to swtich off the Preview pane and refresh - same occurence.
    Tried to refresh / reserve from another computer and the same thing occurs.
    Is this a problem with the GUI / user profile?
    Any pointers highly appreciated.
    Rgds,
    Rahul Kochhar ([email protected])

    Rahul,
    Welcome to SDN Forums!!
    Is the user in question a selected agent for the work item(s)? Does this happen only for a specific user? If so, it could be an authorization issue. Check for any failed authorizations (SU53) for the user. What is the status of the WI when it disappears from the inbox? If in error, check for error messages in the technical display of the WF log.
    Cheers,
    Ramki Maley.
    Please reward points if the answer is helpful.
    For info on awarding points click on this link: https://www.sdn.sap.com/sdn/index.sdn?page=crp_help.htm

  • Can I filter News or Events by time (so that past items disappear from listings)?

    Can I filter News or Events by time (so that past items disappear from listings)?

    Thanks for your reply. I'm trying to find a way to divide events into two lists, "forthcoming" and "past events" which will automatically work without too much work for my client. If I set an event to "expired" is it still in the database and if so, can I list all expired events?
    Regards

  • Why do new event items disappear from calendar after a few seconds

    Suddenly,new event items disappear from calendar a few seconds (7-30) after creation. This has never been a problem before, and I have used iCal for years. All my old events remain but as of today, when I try to add an event, it stays on the screen for a few seconds, then disappears. I tried entering the events on my iPhone and then syncing, but they went away on my phone as well. Does anyone have an idea of what's happening? Is my iCal out of memory?

    I had success with this method:
    1) make a backup of iCal's database (-> file menu)
    2) revert to that same backup ( " " )

  • Items disappearing from my movie menu in idvd

    I've put 3 movies that I had on my computer on DVDs through idvd and I made menus with chapter markers for them. This worked fine. But now, random items keep disappearing from the menu. First, just a random detail disappeared (the black brushstroke from the brushstroke theme). Then, when you go to scene selection, it should play clips from the movie in each chapter marker frame pertaining to that part of the movie, which it did at first. Then, I closed the movie without saving to see if it would go back to how it was and reopened it. All of that was still gone, plus the picture on the main menu! The picture is still technically in the drop zone though because when you open the drop zone editor, you can see it. I don't understand how things are just disappearing without me changing anything! Before this happened, I saved the movie and everything was okay. Then I left the window open and did something else on my computer (just googled something, nothing big). After that, I had the problem.
    Any help??
    Thanks!

    You're in the wrong folder. Instead go to your Home folder (the one the looks like a house) and then over to library > prefererences and I'm sure you'll see it (assuming iDvd has been launched at least one time on your mac). Btw, Don't count on Finder nor Spotlight to locate this item /preference if your HD hasn't been indexed recently.
    Message was edited by: SDMacuser

  • I've updated to iOS and now items disappear from calendar, I've updated to iOS and now items disappear from calendar

    I use my calendar in my iPhone for work and it has always been fine. This weekend. I updated the phone and love the bigger icons etc but have discovered items do not stay in the calendar and so I now can not use the calendar and have had to revert to PAPER !!!! Help please this is making my life a misery all my daily appointments are on there . Well they were

    Is this a synced Calendar? If so, from what source?

  • Purchased item disappeared from my iTunes library

    I purchase the movie "Enemy of the state" last night, and I cant find it in my Library? I paid $9.99 for it, and now its not there anymore??? Anyone got a clue?

    Hello sunlyte,
    You can always redownload the purchase if it's nowhere to be found on the system.
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    http://support.apple.com/kb/HT2519
    Cheers,
    Allen

  • Set up iCloud with iPhone and iMac, and all my calendar items disappeared from my iPhone.  Help?

    I had a full calendar on my iPhone4 before I activated iCloud on my iMac and iPhone.  All that's left on the iPhone calendar are a few birthdays.  Can someone please tell me how to sync my iMac with my iPhone via iCloud (boy, that's a lot of "i's")??

    If you are going to use iCloud then stop using iTunes. Set up 2 user accounts on your PC, one for you and one for her, in each account enter the correct iCloud credentials (ie: yours for you and hers for her), do not sync the items that are on iCloud with iTunes, it will make a mess.

  • Item disappeared from my Purchase History/Order over-night

    Yesterday I ordered a touchscreen laptop online, to be shipped to my home.  Included with it was a free digital downloadable Security Suite.     I got my order confirmation email, and clicked the "Order Status" link in it and everything was going fine (Order received, Order processed, Order in the process of getting ready for shipment ... all but the shipped stage were completed) ... and both the laptop and the security software were showing.    Because I have to make arrangements to have someone at my home to intercept my package while I am at work, I checked the order status again today.  Nothing.  I thought it was maybe a down time on your network, so I tried again later.   Still could not bring up my order.    Just because I was curious about what might have happened, I clicked on my purchase history and my order is there, but with only the security software showing and my laptop is not on the order.    I have the email showing that the order for the laptop went through, but it is not showing on the site.    Please advise......

    Hello vinnigirl,
    Thanks for coming to us with this inquiry! I have been in a similar position before; it’s not always easy to receive a package when you are working during the normal delivery hours. Been there and done that. I am sorry if this caused you any worry.
    Sometimes orders can take a longer time to process which may cause a delay in your ability to check the status, but I haven’t heard of this happening after you were already able to view your order status previously. It brings me joy to hear this seems to have worked itself out for you! Additionally, your doctor analogy I can totally relate to. I hope you have a splendid weekend!
    Please let me know if you have any other questions or concerns with this order.
    Thanks for your business,
    JD|Social Media Specialist | Best Buy® Corporate
     Private Message

  • Contacts and calendar items disappear when exchange server is off

    Hi All
    I've been having this problem for a few weeks now and it's most frustrating. My iphone is setup to sync over the air to our corporate exchange server. It seems that when the server is down for repair/patching ALL my contacts and calendar items disappear from my iphone. This doesn't seem to happen if the phone is out of signal?
    I know that I can sync directly with Outlook, however this would then mean that the phone is only updated when synced with my laptop at work. If I sync both over the air AND with Outlook, I get duplicates of everything in my calendar.
    I'm not restoring my iphone to factory defaults to get rid of the duplicates and go back to over the air sync only.
    Does anyone have any ideas on how I can get calendar and contacts to work "offline" when the exchange server is down?
    Main PC is running Windows 7 and exchange is 2007. This problem is only recent, I think in the last month of two. Nothing has changed other than the last few firmware updates from Apple.

    hi, cheers for the info. That would make sense, however how come when I'm out of signal and not connected to wifi, the data doesn't also disappear as that too would render the server "unavailable".
    Is there a way to make the iphone keep a copy of the data much the same as "offline mode" in Outlook where you can still browse your email, calendar and contacts when the server is offline, and it picks up where it left off when the server is available again?
    I appreciate this may not be a "problem" as such, but is frustrating as all my contacts and calendar live in Outlook and I can't function without them
    Message was edited by: spongmonkey

  • Items dissapear from Recycle Bin

    Hi, currently I'm facing a problem in my farm, I've detected that items which are sent to first stage Recycle bin dissapears from Recycle bin and farm at some time. These items are not being stored the number of days that has
    been configured in CA (30 days by default). I have checked the configuration of the farm and I see that all is correct, also I checked the size of the Recycle Bin in order to revise if these could be the problem, but no lucky. 
    I checked the timer job, but this it was configured in order to clean the files on Sudany, and I detected that files that wew in Recycle Bin were deleted on Friday.
    Anyone has any clue about this problem?
    Thanks

    Hi,
    According to your post, my understanding is that that Items disappeared from Recycle Bin.
    If a deleted document does not fit in the second stage recycle bin, it skips that stage and SharePoint automatically deletes it. It happens if the size of the document is bigger than the specified second stage recycle bin storage space size.
    If you try to find an item in the recycle bin and fail to locate it then you need to verify the following :
    The contents in the      recycle bin are driven by the access control. The user who has deleted the      content will be able to see the content in the recycle bin. Other users     
    will not be able to see the items in the recycle bin.
    If you have deleted a      top level item like a folder or a list, and try to find a document available      at an inner location, then the item will not be viewable. By default the     
    Recycle bin shows the top level content and does not have the capability      to show the items in a tree structure or drill down mode.
    The contents in the      recycle bin contains only the items within the site. A deleted site is      outside the scope of the Recycle bin and is not available for deletion.
    The recycle bin contains      the items for a predefined period which can be set from the Web      Application –> General Settings. if the thresh hold is crossed, the      item
    is deleted permanently.
    In addition, Recycle Bin cannot remove items automatically, someone should have deleted them.
    You can create an Event Receiver to response only when an item is being deleted or an item has been deleted, and then log the user who delete the post and the time he delete the post. Please refer to
    Creating SharePoint 2010 Event Receivers in Visual Studio 2010
    More information:
    Recycle bin in SharePoint 2010:
    http://letitknow.wordpress.com/2012/12/07/recycle-bin-in-sharepoint-2010/
    Plan to protect content by using recycle bins and versioning (SharePoint Server 2010):
    http://technet.microsoft.com/en-us/library/cc263011.aspx
    SharePoint 2010 Recycle Bin:
    http://sharepointtech.wordpress.com/2010/10/21/sharepoint-2010-recycle-bin/
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Important: Item Disappears form Item Dashboard when used in Initiative

    Hello All,
    I have one urgent question. I am seeing one strange thing. When a PPM Item is created and lets say this Item has a role A with 'Write' access on it. When I log in as Role A, I can see the PPM Item on the Item Dashboard. But the strange thing is when an Initiative is created by Role B ( this Initiative has both 'Write' access for roles B and role A) and the above PPM Item is added. Then when I log in as Role A, I cant see the PPM item on Item Dashboard. To see the PPM Item as Role A, I have to go to Initiative first and then see added items and there I can see the above PPM Item but not directly from Item Dashboard. Can someone throw some light as why PPM item disappears from Item dashboard for Role A, even when Role A has write access on the PPM Item, after item is used in a initiative.
    Thanks,
    Sachin

    Hello Sachin,
    Implement SAP Note 1649142 and retest.
    Regards,
    Brendan

  • HT201272 I purchased several older James Bond movies 2 years ago that have all disappeared from my iTunes and are no longer available. Will I be refunded for these items?

    I purchased several older James Bond movies 2 years ago that have all disappeared from my iTunes and are no longer available. Will I be refunded for these items?

    No you won't be refunded, it's your responsibility to keep copies of your purchases. Have you not got copies of them on backups ?

  • Approved Task items are not disappearing from uwl task list

    Hi
    we have implemended Guided procedures with universal work list. For most of the users, once the any task items are approved, it suppose to disappear from the task list. But it is not disappearing from the task list. Even if i click on "refresh" under flter option. Please let me now how to get rid of this issue.
    thanks
    vijay

    Hi,
    Have a look on my reply on the thread:
    Uwl tasks status not get updated in Portal
    Regards,
    Fabio

Maybe you are looking for