Query for clearing the caches automatically in the portal?

Hi There,
We are using EP Portal 6,currently we are having Oracle Archive logs issue which slows down the system.Now we are clearing the caches in the System Landscape-> Universal Worklist & Workflow->Universal Worklist Administration->Universal Worklist u2013Cache Admin by Manually.
*Is there any steps to do it automatically which helps a lot?
Thanks,
Krishna.

Hi,
when you refresh the UWL it will clears the cache explicitly, Default time for UWl refresh is 5 min, You can automatically refresh the cache by changing the properties of UWL ivew (in Portal content) -
sap_uwl_viewname  : DefaultView
useNavigationId   : com.sap.pct.erp.mss.Main
Check this wiki page for more info on cache interval change and more:
http://wiki.sdn.sap.com/wiki/display/BPX/CompletedtasksdisappearonlyafterarefreshofUWL+cache
all these work in EP 7 but not sure with EP 6.
regards,
Mahesh

Similar Messages

  • In perfdatasource querying for global snapshot failed with error 'the size limit for this '

    I received  scom alerts from two win 2k8 r2 servers , hosting exchange 2010 mailbox roles , the alerts came almost in same time from both servers ,
    can I ignore those alerts
    or can someone give a me a clue how can I troubleshoot those alert , please any help would be appreciated
    In PerfDataSource, querying for Global Snapshot failed with error 'The size limit for this '
    from Ops-mgmt logs 
    Log Name:      Operations Manager
    Source:        Health Service Modules
    Date:          
    Event ID:      10104
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:       server 1
    Description:
    In PerfDataSource, querying for Global Snapshot failed with error 'The size limit for this ' 
    One or more workflows were affected by this.  
    Workflow name: Microsoft.Windows.Server.2008.OperatingSystem.PercentMemoryUsed.Collection 
    Instance name: Microsoft Windows Server 2008 R2 Enterprise  
    Log Name:      Operations Manager
    Source:        Health Service Modules
    Date:          
    Event ID:      10104
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:       server 1
    Description:
    In PerfDataSource, querying for Global Snapshot failed with error 'The size limit for this ' 
    One or more workflows were affected by this.  
    Workflow name: Microsoft.Windows.Server.2008.LogicalDisk.PercentIdle.Collection 
    Instance name:  " edb file path "
    Log Name:      Operations Manager
    Source:        Health Service Modules
    Date:          
    Event ID:      10104
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:       server 2 
    Description:
    In PerfDataSource, querying for Global Snapshot failed with error 'The size limit for this ' 
    One or more workflows were affected by this.  
    Workflow name: Microsoft.Windows.Server.2008.NetworkAdapter.CurrentBandwidth.Collection 
    Log Name:      Operations Manager
    Source:        Health Service Modules
    Date:          
    Event ID:      10104
    Task Category: None
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:   server 2   
    Description:
    In PerfDataSource, querying for Global Snapshot failed with error 'The size limit for this ' 
    One or more workflows were affected by this.  
    Workflow name: Microsoft.ForefrontProtection.FPE.Server.PerformanceCollection.RealtimeScanMessageRate

    Hi Blake , 
    Thanks for your reply , I appreciate your help  ,
    I didn't put the alert from scom console because they were same as the events ( same source )
    Health Service Modules, I didn't want to spam
    more :-)
    also the two servers encountered the issue were mailbox servers and part of same DAG , it worth mention the alert were resolved
    by Exchange 2010 Correlation Engine service 
    http://blogs.technet.com/b/kevinholman/archive/2010/10/15/clustering-the-exchange-2010-correlation-engine-service.aspx
    http://support.microsoft.com/kb/2592561
    also the Opsmgmt logs are full of waring and error event like 2023 , 21402 ,  21403 , 1207 !!
    Log Name:      Operations Manager
    Source:        HealthService
    Date:          
    Event ID:      2023
    Task Category: Health Service
    Level:         Warning
    Keywords:      Classic
    User:          N/A
    Computer:      server 1
    Description:
    The health service has removed some items from the send queue for management group "SCOM" since it exceeded the maximum allowed size of 15 megabytes.
    1- alert from console >>
    In PerfDataSource, querying for Global Snapshot failed with error 'The size limit for this '
    One or more workflows were affected by this.
    Workflow name: Microsoft.Windows.Server.2008.OperatingSystem.PercentMemoryUsed.Collection
    Instance name: Microsoft Windows Server 2008 R2 Enterprise 
    EventSourceName: Health Service Modules

  • Query for FormSubmit data by ID via the SOAP API

    When I submit a form entry via the SOAP API request 'Create' it get an ID as well as the Form Type data in return:
    <CreateResponse xmlns="https://secure.eloqua.com/API/1.2">
      <CreateResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
           <CreateResult>
                <EntityType>
                     <ID>21</ID>
                     <Name>aherghaewForm</Name>
                     <Type>Form</Type>
                </EntityType>
                <Errors/>
                <ID>3</ID>
           </CreateResult>
      </CreateResult>
    </CreateResponse>
    However, I can't seem to query for that ID. When using the request 'Query'
    <ns:Query>
      <ns:eloquaType>
           <ns:ID>21</ns:ID>
           <ns:Type>Form</ns:Type>
      </ns:eloquaType>
      <ns:searchQuery>ID='3'</ns:searchQuery>
      <ns:pageNumber>1</ns:pageNumber>
      <ns:pageSize>20</ns:pageSize>
    </ns:Query>
    I receive the following Error:
    The search query you provided is invalid: 'id' is invalid.
    As the field 'ID' is not part of the FieldValueCollection, this outcome is not unexpected, but unfortunate, as it would greatly simplify querying for data that was just submitted. Querying for a field that is part of the FieldValueCollection delivers correct results.
    Is there a way to do just that, or do i have to follow another approach to retrieve FormSubmit data?
    Thanks,
    Felix

    OK. I see column X logic now:
    SQL> select  id,
      2          name,
      3          case when instr(sys_connect_by_path(id,',') || ',',',4,') > 0 then 'X' else 'Y' end x
      4    from  worker
      5    start with id in (
      6                      select  id
      7                        from  worker
      8                        where boss_id is null
      9                        start with id = 4
    10                        connect by prior boss_id = id
    11                      )
    12    connect by prior id = boss_id
    13  /
            ID NAME                             X
             1 Mennan                           Y
             2 Ahmet                            Y
             3 Akin                             Y
             4 Ayse                             X
             5 Aylin                            X
             6 Selim                            Y
    6 rows selected.
    SQL>SY.

  • HT201320 I have two email accounts. However, the iPad automatically uses the account that I only want to use for business. How can I change the account from which mail is sent and received?

    I have two email accounts. However, the iPad automatically uses the account that I only want to use for business. How can I change the account from which mail is sent and received?

    You are most welcome

  • Clearing Safari Cache Automatically when it Quits

    I work for a school district that uses Safari 2.0.4 on eMac’s running 10.4.7 and 10.4.8 and the students have their network home folders located on a 10.4.8 Server.
    I would like to have Safari clear its cache every time a student quits Safari or logs out, but don’t see a way to have this done automatically. Is there a script or utility out there that clears the cache automatically?
    Thanks for the help!

    Hello again,
    Ok, let's give this a go then
    Personally, for editing scripts I like to use the command line 'vi' editor, but for starting with that may scare you off so lets use the regular TextEditor application for the time being.
    Fire up TextEditor and open a new document. Change the type of the document to be a plain text file. This can be done via the Format menu -> Make Plain Text option (if it says Make Rich Text, then the file is already in plain text mode).
    In the editor, copy and paste the following, but remove the line numbers I've added:
    1 #!/bin/bash
    2
    3 logFile=/tmp/SafariCleanerLog.txt
    4
    5 echo "-----------------" >> $logFile
    6 echo `date` >> $logFile
    7 echo "" >> $logFile
    8 echo "Deleting Safari cache files in: $HOME/Library/Caches/Safari/" >> $logFile 2>&1
    9 echo "" >> $logFile
    10
    11 rm -rf $HOME/Library/Caches/Safari/* >> $logFile 2>&1
    Some lines may appear to wrap around in the webpage, so use the line numbers as your guide to know if something is supposed to fit on one line or not.
    This is what it does:
    - The 1st line indicates what particular shell application to use to execute this script (/bin/bash in this case)
    - The 3rd creates a variable that I'm using to store the path to a log file for what this script is doing
    - Lines 5 to 9 append some logging information to the logfile we've decided to report to
    - Line 11 does the actual deletion of the Safari cache files. rm is short for remove, aka delete, and the -rf means recursively (i.e. all subdirectories in the Safari cache folder) and forceably (i.e. don't askif you are sure for each and every file). The cryptic 2>&1 at the very end is to make any error messages that rm might generate appear in our logfile. If you try out the commands to see how they work, please please please be very careful with rm, once a file has been rm'ed its gone - it doesn't go to the Trashcan
    Note that if you want to see more about what each of these commands do, you can use the man pages either from the Terminal itself or here. ('echo' is a built-in command to bash, so you would need to read the bash manpage for information on that)
    Ok, so now we have a script. Save that on your Desktop with a name that makes sense for you (e.g. SafariCacheCleaner.sh - sh is the standard extension used to indicate something is a script, it's not required)
    Now we need to execute a few Terminal commands to make this work when a student logs out. Fire up the Terminal from /Applications/Utilities/Terminal.app
    The first thing we need is somewhere to place the script that is out of bounds to regular users, students, etc. OS X already has an area for scripts in /Library/Scripts/, so you may want to create your own area under this folder. For example, I created a 'Custom' folder via the following:
    sudo mkdir /Library/Scripts/Custom
    You may want to replace Custom with something else, like SchoolAdmin for instance. sudo is a command that gives the executor temporary administration rights. When you press return after typing the above command, you will be asked for a password - enter the password for your current user account and press return (note that you will not see anything appear in the Terminal while you are typing, this is a security feature).
    Next up, we need to copy the script to this location and give it the correct permissions to be executed:
    sudo cp ~/Desktop/SafariCacheCleaner.sh /Library/Scripts/Custom/
    sudo chmod 755 /Library/Scripts/Custom/SafariCacheCleaner.sh
    In this case, sudo will probably not prompt you for the password as it trusts access for a few minutes. If you leave things for, say, 10 minutes, it would ask you for your password again.
    cp is the command for copying files/folders.
    chmod is used to change permissions on a file. In this case, 7 means the owner of the file can write/read/execute the file, the first 5 means anyone in the same unix group as the owner can read/execute the file and the second 5 means everyone else can read/execute it.
    Lastly, we need to tell OS X that we want this script to run everytime a user logs out. This can be done with the following command (this is one long line that the browser may wrap):
    sudo defaults write com.apple.loginwindow LogoutHook /Library/Scripts/Custom/SafariCacheReset.sh
    Hopefully, that should be it. You can test it out by logging out of your account and logging back in. The /Users/YourUsername/Library/Caches/Safari/ should be sparkling clean now.
    I've tried to be a bit verbose to explain what's going on, so it's not as complex as it may look at first.
    If you have any questions at all, feel free to ask - it's better to be sure of what you are doing when it comes to the Terminal sometimes.

  • HT203242 I've tried all of the suggested solutions, but I still can't get my cd drive recognised.  If I delete the driver and rebot, the cd drive appears, but as soon as the driver automatically installs, the driver disappears into the Q: drive

    I've tried all of the suggested solutions, but I still can't get my cd drive recognised on my laptop.  If I delete the driver and reboot, the cd drive appears, but as soon as the driver automatically installs, the driver disappears into the Q: drive, which is not accessible and neither is the CD drive

    I had the same or similar problem after installin iTunes 11 on my Acer Laptop with Vista. The new iTunes ran but I
    completely lost access to my CdRom/DVD drive. Error Code 19 was displayed in Windows Device Manager. Found out
    this is more widespread of a problem than expected.  After trying several forum recommended fixes, the Only thing that gave me back my CdRom drive was doing a Windows Restore to a date prior to iTunes 11 install.  I got my drive back but it also restored me to the prior 10.0.7.21 vers of iTunes which no longer worked due to missing files. iTunes help
    recommended a Reinstall.  I am reluctant to do that for several reason.  That's where I am at for now until I find out if there are any other risks for using iTunes 11 vs. Registry Errors vs. Losing access to my CdRom drive.  Brad

  • How to advoid Pdf attached files turning into winmail.dat file causing incovinience opening them? And why does the phone automatically changes the file???

    The first time i opened the mail, the mail loaded the attactment as pdf file and i was able to open it without any problems. But then when i tried to open it again, i watched the phone automatically turned the pdf file into winmail.dat without any of my control. Since then, i werent able to open the file anymore! And this was lucky that i was able to see it as pdf file - all other attachments i have recieved since using my new ip6 all turn into winmail.dat
    this is really incovinient and frustrating for work. i cant believe i cannot just open a pdf file as a pdf file on my ip6 in the emails i recieve. I was on ip4 before this and never have anything like this happened.
    Solution needed asap please.
    Thankyou!

    Hi Jnkm,
    I'm sorry to hear you are having issues with your new iPhone 6. If you are getting a winmail.dat file instead of a PDF, you may want to see if it may be the issue noted in the following article:
    iPhone, iPad, or iPod touch does not display attachment in email - Apple Support
    Regards,
    - Brenden

  • How to confirm the alerts automatically in the internet mail?

    Hi,gurus:
         I wanna know how  I confirm the alerts automatically in the internet mail.Now we have to navigate to the alert inbox to confirm the alert,but can I do it in the internet mail? I have confirued the parameter in ALRTCATDEF->CONFIGURE->SETTING->INBOUND PROCESSING,but it didn't work.
    Thanks in advance.

    hi,
    I checked the library,and it says:
    Confirming Alerts by Internet Mail
    When an alert is sent by Internet mail, the Internet address of the alert user entered in alert configuration is entered as the Reply To address of the mail. An alert ID is inserted into the text of the mail. When the recipient answers the mail from the alert system, the alert is confirmed automatically. Inbound processing sends a status mail to the sender stating either that the alert has been confirmed successfully, or that an error has occurred. The alert ID must be included in the body of the reply mail.
    My question is: How to reply the mail?Where do I write the the alert ID?any ideas?

  • How do I formulate for a cell to automatically find the sum of 7 cells to the left of it.

    I need to organise a table showing number of hours I'd worked on any given day. After about seven columns of Time In & Time Out, I need the final column to show the Sum of hours I'd worked in each given day (the time data as specified in the 7 cells to the left of each in this Billable Hours column). I'd apprecaite any advice anyone out there can offer. Cheers.

    Bernadette,
    This seems to be the same question as the slightly later one I just responded to. For specific advice, you should make a mock-up of your table and post it here so we can reference it in our answer.
    In general though, when you subtract an end time from a start time, you get a Duration. The complication with this is that if you don't enter the end and start times on the same day, you will get odd results because the date is a part of the time entry and if not specified will be assumed to be the date when the entry was made. A better solution, one that avoids this issue is to use this more complicated math:
    Time worked in fractional days is: =TIMEVALUE(endtime) - TIMEVALUE(starttime). To convert to hours, multiply by 24.
    Regards,
    Jerry

  • Firefox 4 extremely slow at start up, Then after awhile it clears its cache automaticly then its speed up. Please explain whats happening.

    Firefox would slow up when cache builds up. Especially at start ups. Extremely slow. Then a few second later it would go back to normal. Then when i check the cache. It has already been cleared automaticly. Can somebody please explain whats going on. Looks like it has something to do with Automatic cache management system. THank you very much.

    You may want to just get one utility for now.
    At this point, do you need a new graphic card? then you need to upgrade to Leopard. If your software and system won't be a problem regardless of compatibility great, but make sure. Otherwise, Snow Leopard will likely require lots more upgrades and updates.
    But maybe doing an upgrade to Leopard and then test the waters with Leopard and Snow L. makes better sense.
    Only the "Early, Early" 2006-7 1st Gen Mac Pros can run 10.4.11 (or at least install and officially supported).
    The product pages have misleading information but you do need 10.5.7 for the 4870 which is your best graphics upgrade choice. The 3870 came out a year ago and requires 10.5.3+.

  • Safe Practice for Clearing Project Cache in Cap v.5

    Does anyone have a documented safe practice for clearing the Project Cache for Captivate v.5 projects?  Adobe has a fix for clearing cache for multiple projects in one step, but I'm wondering when is the best time to clear cache for a project.  My concern is clearing the project cache and then not being able to recover the project if the file get's corrupt (which is the original purpose for the cache in the first place).
    I've already done this once where I cleared the project cache and then couldn't open the file, then I didn't have the cached project available to recover the project.  Now I'm understandably a little gun-shy when using the Clear Cache option, but the alternative is to deal with a large amount of my computer storage being used for a bunch of files that I probably don't need.
    If anyone has the recommended list of steps and in the correct order, I'd really appreciate it.

    I don't know that there is any "documented safe practice" for when to clear the cache, but if you have Cp5 set to create backup files as well, even if you DO clear your cache, you should be able to recreate your project by renaming the backup file.
    I've been using Cp5 every day since it was in Alpha and I've only ever needed to restore a project from cache once.  In that case, my PC crashed while Cp was open and corrupted a project file.  But Captivate 5 has crashed plenty of times over the past year for one reason or another and yet I've never lost any more than a couple of hours work at worst.
    You are most likely to need this project restore feature if you've made the classic error of working from files stored on a network drive instead of your own hard drive.  If you only work from hard drive, install all the latest patches, keep your drivers and OS up to date, turn on the Cp backup file option, plus keep backups of all project files outside your PC, this is all the documented safe practice you need.
    Clearing the cache seems to solve quite a few otherwise baffling Cp issues.  I think you are more at risk by keeping the cache full than by clearing it.

  • How can I re-name the name the system automatically gave the new iPod I connected to my iTunes account?  It did not give me a choice, but automatically named it.

    I got a new iPod Nano for my 80-year-old father who lives with me.  I already uploaded his cds to my iTunes account, but when I connected the new iPod to my Mac to put his music on it, the program automatically named his iPod with MY name.  I want to differentiate it from my iPod Nano, but it never gave me a chance to give his iPod his name instead of mine.  He will not have an iTunes account; I will handle uploading his music and managing his iPod for him, but I need it to set up under his name, not mine.  My iPod, iPhone, iPad, etc.  all sync automatically with my entire iTunes library.  I only want to selectively upload music to his iPod.  How can I rename what iTunes is calling his iPod?   Help! -    Judy- Charleston

    Have you looked at the previous discussions listed on the right side of this page under the heading "More Like This"?

  • Destroy the session automatically when the browser is closed by user

    Is it possible to automatically destroy a session when the browser is closed by the user with the X?
    Basically, what we want to do is to create the same effect when the user is closing the browser (with the X button) as when the ordinary log out button is used. That is to have the session destroyed.
    Any ideas?
    /Carl-Johan

    Hope this helps...
    Refer note : 904155
    from SAP Note 904155----
    Symptom
    A BSP application is not terminated correctly when the user closes the browser window or navigates to other URL.
    The popup window, which appears on browse closure, contains the
    text representing <img> HTML element content in the escaped
    form, like that:
    <IMG WIDTH=quot; HEIGHT=quot; SRC="...
    After the popup disappears, the session remains opened.
    Since the session is not removed, that may result in database locks that still remain and can be found in transaction SM12.
    Other terms
    Business Server Pages, WebAS, sessionexit, session termination, SM12, SM04, SYSTEM, session_single_frame.htm
    Reason and Prerequisites
    Reason:
    The problem is caused by the minor code inconsistency in BSP application SYSTEM -> page SESSIONEXIT.HTM.
    Prerequisites:
    1. The application is using the SYSTEM application page SESSIONEXIT.HTM for logoff. When it runs, suddenly HTML source code appears on the logoff screen.
    2. SAP_BASIS 620 SP57 or SAP_BASIS 640 SP15 or SAP_BASIS 700 SP06 are installed.
    Solution
    Please install SAP_BASIS 620 SP58 or SAP_BASIS 640 SP16 or SAP_BASIS 700 SP07
    or
    apply the code correction as described below:
    1. Go to BSP Application SYSTEM.
    2. Select page SESSIONEXIT.HTM and turn on Change mode.
    3. Change the line:
    <%=application->session_exit( exit_url = app-exit_url namespace = app-appl_ns name = app-appl_name page = app-page_name )%>
    to:
    <%raw=application->session_exit( exit_url = app-exit_url namespace = app-appl_ns name = app-appl_name page = app-page_name )%>
    Arun
    P.S Assigning points is a way of saying thank you on SDN
    Message was edited by: Arun Varadarajan

  • How the system automatically kills the process when I close the browser?

    Hi everybody,
    I have the following problem: I run a report on the web browser. Suppose the user want to detail on one of the characteristics of report. If this takes long time (there are many records in report) and the user closes the web browser, the SAP system still run the proccess (in SM50 I see the dialog process still working, althrough the user closes the browser). This didn't happen in Excel, means, if the user press the 'Cancel' button when he/she tried to detail on one characteristic, the corresponding process is killed too (I see in SM50 how the corresponding dialog process is removed).
    How can I solve this ? Any idea about this?
    Thanks in advance.
    Florina

    Florina,
    there is a timeout set for the web session and the session would get automatically terminated after some time ..
    Some options are :
    1. Use Stateless Templates
    2. There is a Web Template setting called "Automatic Session Management" which uses a page wrapper cookie and kills the session when the person navigates from the page.. - <b>have changed it from previous answer after seeing Anil's post - apologies</b>
    3. If you are using EP  , you could implement DSM Terminator for the same.
    All the above( except 3) will not be suitable for stateful templates , if you want export to excel capability , or printing capability or the capability to save the pages as HTML for local use , you have to use stateful templates.
    First you would have to decide whether to use statefull or stateless templates and then depending on the choice made , go for any of the above. In case non of them work out for you , there is another option , but that would include a lot of javascript and using some command line parameters , update this post and I can tel you about the other if required..
    Hope it helps..
    Arun
    Assign points if useful
    Message was edited by: Arun Varadarajan

  • How the system automatically calculate the sick leave

    Dear All,
    Please let me know the procedures how the SYSTEM AUTOMATICALLY WILL CALCULATE THE SICK LEAVE OF AN EMPLOYEE.Kindly let me know the full steps how to do it.
    Regards
    AM.

    Hi,
    For this are you using time evaluation or rptqta00 only.
    Then tell me the ur conditions of the sick leave also.
    Thanks and Regards,
    Revathi.

Maybe you are looking for

  • How to use elements in .css file with javascript in the jsp

    I have a jsp in which i need to show some links with the background colour.The links depends on certain conditions which is known.But the requirement is that the background color should be grey and white alternatively. I could have hardcoded the back

  • Events in ALV Grid Control

    Hi,   I am working on ALV Grid Control. When the user clicks enter button on the keyboard the event DATA_CHANGED is triggered. I am actually collecting the data entered on the screen in the handler method of this event.   Now, I want the same functio

  • ERR  = -50

    I have a ton of .avi movies and recently I cannot access them animore with QT. I have the Divx doctor and I get the error= -50 message everytime I try to open a movie. Does anybody know what this means?

  • Add call button not present when in active call

    Hi all, I have a MacBook Pro (the latest one with Yosemite 10.10.2). I dont have an iPhone so no integration has been done. I was watching Modern Family - "Connection Lost" episode and I saw Claire adding another call when she was in a Facetime video

  • Imovie 10.0.9 spinning ball

    When using the above, the spinning ball keeps appearing and locking up the program HELP