Cache Content is Obsolete in PI 7.31 SP11

Hello Guys,
Recently we upgraded SP level from PI 7.31 SP06 to SP11 and found one error in (t.code SXI_CACHE--Delta Monitoring) when executed
Error: Cache Content is Obsolete
I checked the t.code SXMB_ADM_BPE and all are green. I didn't found any SAP notes so far.
Could you please provide me some suggestions on that?
Thank you.
Sateesh

Hello Eoin, Hello SK,
I didn't seen any error description, and all integration Processes return code is '0'.
As mentioned above in my previous we upgraded service packs from PI 7.31 SP06 to SP11, was that the reason ? ( mean this Delta cache refresh is obsolete by SP11?)
(or) any other different reason, because looks my all three systems shown the same issue.
Thank you.
Sateesh

Similar Messages

  • Cache Contents are Obsolete after activating BPM

    Hello.
    I have made a BPM for a scenario, and after activating it, the SXI_CACHE shows: Cache Contents are Obsolete
    the problem is solved only after I delete the Cache instance in the integration directory, and make a cache connectivity test.
    The version of the PI is 7.0 SP15
    What in BPM development might cause this? or is there an external cause for this (this is the first BPM being made in this server)
    Thanks for anyone who will try to assist.

    Thank you very much.
    I tried to use a simpler BPM (one that receives an interface and immediately sends it) to see if the complexity of the BPM, or just a bug in this specific BPM was causing the problem.
    However - this problem occurs with the new BPM as well...
    I have open an OSS, and waiting to see what they'll suggest.

  • Cache contents are obsolete

    Hi all,
    I did add one field to data type in Design and activate changes. in sap system when i regenerate the proxy i cant see the new field which i added.
    when i check in sxi_cache in sap system it is red and it is saying "cache contents are obsolete "
    Can any one tell me what could be the problem.
    Kind Regards,
    Kiran

    Hi Kiran,
    1.
    Refer the below weblog:
    /people/sravya.talanki2/blog/2005/11/03/cache-refresh-errors--new-phenomena
    Your : INTEGRATION_DIRECTORY_HMI RFC is working correctly?
    INTEGRATION_DIRECTORY_HMI (HTTP connection, use the XIISUSER to authenticate). Is the
    Path Prefix set to “/dir/CacheRefresh”.
    also check those in exchangeprofile:
    com.sap.aii.integrationserver.serviceuser.name
    com.sap.aii.integrationserver.serviceuser.pwd
    2.  refer this link, this may help
    http://72.14.235.104/search?q=cache:ybo3lXQMIqMJ:https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/c00d9465-ea97-2910-deac-f8aa681eef35sxi_cacheobsolute+why%3F&hl=en&ct=clnk&cd=1&gl=in&client=firefox-a
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/44/3a6c6d55e402bfe10000000a11466f/content.htm
    3. Check the RWB cache notifaction status for the AE and IE? these should be green in color...when you run SXI_CACHE it tries to push the data to IS from all side including the AE? but the AE should be sucessfull...
    if any problem in the AR cache will not trun the SXI_Cache sucessfully......so i suggest run the CPA cache completely...make sure all the activiation is done, check the INTEGREATION_DIRECTORY_HMI (checkl the name) destination is properly entered....then try to rerun thec cache from the IR and ID and check the error if any....
    Regards,
    Suraj Kumar
    Edited by: Suraj Pabbathi on Jan 30, 2008 3:43 AM

  • Does the Flash Player (Win7 / IE 9+) cache content outside of the browser?

    I have encountered a technical issue using Flash (CC) content in Captivate 7.  I am distributing the content to a customer with approximately 1000 Windows PC's running IE 9 +.  Some of these computers have no issue but a small number experience a problem which prevents them from downloading content after an undetermined point.  There is no apparent pattern to identify either a fault in the content or a fault in the workstation build.
    The problem looks like this:
    The user is able to access the content - sometimes several courses, sometimes only one.
    At some point during a course -it will stop playing (failing to load the next page).
    The user can close the course and reload - but is always stops in the same place it originally failed.
    The user can load previously accessed courses and these work without issue.
    The user is unable to load any new courses (previously un-accessed) - resulting in a blank page.
    No application events are logged when this occurs so there is little to examine when it occurs.  We have anecdotal evidence that the issue can sometimes be resolved by clearing the browser cache - but not always.  Also - we have unconfirmed reports that the problem can "resolve itself" after several weeks.
    From my perspective it looks like one of the following scenarios is causing the problem:
    The Flash Player is caching content in a location other than the browser cache and reaches a limit.  The cache is not overwriting content so then fails to download any new content.
    The Flash Player experiences a problem which prevents it from downloading content (corrupt files, registry issue, or policy restriction).
    We have several other customers who access this content at different sites - and none have reported this specific issue, so we are confident that the delivery mechanism is sound.  The customers workstations are generally new machines with plenty of capacity, and they have a 200 Mb leased line connection to the Internet.  The customer has assured us they do not use a caching proxy server on site, nor any bandwidth optimisation tools so in theory, the client connection is direct to the Internet.  Additionally - the fact that this issue affects isolated workstations suggests the problem lies at the endpoint - not in the transmission path.
    Has anyone encountered this type of issue before - or does anyone have any knowledge of Flash Player caching operations?
    Regards

    IE will roll cache like any other browser. Keep as much as the user allows and start recycling when that gets filled. At no point will IE "fill up" on any single or multiple sites and be unable to download any more content. Downloading is all a browser does and Flash is not excluded from that unlimited party. However if you never remove content properly and continue to download endless content, you could encounter RAM issues. You don't have unlimited RAM so you may be hitting a wall. But as long as you're disposing any content you loaded that you no longer need, that isn't an issue.
    You're going to need to install some custom logging if you really want to debug a clients client. The most popular thing a Flash application will do is fail silently and lock up because you did not provide any failsafe measures for various common issues. From common crossdomain policy issues to flaky connections failing in the middle of a download, you need to handle all these situations and act appropriately. If any content is failing to load in Flash you can be sure if you try {} catch () {} you'll be given a top level chance to send out a log notice to yourself. That's of course assuming you have the standard IOErrorEvent, SecurityErrorEvent, etc already in place to also log.
    If you had access to the offending machines then opening the developer tools in IE and using the network manager would be the easiest way to see what's going on. If you click to load more content and see no network request, the requesting itself has an issue (could be a million reasons). If you see the request go out then you'll either see it fail in the middle or complete. If it fails you should have code to handle that. If it completes and the app still locks up, you probably have ABC that isn't playing nicely and should be "caught" and logged.
    There's just no one way to approach this. Only layers of error handling and logging are your best friends when it comes to debugging this kind of thing.
    Personally I've seen clients boast they have XMbit lines and their network is otherwise perfect, when it had old grade (100mbit) eth cables and the little things that schools and large companies tend to overlook in the long run. It's easy to replace a faulty switch or eth card but in-wall cable, not so often.

  • Unable to clear the cache content

    Hi
    messages are stuck in queue, so i went smq1 & smq2 and clear the queue. again i processed it while putting the file in ftp.
    In sxi_cache i went and seen it is showing - Unable to clear the cache content. traffic light is in red mode. I know that it should be green....
    thanks

    Hi,
    Please gothrough the same disscussion
    Error in Cache Refresh(Unable to refresh cache contents)
    SXI_CACHE Error:  Unable to refresh cache contents
    Regards
    Seshagiri

  • Error in Cache Refresh(Unable to refresh cache contents)

    Hi All,
    When i am refreshing Cache from the browser using link CPACache/refresh?mode=full it says success.
    When i do from SXI_CACHE it gives an error.
       Error during last attempt to refresh cache
       Unable to refresh cache contents
    So when i run any schenario in message monitoring i get the following error-
    <i>SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
      <SAP:Category>XIServer</SAP:Category>
      <SAP:Code area="XICACHE">UPDATE</SAP:Code>
      <SAP:P1 />
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText>http response does not contain a valid XML root tag</SAP:AdditionalText>
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>An error occurred when refreshing the XI runtime cache</SAP:Stack>
      <SAP:Retry>N</SAP:Retry>
      </SAP:Error></i>
    I checked the INTEGRATION_DIRECTORY_HMI connection...
    here the response which im getting is..
    <i> HEADER NAME                HEADER VALUE
    response_line               HTTP/1.0 200
    server_protocol             HTTP/1.0
    status_code                 200
    status_reason
    ragma                       no-cache
    ache-control                no-cache
    ontent-type                 text/html
    ontent-length               87
    HTTP BODY
    TITLE>Error</TITLE>#<BODY>#<H1>Error</H1>#FW-1 at nebula: Unknown WWW s
    rver.</BODY>##
    Time (ms)                                 17</i>
    I believe that is not the right response.
    Everything was working fine yesterday when all of a sudden this error cropped up from no where.
    Regards,
    Rahul

    Hi,
    This is the error it shows there..
    <b>ERROR ID</b>      <i>UPDATE</i>
    <i>http response does not contain a valid XML root tag</i>
    Regards,
    Rahul

  • Automatic Delele Media Cache content (DOMAIN USERS)

    Hello,
    I would like to know if theres any way to configure an automatic delete for the media cache content?
    I ask that 'cause in our production we have 40 machines, each one with several user domains accounts and, if the don't set a limit for the media cache folder in each one preferences, the system disk will get full every time.
    Or maybe some configuration that set up a default media cache preferences for all users (without need to log on with the user on each machine and configure that).
    Looking forward some reply.
    Regards,
    Antonio Victor

    Media Cache Database is shared between Adobe Media Encoder, After Effects, Premiere Pro and Encore. If you change path to Media Cache and/or Media Cache Files folder(s) in one application, changes are automatically reflected in all other ones. None of Adobe application is currently capable of cleaning Media Cache Database entirely (i.e. correctly), hence you need to do that at OS level (either manually or via scheduled tasks etc.).
    By the way, you may probably want to permanently change Media Cache Database location from OS drive to another one.

  • Refreshing cache contents

    Hi,
    I am getting a problem that I need to refresh the cache contents for every 5 minutes.
    what might be the problem and whats the solution for this??
    Thanks,
    Ravindra.

    What is the problem ?
    regards
    Shravan

  • Cache Contents Out-Of-Date on R/3 System

    We have XI 3.0 sp15 running on mscs windows 2003, oracle 9.2.06.
    We also have an r/3 enterprise (470 1x110)system.
    In the R/3 System, the sxi_cache shows a red light since we patched to SP15 - Cache Contents Out-Of-Date.
    The Complete Cache refresh icon/menu option and start cache comaprison are greyed out and cannot be executed.  I have sap all and sap new and an su53 check says all authroisations okay.
    I recreated the INTEGRATION_DIRECTORY_HMI as this kept asking for a user id, but no longer does.  This is resolved.
    I have tried refreshing the CPACache on XI but this doesn't correct the R/3 problem.  Tried running sxi_cache on XI.
    We have the APPINT     200_620     0006     SAPK-20006INAPPINT     SAP Exchange Infrastructure 2.0 installed on R/3.
    I have checked oss note 663955 - but not relevant.
    Also, in sproxset table it has two entries, but one system does not exsist. Could this bethe problem?if so, how do I remove the invalid entry?  I cann't check exchangeProfile as it does not exsist.

    Andreas
    I can access the exchangeProfile, the entries are correct.  The rfc connections all work.  I have recreated them anyway.  I have also recreated the same entries in the Java Admin Console - Jco RFC Connections.
    The R/3 Enterprise system is a non unicode system that has the SAP XI 2.0 Plug in added.
    I have the SLDCHECK working properly now.
    I have added some parameters into RZ70 on the R/3 System to read the SLD.
    In SXI_CACHE, the buttons are not available to run the cache refresh or complete cache refresh.  My SU53 says all authorisations check okay.
    Could this be a feature of the XI2.0 plug in??
    Regards
    Barry

  • SXI_CACHE Error:  Unable to refresh cache contents

    Hello everybody,
    in SXI_CACHE we get the error:
    "Unable to refresh cache contents"
    "Error during last attempt to refresh cache"
    and on double clicking we get the message:
    Error Id: Communication
    if_http_client receive http_communication_failure.
    Any suggestions.
    We can't afford to restart the machines every time.
    Regards Mario

    Mario,
    Please refer to the Trouble SHooting section of this guide,
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/1a69ea11-0d01-0010-fa80-b47a79301290
    Also, check the HTTP Connection INTEGRATION_DIRECTORY_HMI and try a test connection of this. It should return  HTTP Code : 500
    Regards
    Bhavesh

  • R3-XI:  Cache Contents Out-Of-Date in SXI_CACHE

    Hi
    When i execute the trx code SXI_CACHE in my R3 system i get an error message "Cache Contents Out-Of-Date". Any hints to solve this issues pls....
    thkx
    P.S

    Hi,
    Try to do full cache refresh by url if it works...
    _http://<host>:5<sys#>00/CPACache/refresh?mode=full_
    Also, have a look at this blog :
    Cache Refresh Errors - New Phenomena
    /people/sravya.talanki2/blog/2005/11/03/cache-refresh-errors--new-phenomena
    Regards,
    Chandra

  • WAAS Cached content access through Checkpoint firewall

              Hello,
    I would like to open access to the cached content on the WAAS from a server through a Checkpoint firewall. The server has to have L3 access to the actual WAE device, from what I understand. Is this feasable? What ports would I need to open in the Checkpoint?
    Thanks
    Doug Bradfield      

    Hello Douglas,
    You're correct, if you see an optimized connection  is probably being cache ( probably not the whole file)  there is a big difference between "cache data" and "preposition data" .
    Cache data is not for you to control or manually retrieve from the WAE box. WAAS controls what is being cache or delete when more new data comes through.
    Preposition data is something you can manually store on the Remote WAE so remote users are benefit of a faster access to files already preposition. But this is uppon remote users request to the server( Users don't know that WAAS exist they just see the  server-share they've always use) so WAAS notice that a user is requesting a file that a remote WAE already got in their preposition files, so it provide faster access to the file.
    Neither of this two options above will let you access WAAS content like you describe on the initial question, you said you want open access to WAE files from a server right ?  you can still get the files on your server and this files can be optimazed if you  server is behind the WAAS optimization path, but you'd need to go and from the server copy the files one by one just like if you were retrieving them from a  client PC.
    hope this helps!

  • How does apple TV cache content, + use with imac

    I am thinking about buying an apple TV, but have some questions
    -does the Apple TV only stream content in real time, or can it store content e.g If I want to watch a film with the family, can I download the full film to the apple tv in advance, or does it just stream in real time, with a buffer? I am slightly concerned about internet issues interrupting a film.
    -If I have an Itunes rental film on an Imac, I understand the Apple TV will stream it. Wont the film be the wrong size if its on the Imac e.g formatted for the Imac, but not a 720P TV? Will there be some loss of quality?

    Yes, the ATV2 only streams. It has an 8gb cache that stores the film as you watch it but you cannot use it as a hard-drive.
    I believe you can rent HD movies on the computer, albeit a more limited selection. Even so you won't have any format issues.

  • Scehduled copy from cache-content

    Hi,
        We need to copy documents from content server to cache server daily based on delta changes on that day. We can use DMS_KPRO_FILL_CACHE for copying. But we need to copy based on the location and the users.
    For Ex. Content server is located at Germany. But cache server is at france. Users in France will check-in documents to Germany content server. But at the end of the day, all the documents changed by France users on that day should be copied from Germany content server to France cache server. The important point here is ,documents changed by the France users only should be copied to France cache server.
    1. Is there any standard functionality available in SAP for the above scenario?
    Regards,
    Prasanna
    Points will be rewarded.

    Dear Experts,
                 Any updates...
    Prasanna

  • Inconsistent cache even though SXI_CACHE says cache contents are uptodate

    Hi all,
    The status of SXI_CACHE says contents are up-to-date, but the cache is still inconsistent. For example, I cant see the  sender agreement, sender communication channels, but I am able to see the reciever agreement, etc. All the configuration objects are activated.
    I have tried full and delta cache refresh. Also tried running the report SAI_CACHE_REFRESH as sugested in an other thread.
    Process Integration (PI) & SOA Middleware
    I got a succesful result when I testing my configuration in the ID. But the log still shows that sender agreement is not found:
    Sender Agreement
    <Not found>
    <Trace level="1" type="B">SENDER AGREEMENT SIMULATION</Trace> <Trace level="1" type="T">Simulating Adapter Engine...</Trace> <Trace level="1" type="T">Simply trying to loolup for the most specific Sender Agreement object</Trace> <Trace level="1" type="T">no objects found</Trace> <Trace level="1" type="T">Note that real results may differ</Trace
    Any fixes for my problem?
    Thanks
    lasya

    Hi ,
    Check in the Objects tab of the Configuration. And if it exists, then try to add the sender agreement to the your configuration scenario. Then actiavte everything.
    Deleting the Sender Agreement,activate it and then try to recreate it..
    To more ~
    https://websmp101.sap-ag.de/~sapidb/011000358700003163902004E/HowTo_handle_XI_30_Caches.pdf
    Hope this helps,
    Regards,
    Moorthy

Maybe you are looking for

  • Connecting Macbook Pro to Emerson HDTV.... sound?

    I just recieved an Emerson HDTV and am trying to connect it to my Macbook Pro.  By using an HDMI2 cable, I have picture.  But, I cannot get the sound.  I have plugged in an audio cable (don't know the name of it but it is the type that fits into the

  • Work around to force trigger Accounting documents for Billing documents

    Hi All, I have an issue very similar to: [Accounting Document not posted for Cancelled Invoice -error in FI interface|Accounting Document not posted for Cancelled Invoice -error in FI interface] The invoices number range were changed recently and few

  • DVD SP Only burns HVDVD_TS

    I know this has been asked before and I have read and tried all the solutions to the best of my ability, but the end product always comes out the same. I have gone into my DVD SP preferences and under the project menu made sure the "DVD Standard" was

  • Compile fine in Netbeans, won't execute

    After I compile my file in netbeans, i try to run it and get this error: java.lang.NoClassDefFoundError: Game/src/game/Main (wrong name: src/game/Main) at java.lang.ClassLoader.defineClass1(Native Method) at java.lang.ClassLoader.defineClass(ClassLoa

  • It will not download itunes 64 bit,

    How do I put itunes on my PC. It will not download 64 bit, but won't use any other either.