Smp 3.0 sp03 Offline Caching Issue in Android App

After I apply GET request for a URL in Android app, I use mergeEntries to update cache for entries but I realized that cache.mergeEntries method just updates server cache, not a local cache.
Also, cache.readEntriesLocal method just gives me entries that are added by cache.addEntry(entry)
Is there any way to fill up local cache with all server entries after GET request ?

Hi Jitendra,
Thanks for your answer. However we are not using Kapsel in our Android app. We just try to develop native OData application that supports both online and offline mode. Thats why we follow these steps http://help.sap.com/saphelp_smp303sdk/helpdata/en/7c/0b0f9070061014a7b1c78f0f331130/content.htm?frameset=/en/7c/0af4ce70061014beb082150f67fcba/frameset.htm&current_toc=/en/7c/01cda6700610149b10c2f2a86d335b/plain.htm&node_id=29
How can local cache be filled up with all server entries because cache.readEntriesLocal method just returns entries which are added to local cache. I mean local cache needs a method like mergeEntries to update local cache entries as well after GET operation.
Here you can see part of our code. While entries_server param has 11 entries, entries local has just 1 entry. We want to put all 11 entries in local cache too.
IODataFeed feed = parser.parseODataFeed(responseString, "ZmbSGroupSet('GRUP_1')/Members", schema);
cache.mergeEntries(feed, Global.getAppEndPoint() + "ZmbSGroupSet('GRUP_1')/Members");
Entries_server = cache.readEntriesServer(Global.getAppEndPoint() + "ZmbSGroupSet('GRUP_1')/Members");
Entries_local = cache.readEntriesLocal("ZmbSGroupSet('GRUP_1')/Members", null);

Similar Messages

  • Problems with offline caching

    In a recent AIR 2.6 application I use the offline caching feature of LCDS 3.1
    The application itself uses a Java 6 / Spring 3 / JPA 1 / Hibernate stack (custom code, not using LC model driven development). For offline support, I started with the sample code from the LCDS 3.1 documentation which works ok in most cases - at least, if I fetch collections when online, then go to offline mode and fetch the same collections from the cache. This works fine and the SQLite data base gets created correctly.
    However, as soon as I start calling fill() on a DataService in offline mode on a collection that has *not* been fetched before or try to load an lazy association which has not been fetched before, the DataService "hangs" in terms of that the AsyncToken returned by that fill() method never fires a result or fault event.
    The last thing that happens in the client is
      [DEBUG] mx.data.SQLDBCache SQLDBCache - before select: SELECT id,data FROM [ORGANIZATION_FAVSOrganization]
    and that’s it. In this case I don’t get any further feedback and the DataService does not create a result or fault event, it does not even time out. Not sure if this is by design or not but as I’m listening for result/faults event to display/hide progress indicators gives me a lot of headaches on how to control them in offline mode.
    Any ideas?
    Thanks,
    Dirk

    Harry, thank you for your immed response.
    I think I might have posted my problem under a wrong thread. I am facing this issue for older version of LCDS which I downloaded couple of years back.. it says ES 2.6 and am still a bit confused about the version numbers.
    That being said, my problem is exactly the same. Everything works fine when LCDS server is reachable. However when offline, Fill() just does not call any of the handlers.
    In case if you can still help:
    Here is the DS definition:
         public class UsersDataService extends EventDispatcher implements IFITDataService
              private var mDS:DataServiceWrapper;
              private var mAllUsers:ArrayCollection;
              public function UsersDataService()
                   mDS = new DataServiceWrapper("UserInfo");
                   mDS.cacheID = "allusers"
                   mAllUsers = new ArrayCollection();
                   mDS.addEventListener(DataServiceFaultEvent.FAULT,OnFault);
                   mDS.autoConnect = true;
              public function getAllUsers(locationId:String):void
                   mDS.addEventListener(ResultEvent.RESULT, OnResult);
                   if(mDS.isCollectionManaged(mAllUsers))
                        mDS.refreshCollection(mAllUsers);
                   else
                        mDS.fill(mAllUsers, locationId);
              public function getUser(userName:String):void
                   mDS.addEventListener(ResultEvent.RESULT, OnResult);
                   mDS.getItem({ID:userName});
              public function OnResult(event:ResultEvent):void
                   mDS.removeEventListener(ResultEvent.RESULT, OnResult);
                   trace(event)
                   var dsEvent:DataServiceEvent = new DataServiceEvent(DataServiceEvent.Result)
                   dsEvent.user = event.result
                   dispatchEvent(dsEvent);
              public function OnFault(event:FaultEvent):void
                   trace(event)
              public function getData(locationId:String):void
                   getAllUsers(locationId);
              public function refresh():void
                   if(mDS.isCollectionManaged(mAllUsers))
                        mDS.addEventListener(ResultEvent.RESULT, OnResult);
                        mDS.refreshCollection(mAllUsers);
                   else
                        getAllUsers(FITSession.regLocationID);
              public function get users():ArrayCollection
                   return mAllUsers
              public function get connected():Boolean
                   return mDS.connected;
    I am also attaching the 'allusers' db
    Thanks much!

  • Windows 8 offline cache

    In Windows 7 you can run a fix it that will reinitialize the offline cache.  I will need to do that if for example i connect it to a new Server /domain.  Well how do you do this in Windows 8?  There is no Microsoft fix it for Windows 8. 
    The Windows 7 one doesn't work.  And you can't delete the files manually in the offline cache folder because of permissions issues.  I tried accessing the actual folder where they are stored CSC folder but getting access to the folder screws up offline
    files and they will no longer work, it will say syncing files but it's not syncing. I have looked and found no answer on this.
    Is this one of the stupid ways that Microsoft is telling us that you shouldn't use offline files anymore, like mapped drives.  You can still map drives, but your software programs won't see them, just the UNC paths. 
    Why don't they just take it away for crying out loud.

    Windows 8 Pro.  So you don't think it's stupid that you can't delete the offline cache
    In Windows XP you hold down ctrl + shift + delete
    In Windows 7 you can reinitialize the cache using the Fix-it Msi
    In Windows 8 you can..........
    I am sorry if wanting to remove Gigabytes of data that isn't relevant, data that is taking up cache space is making me unhappy.  And it's not like turning off offline cache space deletes the cache.  It doesn't.  And that Folder Redirection
    turns it on by default so good luck getting the space back if you didn't want it on.  You will have to hack the folder and then never be able to use it again.  When I spend hours trying to fix something that can't be fixed, that on Windows 7 would
    have been fixed in 1 min...........
     What am I supposed to say.
    It is not exactly a clean solution, but why don't you disconnect from the network, hit windows button, type manage offline files, open the sync center, view your offline files, delete all the files (it will only delete your local copies), change
    the offline storage limit to the lowest setting, disable offline files, then reboot.  It isn't as simple as resetting was but it will give you the space back.
    Richard

  • SAP WM 5.3 Support on SMP 3.0 SP03

    Hi,
    I have deployed SAP WM 5.3 on SMP 3.0 SP03 and restarted SMP server. Agentry application started successfully. But, when i connect through Agentry client , it is showing 'Invalid password'.
    Can you please confirm SAP WM 5.3 is supported in SMP 3.0 SP03?
    Regards,
    Anselm

    SAP will only support the Application on the patform it was release.
    WM 5.3 is only supported on Agentry 6
    WM 6.0 is only supported on SMP 2.3 (Agentry 6.1)
    WM 6.1 is only supported on SMP 3 (Agentry 7.0)
    While it not supported,  If you find an issue, support can help if it falls under one of the two:
    1.  The issue can be seen when using the Application on the Release platfrom version (for 5.3 it would be Agentry 6.)
    2.  The issue can be seen on all applications running on that platform.  (i.e if you have a different test application on SMP 3 that has the same issue).
    Stephen

  • SMP 3.0: Not able to upgrade to SMP 3.0 SP03 PL01 runtime from SMP 3.0 SP03

    Hi Experts,
    I am trying to upgrade SMP 3.0 SP 03 to SMP3.0 SP 03 PL01 patch. But when i launch the installer it says:
    Installer could not check for administrator privileges.
    You must have administrator privileges to install SAP Mobile Platform 3.0 SP03 PL1
    I am not able to proceed ahead. What could be the reason for this pop-up?
    Regards,
    JK
    P.S.: There is only one admin user on this machine and with the same user I have installed SMP 3.0 SP03 and mobile SDK already.
    P.S.S.: I have tried the same after logging with .\smpServiceUser user also but same warning.

    Finally i am able to resolve the issue. This issue was due to some files had been corrupted and were causing problem in upgrading to PL01 and uninstalling smp 3.0 SP03.
    Let me share what i have done:
    1. Stopped "SAP Mobile Platform Server" service from services.msc. Make sure there is no instance running for the same.
    2. Deleted installed SMP folder at "C:\SAP\MobilePlatform3"
         (if some folder is not getting deleted, rename it to some name and then try to delete it)
    3. Go to "regedit.exe" and look for "SAPSMP3Service" and delete its every instance/folder.
    4. Delete "SMP" folder from this location C:\Program Files\Common Files\InstallShield\Universal
    4. Reboot your machine and then try to install.
    Thanks Binh Tran for your time and providing this workaround.
    Regards
    JK

  • Directory Caching issue with Cisco Jabber client for Windows

    Hi ,
    I am facing cache issue with Cisco Jabber client for Windows. If I do any change related to modification or deletion of contacts in Active Directory/ Callmanager, it does not reflect in the Jabber. Because jabber takes the contacts from the locally stored cache file in the Windows system.
    Every time I have to remove the cache file to overcome this issue, practically it's not possible to do the same with all the Widows users. As, if any employee leaves the company and still I can see his contact appears in the "Cisco Jabber client". I have not seen this issue with Android/Apple iOS.
    Is there any automated way to remove the cache file? 
    Here is the detail of CUCM,Presence and Jabber.
    CUCM version: 9.1.x
    Presence          : 9.1.X
    Jabber              : 10.5 and 10.6

    Hello
    On our environment we had to install a dedicated Microsoft Certificate Authority "just for Cisco Jabber usage" to house the
    Network Device Enrollment Service.
    Our certificate for the CUPS were generated on this Certification Authority too.
    I discussed this certificate matter with my colleagues this afternoon and nobody seems to remember how these certificates were deployed into the
    Enterprise Trust store for the users.
    But I think they asked all 400 users to accept the 3 certificates by answering "yes" to the popup instead of using a script deployed by GPO...
    I wish you success with that deployment and really hope you have a technical partner that *Knows* this subject.
    Our partner left us alone with that unfortunately.
    Florent
    EDIT: If the "Certutil script method" works, please let me know. This could be useful in our own deployment.

  • Sql query cache issue

    I am trying to see the log file in Manage sessions for the sql query in Answers. I see that if we run the same report multiple times, the sql query is showing up only the first time. Second time if I run it is not showing up. If I do a brand new report with diff columns picked it is giving me the sql then. Where do I set this option to show the sql query everytime I run a report even if it is the same report run multiple times. Is this caching issue?

    It shouldn't.... Have you unchecked the "Cache" on the physical layer for this table? If you go onto the Advanced tab, is the option "Bypass the Oracle BI cache" checked?

  • WEB u2013 I cache issue.

    We have BO XI 3.1 PF 1.7 and SAP BW 7.0 SP 18
    We are facing strong caching issue  with WEB- I XI 3.1 , what we observed is it cache previously fetched data and does not recognize data been updated in BW Infoprovider ( in our case we have BEx query on Direct update DSO )
    I have tried u2013
    1.     I made caching inactive for that BEx query in BW side.
    2.     I have check caching setting in BO , they are not helping me much to in active cache in BO
    On executing BEx query in BW, I have checked RSRT cash monitor; the query result is not getting cached, and get up-to-date data. Query works perfectly file.
    Also observed Events in RSDDSTAT_OLAP table, I could find very well Event 9000. This shows me that BEx query hits database and bring data back.
    When I execute BO report on the top of same BEx query, I do not get up to date data , it shows me previously fetched data and does not recognize data been updated in BW.
    Now question is where this data being getting cashed , and how to make that inactive to make sure I do get up to date data in WEB-I .
    Many thanks for your kind response.
    Regards
    Ashutosh D

    HI Ashutosh,
    This would be stored in the C:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\Data\servername_6400\storage folder.  Try renaming this folder and then testing again.  If this allows for updated records, then that proves that the Webi Processing Server is getting the cached data from this directory.
    There are also a few settings you can try to disable in the Webi Processing Server settings within the CMC:
    Disable cache Sharing (Checked)
    Enable Real-Time Caching (Unchecked)
    Enable Document Cache (Unchecked)
    Cache Timeout (1 min) - sets the cache to expire after 1 min.
    Try playing with these settings and see if that resolves the issue. 
    Thanks
    Jb

  • SharedObject and Caching issues

    Background:
         I am working on a project where I am using sharedObject to store data for a favorites list. The project contains 2 swfs, one in AS 3.0 (using Flex 4.5) and the other an AS 2.0 flash 8 project.  Basically the AS 2.0 project read and writes data to the shared object and the AS 3.0 project just reads the data.
    Setup:
         OS: Windows 7
         Flash Player: 10.3     Browsers: IE 9, IE 8, Chrome 14, and some misc Firefox testing -- Chrome seems to be working the best.  
    Problems:
         First off it has been extremely hard to get consistent results across different computers so if anyone has a suggestion as to why that would be (other than different browsers, different flash player versions, different flash player settings/global settings and different OS versions) because I have been making sure all that stuff is consistent across devices for testing purposes.
         1. It appears that some computers/browers won't store the shared object at all even though everything to allow it is turned on.
         2. Some computers/browsers will store it, but won't update until I refresh the page
    General Questions:
         1. Is the storage of sharedObject object data in a .sol file configured the same in both AS 2.0 and AS 3.0 and if so, would this be a means of communicating between two swfs running off the same domain?
         2. Is it possible to have a browser cache sharedObject data(the .sol file)?
          3. I have noticed as new flash player releases are coming out(especially recently i.e. 10.3) I have had to make a lot of repairs to the actionscipt 2 stuff.  Is actionscript 2 support slowly being phased out? Is anyone else experiencing the same problems? 
    Possible Solutions/Findings:
         I am starting to believe that it has something to do with browser caching since Chrome seems to perform the best and Chrome has performed best when it comes to browser caching issues.
    ** code is available if needed but since it was working before I don't think it is relevant.

    Hello,
    #1
    are you using explicit call to flush method immediately afer you're writing data to reference to SharedObject?
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/SharedObject. html#flush()
    If not you could have different data read by different browsers sessions run at the same time (e.g. IE/FireFox both hosting your test Flash movies) - as data are flushed only when given Flash runtime session is to be terminated (e.g. movie is to be unloaded) and in other cases as outlined in documentation.
    #2
    the SharedObject is reference to binary file stored on local machine by Flash runtime (Air runtime too). It has nothing similar to web-fetched content to be cached:
    http://en.wikipedia.org/wiki/Local_Shared_Object
    regards,
    Peter

  • SecurityDomain and Caching Issues

    I am running into some caching issues when setting the securityDomain of an imported SWF to match the calling SWF file and I was curious if anyone had any ideas on how to get around this issue.
    Here is the scenario:
    A.swf is launched on Domain A, it sends a Loader request for B.swf on Domain B.
    B.swf will be updated frequently so caching is disabled, A.swf however can be cached.
    B.swf has some ExternalInterface.calls so it requires being in the same securityDomain as A.swf otherwise it will receive a Security Error #2006.
    The code I am using for this is fairly straightforward:
    ActionScript Code:
    var request:URLRequest = new URLRequest("http://domainB/B.swf");
    var loader:Loader = new Loader();
    var context:LoaderContext = new LoaderContext();
    context.securityDomain = SecurityDomain.currentDomain;
    loader.load(request, context);
    I believe B.swf is inheriting the caching setting of A.swf because it is residing in the same securityDomain. If I make a small update to B.swf and refresh A.swf in a browser it will not load the B.swf updates until I clear cache.
    If I get rid of the securityDomain context on the load it will always update B.swf with the most current version, but I run into security issues with ExternalInterface.
    ActionScript Code:
    var request:URLRequest = new URLRequest("http://domainB/B.swf");
    var loader:Loader = new Loader();
    loader.load(request);
    I have tried appending random strings to the end of the URLRequest while using the securityDomain context but it will always used a cached version of B.swf. I have also tried loading B.swf into a ByteArray then using loadBytes on a Loader but that didn't work either.
    Any ideas are appreciated!

    Hello,
    #1
    are you using explicit call to flush method immediately afer you're writing data to reference to SharedObject?
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/SharedObject. html#flush()
    If not you could have different data read by different browsers sessions run at the same time (e.g. IE/FireFox both hosting your test Flash movies) - as data are flushed only when given Flash runtime session is to be terminated (e.g. movie is to be unloaded) and in other cases as outlined in documentation.
    #2
    the SharedObject is reference to binary file stored on local machine by Flash runtime (Air runtime too). It has nothing similar to web-fetched content to be cached:
    http://en.wikipedia.org/wiki/Local_Shared_Object
    regards,
    Peter

  • Caching issue in jsp or servlet

    I am not sure where I should post the issue that I have. I have a j2ee web app (struts) running on Apache Web Server + Glassfish + MySQL. My server has multi core.
    The problem is that whenever I insert a new data or delete it from a table, I don't see the change right away. Sometimes, I see the change. Sometimes I don't. It's very inconsistent.
    If the old data is cached in JSP, I shouldn't see the change in log file, but I do see it even in the log file.
    For example, I have a page managing user's folders. when I delete a certain folder name from jsp page, this folder is deleted from a db table. but when I refresh the page, I still see the folder name that is not supposed to show up. or when I go to a different page and come back to this page, I don't see it. The behavior is very inconsistent.
    If it's a browser caching issue, I don't think that I should see it in the log file, but I still see the folder name(which is supposed to be deleted) in the log file.
    I am including these lines in all included jsp pages.
    response.setHeader("Cache-Control","no-cache");
    response.setHeader("Pragma","no-cache");
    response.setDateHeader ("Expires", -1);
    does anybody have any opinion about this?
    It's hard to debug it and describe the behavior.
    But it would be very helpful if someone who had a same experience about this explains about this and tells me how to fix it.
    Thanks.

    caesarkim1 wrote:
    I am including these lines in all included jsp pages.
    response.setHeader("Cache-Control","no-cache");
    response.setHeader("Pragma","no-cache");
    response.setDateHeader ("Expires", -1); Instead of including these lines in all jsp's, make a filter and add these lines to it.

  • Acrobat Connect Pro LMS 7.5 server cache issue - displaying old content

    Our Adobe Acrobat Connect Pro server is showing old Captivate-created content from about 4-6 weeks ago.
    I loaded 35+ sets of Captivate 3 (SCORM 1.2, HTML, zipped) content onto our Acrobat Connect Pro LMS about 6 weeks ago.
    I converted all training content from Captivate 3.0.1 to 4.0.1, 4 weeks ago by opening each file in Captivate 4 and following prompts to "Save As" new files with different file names.
    I reloaded all content 4 weeks ago, and again 2 weeks ago.
    I reloaded about half of all content again last week.
    End User Acceptance testing performed this week showed that most of the courses are showing old content, ranging from 2-6 weeks old
    Attempted fixes and workarounds:
    Deleting content entirely and reloaded from scratch - this will not work long term, as we lose usage data each time we reload completely new files.
    Contacted Adobe, provided times to track incidents of the issue.  We reached Tier 2 - who told us it was our problem and that everything appeared to be working fine from their side.
    New workaround - load new content and reattach course to new content.  This presents the same long term issue as the first workaround, but enables us to retain older versions of content in the system, should we need to revert or report on it.
    Gaining server side access is a bit challenging due to the hosting situation we have, so I am looking (ideally) for a solution that can be performed from the Administrator/Author Frontend.  However, I want to learn the real cause of the problem, wherever it might reside, so that it can be properly corrected and avoided in the future.  I am calling this a server cache issue, as it seems the server has somewhere retained unwanted old versions of content, preventing current content from being displayed to end users.  Viewing content as an end user = see old content.  Viewing content from the Content area (Author view) shows the current files, so I know they are on the server and are loading correctly, up to a point.
    I am preparing all content for another round of loading/reloading due to other issues and updates, so republishing and reloading all 35+ files into the LMS is unavoidable at this point.
    This issue is keeping our LMS from launching to several thousand users across the country, so any suggestions or helpful tips are much appreciated.

    I think I have isolated the source of this problem. It's the Pitstop Professional 9 plug in. I un-installed this, and everything opens quicker than greased lightning. I re-installed it and it's back to slowsville.
    Unfortunately Pitstop is essential to my workflow.
    Until recently I did my pre-press on a Mac G5 with Acrobat Pro 7 and Pitstop 6.5. I never had this problem with slow file opening. But it seems that the delays would occur when I used the plug-in with large complex files.. So it would open files as fast as you'd expect from an elderly machine. But starting to use Pitstop would result in a prolonged period of staring at a spinning beachball.
    I wonder is there any way to stop the Pitstop plug-in from initializing until it is used? So the plug-in stays inert until you select the tool from from the menus.

  • IE Caching Issue while closing and opening a UI thrice or more

    Hi Everybody..
    Greetings of the day..
    I am working on a web application (Can not disclose the name) where at certain level a word document generated contains a customized toolbar.
    It contains one print option, when clicked opens a UI which shows default printer available (Its different from our normal printing).
    When I repeat opening and then closing of this UI thrice or more times, the entire application gets hanged and I have
    to terminate it by killing the associated process from task manager.
    When this issue was analysed our by onsite team they arrived at a conclusion saying that its an IE caching issue.
    But upto my knowledge I know that any application which is .SSL secured, by default IE never does cache control.
    What could be the solution if application is not .SSL secured or if it is.
    Kindly help asap.
    Thanks.

    Hi all
    Did anyone ever manage to fix this? I'm having this issue across multiple iPads. Even if i completely reset the iPad (erasing all content and settings) it does it again when restored.
    I've just got an iPad Air and that does it too. I even created a new Apple ID to see if that would work (trying to avoid any kind of caching aross iCloud, etc) and it does it straight away in those books. It's massivley frsustrating.
    I have noticed it only seems to do it for iBooks formatted books, not ePubs.
    Anyone have a resolution - it's quite embarrassing when you're doing a presentation about book features and the audience assumes youve only the wrong book each time. More annoying when clsoing the book and the wrong cover appears again, but also takes you to that books collection page, rather than the one you were in.

  • Possible session caching issue in SSRS2014

    Using custom FormsAuth, User A can sign into our own main asp.net mvc app (WIF cookie), then SSRS (FormsAuth cookie) and all is well.  Here is where things go bad.  User A signs out of our main application (WIF cookie deleted) then back in into
    our main application as User B then back into SSRS.  SSRS report that displays User!UserID show UserA instead of current User B.  Its like there is either a session or cookie caching issue going on but not for sure.  
    1. What is the proper way to sign out of SSRS and prevent session caching?
    2. Do I need to worry about making my SSRS logon page non-cacheable?  If so, what is the recommended way of doing this?
    thanks
    scott

    Hi scott_m,
    According to your description, you used custom FormsAuthentication in Reporting Services, after user A sign out the application an sign in as user B, SSRS built-in user is shows user A instead of user B.
    Based on my search, once we configured SSRS to use Custom (Forms) authentication by deploying a custom security extension, we can logon to MS Report Manager (MSRM) using credentials of our custom security framework via a logon web page. But there is no way
    to logout or to expire the authentication cookie, so we need to close the browser manually. As a workaround, we can add a logout button to the Report Manager which is using Forms Authentication, then use code to clear the cookie and redirect to home page.
    In addition, if you extend Reporting Services to use Forms Authentication, it’s better to use Secure Sockets Layer (SSL) for all communications with the report server to prevent malicious users from gaining access to another user's cookie. SSL enables clients
    and a report server to authenticate each other and to ensure that no other computers can read the contents of communications between the two computers. All data sent from a client through an SSL connection is encrypted so that malicious users cannot intercept
    passwords or data sent to a report server.
    Here is a relevant thread you can reference:
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/5e33949d-7757-45d1-9c43-6dc3911c3ced/how-do-you-logout-of-report-manager
    For more information about Forms Authentication, please refer to the following document:
    https://technet.microsoft.com/en-us/library/aa902691%28v=sql.80%29.aspx?f=255&MSPPError=-2147217396
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu
    If you have any feedback on our support, please click
    here.
    Wendy Fu
    TechNet Community Support

  • Parallel Caching Issue

    We have found issues with the parallel loading of the OLAP cache using reporting agent jobs where entries are not populated correctly.We rely on the OLAP cache for delivering the very high levels of concurrency during the peak times.
    Once the main batch data loading has been completed we run some background reporting agent jobs to pre-populate the OLAP cach.Each job contains a web application template that holds 1 or more queries and will process 1500+ stores for each run.
    We have different reporting agent jobs for the different web application templates, but we have discovered that if we run these jobs in parallel we do not get the full benefit of the OLAP cache compared to if we run them sequentially.
    If we run the jobs in parallel, when we look in RSRCACHE for these queries it would appear to have populated correctly, but when we check RSDDSTATS for the query performance the following day, we can see that a large number of the
    stores still hit the database and did not benefit from the cache entries. Sometime this can be as much as 60% failure to hit the cache.
    If we run the same job sequentially, then check RSDDSTATS the following
    day, we can see 100% success rate with every store hitting the OLAP cache.
    Is anyone able to advise how we can resolve this parallel caching issue?

    Hi Ganesh,
    I am currently having similar trouble with TBB1 where I receive error message below:
    TRL intialization for MM, FX, Derivatives, co. code WTRD, valn area 003 is not yet complete
    Message no. TPM_TRL052
    Are you familiar with this issue? any help would be greatly appreciated! i hope that you can help..

Maybe you are looking for

  • Dunning letters edition

    hi gurus, is it possible to edit manually in system before going to print the dunning letters? pl anyone advice ? my client wants to edit the dunning in the preview? points will be allotted if any one answers immediately. regds, raman

  • After 1.2.3 update, Ipod freezes playing songs and is SLOW

    Hello, I updated my 5th Generation to 1.2.3 with Itunes at the latest level. Now the Ipod plays for awhile and then pauses for 30 seconds and then continues playing the song. It also takes about a minute for a playlist to begin playing. All worked we

  • Songs and album covers don't match up?

    On my 4s, when I enabled Icloud and downloaded my music library something got out of sync. Now, most songs don't match up to the album cover etc. displayed on my screen. I have tried deleting and downloading again and the problem remains. Any suggest

  • Movie is loading twice

    Structure: * one main movie ** one swf loaded into that *** one mc in that I animate the mc using the timeline (movement up) and on the first frame of the same mc I generate up an interface inside it. This all works, but: When the mc has generated th

  • I have alot of apps i don't want to delete, and i make videos all the time,but how can i manage my storage wothout paying

    I need help, i need to manage my storage without paying or deleting app Do you guys know any video apps that don't take up a lot a storage