How to delete Message cache without bouncing web server?

When a message ( FND_NEW_MESSAGES) that is used in a OA Framework page is updated, it is not reflected in the OA web page right away.
Clearing cache through Functional Administrator does not help for messages.
How to delete message cache so that a OA Framework page shows updated message text? Is there any way other than bouncing web server?
Please let me know.
Thanks

Hi,
I think clearing cache through Functional Administrator should do.
You can try the below process...
Search for "_pages" (get in touch with DBA to know exact path) in $COMMON_TOP and remove using command "rm -Rf _pages". Then clear cache through Functional Administrator.
Let us know if this helps.
Regards,
Anand

Similar Messages

  • How to delete the cache from Presentation Services(Web UI)

    Hi,
    How to delete the cache from Presentation Services(Web UI) and from rpd also.

    Hi,
    For Presentation services cache refer : http://gerardnico.com/wiki/dat/obiee/presentation_service_cache
    For RPD Cache :
    Admin tool(rpd) > Manage > Cache > Action > Purge
    or check following links
    http://gerardnico.com/wiki/dat/obiee/event_table
    http://oraclebi.blog.com/automating-cache-purging-without-using-obiee-scheduler/
    cheers
    Aravind

  • How to Delete Messages in Spotlight Search History without Resetting or Syncing!!

    I know there are a lot of individuals dealing with this issue and if you are like me you spend hours searching "how to delete messages in spotlight search history" and it seems like every post either says to reset your phone or sync it! I'm sorry but I did not want to go through the hassle of resetting my phone but I did try to sync it which did nothing so I decided to just mess around with my settings and I believe to have found the answer to everyone's question!!
    This worked for me so I really hope this works for you! Just follow the steps below:
    1. Go to <settings><general><spotlight search><uncheck messages>
    2. Then turn your phone off and wait a minute! Turn your phone back on and off again 2 or 3 more times while waiting a minute in between turning it off!
    3. After you are done doing that go back to step 1 and <check messages>!
    4. Now go to your spotlight search and those messages should be deleted! If they are deleted I would recommend going back to step 1 and <uncheck messages> so you do not have the same problem with messages showing up again in the spotlight search!
    It works for Mail too! Just follow the same steps listed above but uncheck mail instead of messages or do both at the same time!!
    *Here is an extra tip which will remove deleted Mail Messages, just follow the steps below:
    1. Go to <settings><mail, contacts, calendars><your mail account> scroll down and click <advanced> Now click <remove> under the title Deleted Messages and you can choose to have your mail removed After One Day, After One Week, After One Month or Never.
    I hope this post was detailed enough and easy to understand!
    I really hope it works for you like it did for me!
    Good Luck!!!

    I tried this fix and it does not work.
    I have read that this is a problem for a long time - years. Me, personally, I do have emails and texts from the past that are private and were deleted, that I do not want my husband or daughter to read. Many people have this complaint and have had it a long time. Why does Apple not fix it?!?
    Another privacy issue is the iMessage default settings on new devices. We bought a new iPhone for my college-age daughter and received all of her text messages until we noticed it and told her. We did a temporary fix. Then I got a new iPhone and the same thing happened. I had to set up iCloud accts. for each of us so that we each have privacy that cannot be tampered with. We still share our original iTunes account. Why did that have to happen?!? 
    We have been Apple consumers (laptops, iPads, iPods, iPhones) for over ten years (? longer w/just desk top) w/ the same account. These breaches in privacy are upsetting!!  My point here is that these breaches are unacceptable!  The spotlight search issue appears to be unresolved.  FIX THIS APPLE! 

  • How to delete a page without deleting more than one

    how to delete a page without deleting more than one in pages

    Hi alldogsgotoheaven,
    Method 1.
    Menu > View > Show Thumbnails
    Click on a thumbnail.
    If it shows a yellow border around all the pages, they a part on a single section.
    Click in your document at the beginning of the page you want to delete, and Menu > Insert > Section Break.
    Insert another Section Break at the end of that page.
    The page is now isolated in its own section and you can delete its thumbnail.
    Regards,
    Ian.

  • Multiple gmail accounts in mail.app via IMAP - how to delete messages

    multiple gmail accounts in mail.app via IMAP - how to delete messages so that they are not stored on gmail and not in All Mail therefore either.
    i know that dragging messages to the GMail.Trash folder deletes it in Gmail, but doing that for multiple accounts is a hassle!
    anybody else struggle with this, solved it?

    i have still not figured out a solution to this. very painful - the fact that messages iwill not be using ever again and with large attachments, just sit there in all mails and slow down mail.app for me, fill up search results with stuff i don't want to see and fill up space on the HDD. the attachments as a result often are stored 3-4 times on the HDD!
    some geek here must have solved it - come on!

  • How to delete the deployed composite in weblogic server 11g

    Can someone tell me how to delete the deployed composite in weblogic server 11g ?I'm facing an issue where the weblogic server is getting started and immediately after sometime the server changes to "Force shutdown"..When i checked the logs,there is an error in one of the composite i deployed..So now i wanted to delete the deployed composite?Please help ....
    Thanks

    Hi
    1. Deleting a domain will not hold any references. But make sure that under your user_projects/applications also remove the folder that matches with your domain. Basically under user_projects folder you will see 2 folders named applications and domains. When you create a domain say mySoaDomain, it will crate a folder with the same name under applications folder also with few files like em.ear. If you do this, then you can crate a new soa domain and use the same old name.
    2. NOW comes the most important thing. If you create a new SOADomain, at one point, you had to give details for soainfra and mds schemas. If you give your current existing db details (that was used for your old deleted domain), then you may still have the issues. Because the soainfra db may still have the instances for your old process.
    3. If you really want to have a full clean soa domain, here is what you do:
    a) Run rcu and drop the existing schemas for soainfra and mds.
    b) Run rcu again and create above schemas again.
    c) Now create SOADomain using config wizard and refer above clean rcu db and you are all set.
    3. Under your domain root folder, just searh for files named with your workflow and you should see the .jar location.
    Thanks
    Ravi Jegga

  • How to delete number (00) in a SQL Server column ?

    how to delete number (00) in a SQL Server column ?
    example :
    column :        Births       before                     Births 
        after                          
                       199900                            
            1999
                       198200                               
         1982
                       200400                               
        2004
    help query

    You use REPLACE function to selectively replace text inside a string in SQL Server. The REPLACE function is easy to use and very handy with an UPDATE statement.
    SELECT Replace(births, '00', '')
    or
    update .....
    Also you can use STUFF()
    This function can be used for delete a certain length of the string and insert a new string in the deleted place.
    Select STUFF ('199900', 5, 2, '')
    --result 1900,1982,....
    Ahsan Kabir Please remember to click Mark as Answer and Vote as Helpful on posts that help you. This can be beneficial to other community members reading the thread. http://www.aktechforum.blogspot.com/

  • Reports without the web server

    Is is possible to use the Java API without a web server?  To create a new report and export it as a file directly - without viewing it via the web?
    From the API it seems like this is possible, but has anyone used it this way?
    I am fighting through data source connection issues while trying this with a straight JUnit class - and I want to make sure it can be done before spending more time wrestling with connections.

    <p>
    </p>
    <p>
    <a href="http://support.businessobjects.com/communityCS/FilesAndUpdates/crxi_r2_jrc_desktop_samples.zip.asp" target="_blank">http://support.businessobjects.com/communityCS/FilesAndUpdates/crxi_r2_jrc_desktop_samples.zip.asp</a>
    </p>
    <p>
    <br />
    Sincerely,
    </p>
    <p>
    Ted Ueda
    </p>

  • How to delete items in download queue on server side?

    how to delete items in download queue on server side?

    We are fellow users here on these user-to-user forums, you're not talking to iTunes Support nor Apple. If you've tried deleting them and they keep re-appearing in your downloads then you will need to try contacting iTunes Support to get them removed : http://www.apple.com/support/itunes/contact/

  • How to run java servlet without using Web.xml?

    How to run servlet without using Web.xml? From a book, I know that web.xml descriptor is optional, but the book doesn't tell us how to run java servelet without web.xm descriptor. So how to do that? Thanks a lot.

    How to run servlet without using Web.xml?But Tomcat now uses a web.xml for its global server-wide configuration.
    If you'd like to invoke a servlet with:
    http://host/servlet/ServletName
    you have to enable the invoker servlet.
    [from an HTML]
      <FORM METHOD="POST" ACTION="/servlet/HGrepSearchSJ">
    [from resin.conf of Resin Web Server 2.1.12]
      <!--
         - The "invoker" servlet invokes servlet classes from the URL.
         - /examples/basic/servlet/HelloServlet will start the HelloServlet
         - class.  In general, the invoker should only be used
         - for development, not on a deployment server, because it might
         - leave open security holes.
        -->
      <servlet-mapping url-pattern='/servlet/*' servlet-name='invoker'/>
    [from TOMCAT5.0.19/conf/web.xml, a global server-wide web.xml file]
      <!-- The "invoker" servlet, which executes anonymous servlet classes      -->
      <!-- that have not been defined in a web.xml file.  Traditionally, this   -->
      <!-- servlet is mapped to URL pattern "/servlet/*", but you can map it    -->
      <!-- to other patterns as well.  The extra path info portion of such a    -->
      <!-- request must be the fully qualified class name of a Java class that  -->
      <!-- implements Servlet (or extends HttpServlet), or the servlet name     -->
      <!-- of an existing servlet definition.     This servlet supports the     -->
      <!-- following initialization parameters (default values are in square    -->
      <!-- brackets):                                                           -->
      <!--                                                                      -->
      <!--   debug               Debugging detail level for messages logged     -->
      <!--                       by this servlet.  [0]                          -->
        <servlet>
            <servlet-name>invoker</servlet-name>
            <servlet-class>
              org.apache.catalina.servlets.InvokerServlet
            </servlet-class>
            <init-param>
                <param-name>debug</param-name>
                <param-value>0</param-value>
            </init-param>
            <load-on-startup>2</load-on-startup>
        </servlet>
    ---comment out below----------------------------------------------------------
        <!-- The mapping for the invoker servlet -->
    <!--
        <servlet-mapping>
            <servlet-name>invoker</servlet-name>
            <url-pattern>/servlet/*</url-pattern>
        </servlet-mapping>
    -->

  • Nokia N85 - How to delete messages?

    My Inbox has over 3000 messages. I want to delete say the first 2000. How do I do this without having to do them one by one?

    From inside your inbox, go to Options -> Mark/Unmark -> Mark all, and then hit the "cancel" ( or "C" ) button or Options -> Delete.
    Message Edited by deepestblue on 29-Oct-2009 05:45 PM
    Cheers,
    DeepestBlue
    5800 XpressMusic (Rock Stable) | N73 Music Edition (Never Say Die) | 1108 (Old and faithful)
    If you find any post useful, click on the Green "Kudos" Button on the left to say Thank You...

  • My iphone's memory is near capacity from photo albums sync'ed with my mac and I haven't found out how to delete select albums without wiping the iphone.  Any suggestions??

    my iphone's memory is near capacity from photo albums sync'ed with my mac and I haven't found out how to delete select albums to free up memory without wiping the iphone.  Any suggestions??

    You do the opposite of how you got them on your phone, you unsync the pics using iTunes.

  • HT4863 how to deleted message app on my iMac

    How to delete the message app on my imac ?

    You can't delete it, but if you don't want to use it for messages go to Messages>Preferences>Accounts and disable any active accounts (such as iCloud).

  • How to delete messages permanently from iPhone

    Hi
    How I can delete messages permanently from iPhone?

    in the sms threat there is a button called edit
    click that

  • How to delete messages on the Iphone 4s with operating software 8.1

    I can't figure out how to delete individual messages in a conversation on the Iphone 4s with operating software 8.1, it only seems to allow to delete the whole conversation. Any ideas?

    Hey AndreaKarima,
    Thanks for the question. The following resource outlines how to delete a specific message (as opposed to an entire conversation):
    Manage conversations - iPhone
    http://help.apple.com/iphone/8/#/iphf2d85437
    Delete a message. Touch and hold a message or attachment, tap More, select additional items if desired, then tap the delete button.
    Thanks,
    Matt M.

Maybe you are looking for

  • [Solved] E4200 - External hard drive not recognized

    My external hard drive, a 2TB WD Elements, does not appear in the storage list in the web utility of my E4200. The drive is formated as NTFS, single partition. It works fine if I connect it to a computer. If I connect a 4GB USB flash drive (FAT32) to

  • Unable to start Windows 7 after recovering from an image

    Dear community! In our office, we frequently use Windows 7 on our Mac computers. Windows 7 is installed on a Bootcamp partition. The HDD of one of our MacBooks crashed today and I recovered data from a previously made full image of that MacBook to an

  • Using a precompiled library on iPhone?

    I am trying to make use of a c++ package in an iPhone app. Anyone have experience with doing this? I don't even know where to start. I assume there are steps I need to follow in xcode for it to build the package along with my project and then properl

  • Add profit center to F-28

    Hi experts;      On T-code F-28 for customer payments, I need to let the Profit Center field to appear on the Customer line item to be able to report on Customers' Payments by Profit Center.      I know there is a t-code for that but I do not know it

  • Duplicating an existing font

    Hi, I'm trying to replicate these two fonts in a video I'm making.  Can someone tell me the font/color they are using?