PTM5_CACHE - any documentation on how these PTM5 tables work?

Is there any documentation anywhere that describes how the PTM5 tables work? Specifically PTM5_CACHE & PTM5_SCHEDULE.
I've learned that PTM5_CACHE is the cache for disco portlets and when I look in there I see a bunch of errors to a recently changed portlet. I created a new worksheet in an existing workbook and changed the existing portlet to use the new worksheet, then deleted the original worksheet from the workbook. All seems well from the portal side - users seem to have the new worksheet in their portlet and seems to be refreshing ok.
But what's happening is I see a lot of errors in the PTM5_CACHE table referencing the old worksheet that has been deleted and the errors are hourly for many users, but not all users.Yet those users are not experiencing issues with the portlet in question. It's almost as if there's now some phantom refreshes trying to happen for a worksheet that doesn't exist anymore.
How can I make these phantom refreshes go away?
I'm hoping if I understood the PTM5 tables better, I might be able to fix the situation to not waste cpu cycles.

Hi,
i've got the same question..Did you find anything? It looks like it doesn't delete the entries from the cache when you delete a disc. portlet..
Osman

Similar Messages

  • Deleted itouch files using ifile from cydia. i restarted it but now it shows the apple logo and that is it... it doesnt respond. any ideas of how to make it work?

    I restarted my itouch using the home button and top button...it restarted but it only shows the apple logo and that is it.  I deleted all files from ifile and then it froze... any ideas of how to make it work again?

    Discussions of hacked ipods is not permitted here.

  • TS1814 I have an iPhone 3GS and was trying to restore it. Now it won't let me activate my phone and my itunes tells me I have no SIM card inserted when I do. Any ideas on how to get it working again?? I'm dying without it!

    I have an iPhone 3GS and was trying to restore it...
    Now it won't let me activate my phone and my itunes tells me I have no SIM card inserted when I do.
    Any ideas on how to get it working again?

    This means that the phone was previously hacked to carrier unlock (unauthorized unlock), and when you restored, the hack was removed and it became re-locked to its original carrier.  It will now accept a SIM card only from that carrier.
    Your only option is to contact the carrier it's locked to and enquire if they will provide authorized unlocking.  Not all carriers will unlock and those that do usually have requirements and qualifications - i.e. you have to be a current or former customer in good standing.

  • Ive just upgraded to Mountain lion, I was using Safari and tried to use iCloud tabs. When I open it up there are no tabs there, anyone have any ideas on how to get it working?

    Ive just upgraded to Mountain lion, I was using Safari and tried to use iCloud tabs. When I open it up there are no tabs there, anyone have any ideas on how to get it working?

    Can you check system update? I think I did a system Update 1st, a day before installing OSX Lion and there is a Safari update. If not try logging in iCloud.

  • Hi! I'm using a Macbook Pro, and my photo booth stopped working! I just updated my software yesterday, but it still doesn't work!! The green light does go on though, any suggestions on how to make it work?

    Hi! I'm using a Macbook Pro, and my photo booth stopped working! I just updated my software yesterday, but it still doesn't work!! The green light does go on though, any suggestions on how to make it work?

    In what way is it not working? 
    Please describe in detail all you have attempted to do in order to resolve the issue. 

  • When i charge my ipod it works but as soon as i take it out the charger it doesnt work any suggestion on how to make it work?

    When i charge my ipod it workd but as soon as i take it out the charger it doesnt work any suggestion on how to make it work?

    It may need a new battery, take it to an Apple Store and check.

  • TS3276 i have a macbook pro and need to send a password protected document to a pc based computer and it shows up at the other end as corrupted and they can't open it- any suggestions on how to make it work?

    i have a macbook pro and need to send a password protected document to a pc based computer and it shows up at the other end as corrupted and they can't open it- any suggestions on how to make it work?

    It was tricky sorting out the actual questions in your post. I think the other poster has one question in hand, here's the other:
    Post by Turingtest2: HowTo: Grouping Tracks Into Albums - http://discussions.apple.com/message.jspa?messageID=9910895

  • Hi My Iphone 4 keeps on turning off with no reason and there is no way of turning it on. any advice of how to get it working?

    Hi My Iphone 4 keeps on turning off with no reason and there is no way of turning it on. any advice of how to get it working?

    I guess but that was what I was on earlier but it wasn't of much help.
    I need to chat with an apple person but don't know how if I don't have a phone accessible.
    Is there a way to connect thru a laptop or something?

  • Is there any documentation on how to use JDBC in ALBPM?

    I'm trying to connect to a DB using DriverManager class.
    1) I've defined an externalResource of type SQL Database.
    2) When I execute the following code:
    //externalResourceURL is the URL of the SQL Database external resource created in 1), same for user and password
    con as java.sql.Connection = DriverManager.getConnection(arg1=externalResourceURL, arg2=user, arg3=password)
    3) I get the following error: This driver is locked for use with embedded applications.
    Is there any tutorial or documentation on how to use JDBC in ALBPM?
    Thanks in advance

    I don't know of any documentation off hand... but what are you trying to do? I haven't needed to to make a connection using the DriverClass....
    If you aren't using dynamicSQL... you can just catalog the database, and make direct sql calls (not recommended)... but if you catalog it, then just an INSERT command works... or UPDATE... etc
    logMessage "Starting insert."
    INSERT INTO MYTABLE(id, name) VALUES ("2", "kevin");
    logMessage "Finished insert."Check out the studio help under SQL Keywords for more info on that...
    HTH
    -Kevin

  • Is there any documentation on how to nest IF or IFThen in Fin Reports

    I'm trying to nest now but can't find any documentation on the proper syntax.
    Here is my logic. I'm in column D in my grid.
    IF C < 0 and B = 0 then -1
    ELSEIF C = 0 then 0
    ELSEIF B < 0 then ( C / B ) * -1
    ELSE C / B
    Can you help? I'm stumped and on deadline.

    Thanks... Got me on my way: Here's what final solution was
    IFTHEN ( ( ( [ A ] + 0 < 0 and [ B ] + 0 < 0 ) and ( [ B ] < [ A ] ) ) , EVAL ( ( ( [ A ] - [ B ] ) + 0 ) * - 1 ), IFTHEN ( ( ( [ A ] + 0 < 0 and [ B ] + 0 < 0 ) and ( [ A ] < [ B ] ) ) , EVAL ( ( ( [ A ] - [ B ] ) + 0 ) * - 1 ), IFTHEN ( ( ( [ A ] + 0 = 0 and [ B ] + 0 > 0 ) or ( [ A ] + 0 > 0 and [ B ] + 0 = 0 ) ) , EVAL ( ( [ B ] - [ A ] ) + 0 ) , EVAL ( ( [ B ] - [ A ] ) + 0 ) ) ) )
    Had to put cheasy + 0 in there to force a 0. I couldn't find a way for it to treat #Missing as a zero. Anyways it worked and that's what matters I guess :)
    Appreciate the help.

  • Microsoft silverlight plugin does not work in my iMac. Any suggestion on how to make it work?

    I occasionally attend webinars and in order to view and listen the site I use requires silverlight plugin. I used it in the past without any issues. Now even after I updated it yo the latest version it does not work. Is there a known issue of incompatibility with OSX mavericks? Does anyone have an idea on what the problem could be? I have an intel iMac and I use Safari. Thank you.

    Simple, the best option is to redownload and install the latest version. This will overwrite the old files and fix the possible corrupt ones. If you are experiencing any problems on certain sites follow this next step:
    Goto: Safari > Preferences > Extensions  and make sure that extensions are enabled and that particular extension (silverlight) is enabled.
    Let me know how these ideas work out for you.
    Hope this helped.

  • IOS 6 updated on my 3GS phone. The maps works well but does not give spoken turn by turn directions. Any ideas on how to make this work?

    Installed iOS6 on my 3GS phone. The maps app works well, but does not give spoken turn by turn directions.
    Any ideas on how to fix this?

    Go to http://www.apple.com/ios/maps/ and look at the bottom: Turn-by-turn navigation is available only on iPhone 4S, iPhone 5, and iPad 2 or later with cellular data capability. Flyover is available only on iPhone 4S, iPhone 5, iPad 2 or later, and iPod touch (5th generation). Cellular data charges may apply.
    You can always use the WAZE app like I do.

  • EssBeginDataload, EssEndDataload, EssSendString-How these APIs are working?

    Hi,
    I want to know about internal working pattern of EssBeginDataload, EssEndDataload, EssSendString APIs with respect to loading data on to Essbase Server database.
    I have an application which loads data from flat file to Essbase serer's database in which I am using these API to load data. Presently I am creating options file on client side and copying it on server manually. I want to change this flow. I do not want to use option file now and want to work with these Essbase APIs only. In such a case how EssBeginDataload will upload data from a flat file to Essbase server ? Will it create a temp file on server, and after upload, will EssEndDataload delete that temp file ? What will be role of EssSendString in this case ?
    Thanks a lot in advance,
    Prakash

    You'd probably still consider this a "global" change, but must application servers have a vendor-specific configuration file that allows you to tell it what character encoding to assume the request parameters are encoded as. You might want to check your documentation or example OAS config files for "charset" or something similar. For example, Weblogic has an "input-charset" setting.
    This will affect the decoding of all incoming requests. However, since ASCII is a subset of UTF-8, you might not find that this is as big a problem as it seems. And you might be able to specify some kind of servlet path to which to limit the character set decoding.
    T

  • Using Mavericks - Keychain does not pass the passwords to my iPad?  Any ideas on how to make it work?

    Does anyone kbnow how to have Keychain use passwords in my iOS device (iPad)?  I find my self writing down passowrds now which completely defeats the concept behind Keychain and iCloud, right?  Thanks for any help.

    Make sure Keychain is switched ON in Settings > iCloud
    Try the instructions here >  How to automatically generate a password with iCloud Keychain and iOS 7

  • I need to sync my laptop and iphone to my bosses laptop and iphone.  Can two apple users share the same icloud?  If not, any suggestions on how to make this work?  We need to be able to pull files, etc

    I need to sync my laptop and iphone with my bosses laptop and iphone.  We need to be able to have access to the same files. 
    Any suggestions?

    Yes you can both use the same iCloud account.

Maybe you are looking for

  • How do I fix scrolling in Lion?

    I've read in various places that you can revert scrolling in Lion back to how it was Snow leopard via an option under preferences under either "mouse" or "trackpad," but unfortunately I don't have this option on my system. I have an early '08 Macbook

  • My iPad Air  is lagging after ios 7.1 update

    I noticed that the animations of opening and closing apps take longer than they did previously before update. I also seem to have the same issue with my iPhone 5, too! I thought the whole point of the update was to speed up my devices with the newer

  • Updated Firefox won't save my preferences; reverts to original settings.

    A few days ago, Firefox updated itself to the 18.0.1 version. Now, each time Firefox updates itself, I tend to lose some of my preferences, those being: opening new tabs as a blank page, tabs being on the bottom, and showing my windows and tabs from

  • Form PDF Save/Export so no longer a form?

    I am working to create a layout, exported to a PDF, form fields added that will be sent to a company's department as like a master document. They would then take that, fill in the info and either save it out or export it so they can email it to anoth

  • Getting rid of place holder image in basic slideshow??

    hey so i have placed a basic slideshow widget and placed my images into it but when it plays through in preview it is still including and showing the placeholder image of the black and white flower. is there a way i can remove this? thanks for any an