How can I show the number of version of document in the layout set iview?

I have enabled the version of KM folder.
I add the "rnd:icon,rnd:displayname(contentLink+rnd:action,contentlength,col:rating,rnd:collaborationstatus,modified,enhancedcollection,rnd:numberOfDocs" in document properties, but I would like to show the number of version.
What is the property name of version number?
Thank you for every answering,

Hi Boonma,
Pls refer to the http://forums.sdn.sap.com/thread.jspa?threadID=37904 thread.
Thanks
Prasad

Similar Messages

  • How can we show a custom column to all libraries in the default view without creating that for all libraries everytime

    Hi,
    Any help?
    Thanks
    srabon

    You can use powershell script below which loops through each libraries and sets view.You can modify the script to user it for single library as well.
    Add-PSSnapin Microsoft.SharePoint.PowerShell -erroraction SilentlyContinue
    $siteURL = "<YOURSITEURL>"
    $site = Get-SPSite($siteURL)
    foreach($web in $site.AllWebs) {
    foreach($list in $web.Lists) {
    if($list.BaseType -eq "DocumentLibrary") {
    // the variables `$web` and `$list` already reference the objects you need
    //$site = New-Object Microsoft.SharePoint.SPSite($SiteURL) ;
    //$web = $site.OpenWeb($SiteURL);
    // new instance of the list is necessary to avoid the error "Collection was modified"
    $newList = $web.Lists.item($list.ID);
    $viewfields = New-Object System.Collections.Specialized.StringCollection
    $viewfields.Add("DocIcon")
    $viewfields.Add("LinkFilename")
    $viewfields.Add("_UIVersionString")
    $viewfields.Add("FileSizeDisplay")
    $viewfields.Add("Created")
    $viewfields.Add("Modified")
    $viewfields.Add("Editor")
    [void]$newList.Views.Add(<VIEWNAME>, $viewfields, "", 100, $true, $true)
    $newList.Update();
    // setting the default view
    $view=$newList.Views["<VIEWNAME>"]
    $view.DefaultView = $true
    $view.Update()
    $web.Dispose();
    $site.Dispose();
    Ref: http://stackoverflow.com/questions/10015311/part2-sharepoint-2010-powershell-loop-through-all-document-libraries-creat
    Hope that helps!
    Avni Bhatt

  • How can I add password protection to a Pages document on the iPad?

    Is there any way to add password protection to a Pages document on the iPad? 

    File->Export... and check the encrypt box
    (if you Export as PDF...., click: [Show Details]

  • How can I fix this "Adobe two-version" problem, so only the latest version stays enabled, the old version stays DISABLED, and/or uninstall the old version?

    I went to my add-ons tab, and I DO, in fact, have two versions of shockwave flash, an 11.9...version, and a 13.9..., which, if I'm not mistaken, is the latest version. There is a "ask to activate, always activate, never activate" button for EVERY add-on. I clicked never activate on the older version, and closed the tab. I then tried to play a video off of the Web. It would not play, I tried another site with the same result, so I went back to my add-on tab, and the button for the older version had changed back to "always activate" by itself. It continues to repeat this, and WILL NOT stay on "never activate". Every few times I return to the add-ons page, THE NEW VERSION IS DISABLED, AS WELL AS THE OLD ONE. I've tried to uninstall the old version, but when I go through control panel, and bring up the folder contents, the old version isn't even there! I've done start, find, and typed in "Adobe", and the old version is NOT FOUND! Both versions keep changing back and forth on the activate button, and they both will disable on their own, no matter how many times I fix it! smh!!

    @jscher2000: Didn't mean to lose contact. I still don't have my playback problem solved, if you can believe that. I've downloaded the uninstaller / installer links with someones help that's on this forum, used them in the exact same order. It did nothing to help. However, I was in the process of attempting your solution. I made sure all browsers were closed; in fact, I went offline before this procedure. When I used find, and typed in Shockwave, it came back..."no search results". I recalled a path I had previously used, and had to use it instead of find, C:/ Acer/ Windows/SysWOW64/ Macromed/ and here there were files for Shockwave AND Flash. I opened Shockwave, says " this folder is empty". Flash Player and Flash Util plugin, Util32 Active X, NPSWF32_13_0_0_214.dll...all files appear correct, BUT why aren't there ANY files in the Shockwave folder? NONE of the buttons you describe in your steps to let Firefox "clean up" the pluginreg.dat file show in my window...if I am in the right window. My username is at the top, and it's drop-down is "3 button"+sign out. One says settings, but it doesn't take me to any "help", Trobleshooting info, "show folder", nor any way to exit Firefox or to start it back up. Settings goes to "edit settings", and has a list of checkboxes...all with something to do with threads in one aspect or another, and one concerning private messages. Sounds to me like I don't know what I'm doing, am on entirely the wrong Mozilla /Firefox page, and I'm NEVER, EVER going to get this damn video playback crap fixed once and for all. Some sites will let a video play, but they are rare. Vikings.com is the one that has me red-faced. NOTHING plays there. Except ads, of course. You can't get those to STOP.

  • How can i show single photos,not diaporama on TV with the AV component cable (without Apple TV)

    Hi everyone    
    I've got an Ipad 2 and the Apple AV component cable.
    I would like to show on tv only the photo which is on my ipad, but the only way i have is to start a diaporama with all my photos
    How should i do to show only the one I am on the ipad
    Thanks all

    @Chris:
    I was just referring to the visual graphics (you know, the fireworks, stars and other stuff that reminds me of the 70's....) that you can play on the screen when iTunes is playing music?
    I noticed that these effects are not just randomly chosen, they are in fact synchronized to the beat and intensity
    of the music, and that struck me as rather cool......

  • How can we show data in rows when it is in Columns........

    I have strucked with a simple but a complex problem.
    I have a Report with data in vertical rows..need of the hour is how can we show that data into column structure.
    here is the table sample which i have in Database..
    Location      chrg_type    Effective_date
    xxxxxxx        xxxx          xx-xx
    thhis is the structure in effective date we have several months in it in a single column i want show the effective date or effective month in various columns instead of a single column.
    my required table is....
                                Effective_date     Effective_date
    Location      chrg_type     xx-xx              xx-xx
    xxxxxxx        xxxx          xx-xx
    any tough heads?????

    Hi Sunil,
    Your 1st problem is that you are going to need one more field to accomplish you goal. What type of data do want under your new date columns?
    Anyway, once you have that you need to move on to how to move the data out into columns based on date.
    Try something like this.
    0_Date = IF DATEPART('m',{tbl.Effective_date}) = DATEPART('m',CurrentDate) AND
    DATEPART('yyyy',{tbl.Effective_date}) = DATEPART('yyyy',CurrentDate)
    THEN {tbl.DataField}
    1_Date = IF DATEPART('m',{tbl.Effective_date}) = DATEPART('m',DATEADD('m', -1, CurrentDate)) AND
    DATEPART('yyyy',{tbl.Effective_date}) = DATEPART('yyyy',DATEADD('m', -1, CurrentDate))
    THEN {tbl.DataField}
    2_Date = IF DATEPART('m',{tbl.Effective_date}) = DATEPART('m',DATEADD('m', -2, CurrentDate)) AND
    DATEPART('yyyy',{tbl.Effective_date}) = DATEPART('yyyy',DATEADD('m', -2, CurrentDate))
    THEN {tbl.DataField}
    ... Repeat this process until you have all of the columns you need, following this format.
    Hope this works for you,
    Jason

  • How can I setup different number range for each company code?

    Dear GURU,
         Is it possible to setup different number range for material document by company code? If yes, what should i do.
         Thank you in advance.
    Thammarit

    Hi,
    you maintain the number assignment for the following documents:
    material documents
    physical inventory documents
    The number assignment for these documents is not to be confused with the number assignment for accounting documents . The number assignment for accounting documents depends on the document type which is allocated to the transaction.
    The number assignment for material documents and physical inventory documents depends on the transaction/event type which is also allocated to each transaction in Inventory Management. The transaction/event types are divided into groups of number ranges. A number range interval has to be defined for each group.
    You cannot change the transaction/event types. However, you can change the number range intervals or you can allocate transaction/event types to new groups.
    Caution: Change in the Fiscal Year
    If, at the time of a fiscal year change, you reset the number range in the new fiscal year, separate number range intervals for the previous year and for the current year must be maintained for one month to allow postings to the prior period.
    Example:
    Interval for 1995: 4900000000 to 4999999999 status: 4900451234
    Interval for 1996: 4900000000 to 4999999999 status: 4900000000
    If only one number range interval exists for both years and you make any postings to the previous period, the system will assign numbers that already exist in the previous year. This would lead to an update termination.
    In the standard system, the transaction/event types and number range intervals are preset for Inventory Management as follows:
    Physical inventory documents
    Number range interval from 0100000000 to 0199999999
    This group contains the following transaction/event types:
    - IB Physical inventory documents
    - ID Physical inventory documents for counts and differences
    without reference
    - IN Physical inventory documents for recounts
    - IZ Physical inventory documents for count without reference
    - WV Physical inventory documents for difference postings in the WM System
    Material documents for goods movements and inventory differences
    Number range interval from 4900000000 to 4999999999
    This group contains the following transaction/event types:
    - WA Goods issues, transfer postings, other goods receipts
    - WH Goods movements for handling units (HU)
    - WI Material documents for inventory adjustment postings
    - WL Goods issues for delivery documents (SD)
    - WQ Goods movements for usage decisions (QM)
    - WR Goods movements for completion confirmations (PP)
    - WS Goods movements for run schedule headers (PP)
    - WZ Documents for batch status changes
    Material documents for goods receipts
    Number range interval from 5000000000 to 5999999999
    This group contains the following transaction/event types:
    - WE Goods receipts for purchase orders
    - WF Goods receipts for production orders
    - WO Subsequent adjustment of subcontract orders
    - WW Subsequent adjustment of active ingredient materials
    Inventory sampling numbers
    Number range interval from 0200000000 to 0299999999
    This group contains the transaction/event type SI.
    SAP recommends that you accept the settings defined in the standard system. In this case, no action is required on your part.
    Note
    For performance reasons, 10 document numbers are buffered on the application server. In this way, gaps in number assignment can occur.
    Actions
    Check whether you can use the predefined groups and number intervals.
    If you want to change any groups, proceed as follows:
    a) Choose Group -> Maintain.
    b) Select the transaction/event type that you want to re-allocate.
    c) Place the cursor on the new group and choose Edit -> Assign element group).
    d) Save your settings.
    If you want to define new groups, proceed as follows:
    a) Select Group -> Maintain.
    b) Then select Group -> Insert.
    c) Enter a text for the number range group.
    d) Maintain the number interval for this number range group.
    e) Allocate the transaction/event types to the number range groups (see step 2).
    If you want to maintain new number range intervals for an existing group, proceed as follows:
    a) Choose Group -> Maintain.
    b) Select a group and choose Interval -> Maintain.
    c) Choose Edit -> Insert year.
    d) Maintain the number interval for the new fiscal year.
    If you do not want to use the year-related number assignment method, enter 9999 in the field Year.
    Note on transport
    You transport number range objects as follows:
    In the initial screen, choose Interval -> Transport.
    Note that all intervals for the selected number range object are deleted in the target system first. After the import, only the intervals you export are present. The number statuses are imported with their values at the time of export.
    Dependent tables are not transported or converted.
    Thanks and regards
    Rajesh

  • HT3951 I purchased a movie on the AppleTV 2 but it is not showing up in iTunes on my desktop computer. How can I sync? (have lastest version of iTunes and ATV2 software)

    I purchased a movie on the AppleTV 2 but it is not showing up in iTunes on my desktop computer. How can I sync? (have lastest version of iTunes and ATV2 software)

    Of course it always works, what are you talking about.
    I appreciate that re-downloading is only available in the US and then only with certain content. However content that cannot be re-downloaded is not offered for purchase on the Apple TV.

  • HT4743 I just purchased an iTunes TV show and it successfully downloaded. It is now saying that I do not have the proper version of QuickTime on this version of iTunes (10.6.3). How can a show I purchased be incompatible with the latest version of iTunes?

    I just purchased an iTunes TV show and it successfully downloaded. It is now saying that I do not have the proper version of QuickTime on this version of iTunes (10.6.3).
    How can a show I purchased be incompatible with the latest version of iTunes?
    I want a refund, but I can't even figure out how to request one through support. Super frustrated and long time Apple customer.

    After a day of trying, both iTunes and my Apple TV are telling me that the episodes of Scooby Doo I purchased are incompatible due to QuickTime. I still don't understand how I purchased something from iTunes that doesn't work with iTunes.
    the exact error I receive when I try to play an episode is the following:
    "This movie requires QuickTime, which is not supported by this version of iTunes."
    Any advice would be great!

  • How can I block a number that calls me persistently every single day but only shows 3458  it does not show the full 10 digit

    how can I block a number that calls me persistently every single day but only shows 3458  it does not show the full 10 digit so on your block page will not let me block it!!!  So frustrated and I am not answering it with all the hackers out these days I don't want to give them access to my phone.

        @lottsandy
    I can understand your frustrations and concerns with receiving these unknown calls!  I would love to assist you with preventing these types of calls.
    Sounds as though you're receiving some type of telemarketing call.  Although you're unable to add the shorter numbers to your call block list, you can definitely add your number to the National Do Not Call registry http://1.usa.gov/1whONxp.  I hope this will help prevent those unwanted calls.  Thanks!
    AnthonyTa_VZW
    Follow us on Twitter @VZWSupport

  • How can I show all of my keywords in iPhoto.  there seems to be a limit on the number that can be used.

    How can I show all of the keywords used in iPhoto.  There seems to be alimit on how many can be displayed.

    When I click the "Edit Keywords" button, I get a list of all keywords. I just added several hundred random keywords, and they are all visible, when I scroll the list in "Edit Keywords" view.
    Have you the scroll bars hidden? You can enable the scroll bars in the System Preferences > General tab:   enable "Show Scroll bars - always".

  • HT5538 My brother and I share an iTunes account and his text messages show up on MY macbook. His texts don't show up on my phone though. how can i delete his number off my iMessage on my laptop?

    My brother and I share an iTunes account and his text messages show up on MY macbook. His texts don't show up on my phone though. how can i delete his number off my iMessage on my laptop?

    These are iMessages only.
    He activated iMessage on his iPhone with the same Apple ID that you activated iMessage with on your Mac.
    On your Mac, go to Messages preferences.
    Under the Settings selection for your Apple ID, deselect your brother's phone number for you can be reached for messages at.

  • How can I show album art in the mini player when playing songs from a plugged in iPhone?

    How can I show album art in the mini player when playing songs from a plugged in iPhone?
    When I play from my phone and switch to the mini player it's always showing the music notes in the thumbnaill. It'd be nice if it could get album art off of the phone.
    I'm on iTunes version 11.0.4.4

    He @mracole,
    it is very nice that you post a solution to complete the library with artwork for album's that do not have an artwork. Your solution perfectly addresses the problem for assigning artwork, BUT this thread is about CHANGING artwork for albums already uploaded into iTunes Match. Just try to replace for example a blue artwork cover for an album with a red one. If you made it in a simple way (without deleting the album from iTunes Match and local changes on the files with an external ID3-Application or 2 or more iTunes libraries on different Mac's) this is the right place to give a solution. I really tried for hours to change the artwork to make them visible in landscape cover flow mode on my iPhone5. In rare cases I made it, but then the covers sometimes where restored to the old onces - exacly how it is mentioned by Starhawk
    As long as there is no simple way to change the cover of an iTunes Match stored album (you can change title, artist and so on without hitting "update iTunes Match" over all distributed Library on different devices - this date will be synchronized almost instantly) I considered the behaviour from iTunes as BUGGY! For me the local artwork cache (and if there is any iCloud artwork cache - I don't know) do not interfere with iCloud. Even when I delete the whole local cache (album artwork music - everything) I do not manage to change the artwork.
    Regards from Munich, Germany

  • How can I show a 0% range in the data value label on a bar chart thanks?

    How can I show a 0% range in the data value label on a bar chart thanks?

    I'm not sure what the question is. 
    I know that if you have a bar chart and one of the categories (X-axis) has bar (Y value) equal to 0%, no bar is plotted for that category. Even the addition of a stroke (line) around the bars doesn't make one appear for 0%.  The only automatic way I know of to make it look like there is data in that category is to add the value labels to the bars. Inspector/Chart/Series, select one of the bars on the chart, click on "value labels". Another method that is a workaround is to fudge the number a little in your table so that instead of 0% it is a very small %.  This will get you a thin line on the chart.
    But if your question is about the value labels (the numbers that display on or in the bars) and you are not getting one for a bar that is supposed to be 0%, it probably means your table doesn't actually have a 0% in the corresponding cell. A blank cell in the table will not get a value label.

  • I tried to rename a file, it gave me an error message (can't remember the number - 43??) and then the file disappeared from the original folder. When I do a search, the file comes up under the new name, but it does not show a path, and even though preview

    I tried to rename a file, it gave me an error message (can't remember the number - 43??) and then the file disappeared from the original folder. When I do a search, the file comes up under the new name, but it does not show a path, and even though preview shows the contents, I can't open the document (Powerpoint) and I can't move the document. I tried "Copy" and paste but it doesn't work. I tried "Share" with Airdrop and iChat, but the file is inaccessible. When i try to rename the file, it says the filename is too long.
    When I try to open it, it says the alias is not good, and asks if I want to fix the alias. I'm afraid to do that and lose all access to this document.
    Right now, it feels like a ghost document - it is on the computer intact, but it is in an undisclosed location and inaccessible.
    Please help!!

    I was able to resolve this by repairing permissions, even though no permissions error was listed specifically for that file.
    I could also have recovered it through Time Machine, but I'm interested in knowing how not to have this happen again!
    I was afraid of rebooting and possibly losing track even of the ghost.
    I did not try EasyFind - I'll keep that in mind next time.
    Thanks for all the comments.

Maybe you are looking for

  • How to connect two monitors using macbook pro?

    Hi, I have a Macbook Pro through which I want to extend the displays to two individual monitors. The two monitors should show two different windows which is opened through my macbook. I have observed that macbook has only one mini display port throug

  • Standard report po/gr/ir

    Dear experts, Please suggest any standard report available where PO,GR and IR document will be shown at one place. With qty and value. Please help if any standard report is there. Rgds

  • GIF files not shown ? how to find duplicates ?

    I have Photoshop Album Starter Edition (PSASE 3.0) 1) PSE is not showing GIF images, it shows only JPG It only searches for images in MyPictures, but I have images in many other folders also. 2) I would like to find dupes, how do I proceed ?

  • Portal Self Crawl

    Help Needed Crawling the Portal with a WWW crawler Posted: Mar 9, 2010 9:34 AM in response to: Robert Herrera Edit Reply I have created a portal self crawl. I did this by creating a experience defination without sso and a cralwer user with a snapshot

  • Help- 2 versions of Adobe Acrobat

    During the trial of creative cloud i was using version X of Adobe Acrobat Pro.  Now that I'm regular subscriber I hit the update button and I have both version X & version XI on my computer. I would like to remove version 10 properly but I'm not cert