Find out items where content is updated

I am writing a Whats new portlet. I am using wwsbr_all_items.updatedate to determine items which were updated.
I want to make a distinction between when the user actually loads a new version of the item versus the user just updating some metadata like : display name, description.
I want to only display those items where the content has changed.
We cannot use the new icon for this functionality since we have some company specific business logic.
Any help will be appreciated.
Harish

hi harish,
two ideas i have here:
1. instead of writing a new portlet you could use the custom search portlet with its auto-query functionality and search for items that have been updated in the last x days - this automatically renderes the search results in place without displaying any search form mask.
2. if you are writing your own portlet and you to check if the content (=file) of the item changed and not only the meta data this gets more tricky. you can first check the view wwsbr_all_items to check all the items that have been updated on a page. for the ones that have been updated (updatedate column) go to the view wwdoc_document and check the column that matches the filename column if it has been updated as well. if this has been updated as well you know that the file physically changed and you can pick this item to be displayed in your portlet.
regards,
christian

Similar Messages

  • How do you find out the contacts that were updated via Facebook and twitter in the settings without having to figure it out manually?

    How do you find out the contacts that were updated via Facebook and twitter in the settings without having to figure it out manually?

    There is no such list of what is downloaded to each phone except in the backup. So if you have a recent backup of each phone you should be able to find an app that reads the backup files and would tell you what list is saved of the content on each phone.

  • HT5244 Is there any way to find out after(!) running die Update, if i have been infected?

    Is there any way to find out after(!) running die Update, if i have been infected?

    Run any one of these tools: http://reviews.cnet.com/8301-13727_7-57413811-263/flashback-malware-removal-tool -roundup/
    Or you can check manually: http://reviews.cnet.com/8301-13727_7-57410096-263/how-to-remove-the-flashback-ma lware-from-os-x/

  • Is there a way to find out how many ESS driven updates to data over a perio

    Is there a way to find out how many ESS driven updates to data over a period of time have been done.

    Assuming that all end users are accessing the back end via Portal, we figured out the answer.

  • How to find out if file contents under some document library SPListItem has changed

    hi,
    I am building a Sync tool which will Sync SharePoint document library to some other service(e.g. FTP). I have added event handlers on the document library for ItemAdded, ItemUpdated etc.. etc.
    Now i have one problem, when ever a file is updated (either custom properties and/or file content) then there is no way to check if its updating of content or custom fields. So everytime i need to upload my file to that FTP location. I want to get some indication
    that this time file content is updated not the custom fields, or file content with custom fields are updated.
    I have checked After and Before properties but its of no use. When ever you rename a file or just open the edit dialogbox and save it without updating any thing, all after and before properties are same :(
    Need some solution for this, any help suggestion is appriciated.
    Syed Shoaib Adil Senior SharePoint Developer Boston, Ma, USA

    Sorry for late reply.
    1st link (storing file hash/MD5) is not a solution for me as i have many Office documents
    2nd link doesnt have nay answers
    Archive Folder is not a solution. How can i find if current item SPFile has content changes?
    I already have my custom fields with each SPListItem. How can i find in itemUpdating/ed that if file content is changed? to make my custom field ture?
    Syed Shoaib Adil Senior SharePoint Developer Boston, Ma, USA

  • How to find out most recent installed software update

    We recently installed the latest software updates on our intel xserve running 10.5 via the automatic software updates. The guy who installed them does not remember which updates where installed. Upon reboot we sit and sit at the gray screen with apple and spinning gear.
    I can boot into single user mode, and my question is how can I find out what updates where installed recently.
    Is there a location I can navigate to and just list the updates with there modified date, or is there any softwareupdate command that might list what updates have been installed.
    I know this wont fix the issue, but I would like to know if anyone has an idea how I can at least determine what updates were installed.
    Thanks..

    Use the following:
    ls -l /Library/Receipts/
    (32964)

  • How do I find out when there are pending update for ipad2 model A1396

    Hello,
    How and where would I go within my ipad2 model A1396 to find out if it's pending system automatic updates.

    How to update your iPhone, iPad, or iPod touch

  • Problem with Checking In/Out Items in Content Area

    I've been reading the Portal On-Line help pages in regards to
    checking in/out items. The help states that when an item is
    checked out, the item is locked and a message "Checked out by:
    UserName" is displayed next to the item. When I check out an
    item, I do not see this "Checked out by" message. However, I do
    see the checkout icon. Note - I am doing this through the
    Content Area Navigation page. Is there something that I am
    missing? (I have seen other threads in regards to the
    checkin/checkout icons not displaying when the Content Area is
    published as a portlet. We are having this problem as well.)
    However, the lack of the "checked out" message happens in both
    the Content Area Navigator and the published portlet.
    Also, is there a way to get Portal to automatically generate
    version numbers when a new version of an item is created. I see
    that you can create a unique name or description .... but I'd
    like to have Portal generate the version number for me. This is
    done in the Application component section when you build forms,
    menus, or reports.
    Thank you for any assistance that you can provide.

    The "checked out by" message only appears to other users - you
    won't see it if you are the user who checked out the item.
    The version number is planned for a future release.
    Regards,
    Jerry

  • Find out how many records are updated.

    Hello,
    I am executing a Update Statement in a loop from a JSP page this is working good.
    Suppose if there are 10 records and I update 4 records, it gets updated fine.
    What I now need is to find out how many records have been updated. How can I know this?
    Thanks

    statement.executeUpdate() returns the number of records updated.
    Sai Pullabhotla

  • Way to find out of there are pending updates

    Is there a way in Oracle 8.1.6 to find out if there are any uncomitted inserts, updates, or deletes on the current transaction?
    I do not need to know what they are, only if there are any at all.
    WHY?
    I have a piece of architecture in my client that runs on a timer and will sometimes perform updates. I want to skip the timer code if there are any pending updates so that the timer's updates do not get intermixed with updates from the main application.
    I tried putting the updates into a package function that used an autonomous transaction, but when it got into production the DBAs complained that the database was generating strange errors that they were told are dangerous, and I had to turn off this functionality.
    Thanks for your help,
    Chris Elvart
    SBC Public Communications

    Chris, there is not any method to see if row are locked before you try to access then so on an 8.1.6 version you could change your routine to use a select for update. If the cursor returns one of the requested rows is waiting on a commit. You can trap the error that indicates a row is in use, rollback, sleep, and then try again.
    The problem with this is a select for update must retrieve all the rows before you can process any of them so unless the target set is small this may not be practical. Also you can commit only at the end.
    You could select all the target rows in a cursor then perform a select for update on each row. With error trapping this would allow you to skip pending rows.
    Just some ideas for you to consider.
    HTH -- Mark D Powell --

  • HT6195 Where can I find out what the size of update files are, before I download them?

    My provider charges based on data usage (which is very costly here!), so I need to be able to locate file sizes prior to downloading them in order to stay within my budget.   The last (single file) update cost me $54.00, so yes, it matters!

    only option is to use a download manage and stop the download if the size is unwanted
    http://mac.appstorm.net/general/three-download-managers-for-mac-and-do-you-need- them/
    more
    https://www.google.dk/search?q=download+manager+mac&oq=download+manager+&aqs=chr ome.2.69i57j0l5.3907j0j7&sourceid=chrome&es_sm=91&ie=UTF-8

  • How do I find out if my EW4 is updated for Service Pack 2?

    I see no way to find if my Expression Web 4 has the Service Pack 2, which evidently has been updated for HTML5, CSS3 and JQuery. How do I check this out?

    If you want the latest version of EW4, download the completely free and final version.  If that's what you have (version 4.0.1460.0, with the notation below "This is a free copy"), you're done: you have the latest and there will be
    no more updates.

  • How can I find out how much data an update takes

    I have only limited access to data, unless I'm paying big overage charges.  Thereforre I want to know before hand how much data i will download with each update.  No information appears to be available when you want to update your pages, numbers or keynotes.  This applies to apps in MAC.  I operate wit Yosemite OS X. on on a 27inch Mac #)^ GHZ Intel Core 2 Duo. any info would be great.  Thanks.

    Besides the good ideas given so far, you could look into a few Support
    Sites for information such as the App Store as suggested to read each
    item that appears to be available for your existing system version...
    And consider looking through this page and adjoining links within it for more:
    •OS X - Recent Software Updates - Apple Support:
    http://www.apple.com/support/osx/software-updates/
    I've been fairly aware of the limitations and bandwidth overage charges or
    a reduction in available access to the internet when & if one runs over...
    And there is plenty of useless stuff loaded in web pages that can waste it.
    Hopefully you have a good archive to save the important download versions
    (& backups) so you may be able to use them again offline, when possible.
    Good luck & happy computing!

  • HT4623 My Ipad will not connect to iTunes or to the App store.  I get an error message when I try to find out if there are any updates.  What to do?

    My iPad will not connect to iTunes, the app store, or the update, although it will go on the internet.  What to do? 

    And what does the error message say?

  • Find out if the content will be rendered in "edit" mode programmatically

    I need to use redirect to send user to different page for certain reason. I use HttpPortletRendererUtil.sendRedirect() to accomplish the task. It works fine. The problem is I do not want it redirect in page modes other than "show" mode. Is there a way to know if the content will be rendered in "edit" mode? Or is there other way to accomplish the task?

    I tried and in both "show" and "edit" view getMode() return 1. I notice that the urls to access "edit" view is different from the one to access "show" view by an additional parameter _mode=16. It is not available to portlet. Probably portlet is not suppose to know the display mode.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

Maybe you are looking for

  • Why does my printer icon no longer show on topleft?

    The printer icon used to be at top left . There is a printer icon on bottom right but clicking on it does not get my printer printing.

  • Migration OS Win2008 under EPM 11.1.2.0

    Hi, I'm using EPM 11.1.2.0 on OS MS Windows 2008 Standard Edition SP2 64 bit like a production environment. On this server I have: Foundation Services, OHS, Essbase, Planning, RA Framework, FinReporting and WebAnalysis Services. This server hardware

  • A dropped MBP = a dead MBP

    Title says all, My MBP slipped from my hands, it landed illuminated Apple logo down onto carpet but part hit a book, the rest on a blanket, it was about a 3ft fall, and yes my Mac was still on/just moments before reaching sleep. The problem looks to

  • How to read mp4 on a mac

    How can I open a mp4 file on a mac? Quicktime doesn't work...

  • Cloning a bootable disk as a system backup

    I have a Sun M5000 System running Solaris 10. It has 4 slots in the face panel for removable drives. The 1st 2 slots are the ones we use, for the mirrored, boot file system. I don't have tape drives on this system, but I do want to be able to make sy