How to show no. of contents in each folder in a KM navigation iView....

Hi everyone,
Requirement -
we need to display a KM Navigation iview which shows the count i.e. no. of the contents in each folder.
Scenario -
I have tried changing this property - in the resource renderer and have created a new layout set and a layout profile.
However this doesnt seem to work.
Please if anyone can help me get the count of the contents in each folder in the KM Navigation iview.
Thanks and Regards,
Amol Ghodekar

Hi Amol,
see: Number of files in folder
Hope this helps,
Robert

Similar Messages

  • My events photo albums have all been renamed with a number followed by IMPRT instead of the date which was how they were originally named. Also the photo now showing on the top of each folder is not actually in that folder. How do I restore?

    My events photo albums have all been renamed with a number followed by IMPRT (deleting the date on which they were taken) Also the photo now showing on the top of each folder is taken from a different event and so is not actually in the album it is sitting on top of. This happened when I linked to itunes. Any idea how to restore it to how it looked before?

    One thing that I find odd is that iTunes used to rebuild the .itl file when you deleted it.  It seems as if the newer iTunes somehow broke this old capability.  If you delete the .itl file it can't rebuild it- it simple treats this as if this is a fresh installation and completely ignores the fact that the .xml file has all the data in it.  I think Apple needs to bring back this old "feature".  Of course, the negative with that was that you lost all of the "Date Added" info along with some other stuff but at least it still kept the favorites info etc. (and I think maybe even the path although I don't believe I ever tried that because my account path has never changed until now).
    One side note: I can't find where the iTunes Windows SDK is.  I was hoping to try to use that to access the .itl "database" and write a utility to fix this situation.  Seems like this has moved from its original location...

  • How can I save the RSS feed from awebsite on the toolbar so it will show all the content in a folding menu?

    In the previous versions of FireFox I Could push the RSS sign in the addressbar and choose to have the feed on my bookmark toolbar. In that way i could push the feed name on the bar and see names of feeds i have read and them I havent read and decide whiche one to go to. today when i save a bookmark to the toolbar and then push it there, instead of showing me the different content in a folding menu like before, the whole page jumps to the website. How can I save the feed from the website like before?

    - Go to the Tools menu - select Options.
    - At the top of the Options window, click 'Applications'.
    - Scroll down to 'Web Feed' and make sure the Action is set to 'Add Live Bookmarks in Firefox'.
    - Click OK.
    - Navigate to the desired website, go to the Bookmarks Menu and select 'Subscribe to this Page'

  • I have an app on my Iphone4 called my folder. How can I sync the contents of the folder (pics and videos) to my new 4S?  The app is on the new device but its empty.  Thanks

    I purchased an app called my folder and after I did the sync, I lost all of the contents of this folder.  Is there a way to get the pictures and videos onto my new device?  Thank you

    Restart your iPad.

  • How to show an xml content in a Jsp page?

    I use <jsp:include page=".....xml" /> tag in a jsp file to include an xml file. When this jsp page is open, only the text content in the xml file shows up with plain text. I want this xml file shows up like in IE (with xml format). Does anyone know how to do it? Thanks.
    northcloud

    Thank you, BalusC & evnafets. Someone told me to use <c:import> to load the XML file into a scoped variable, and then use <c:out> to display it. The <c:out> will automatically convert the markup to HTML entities. I tried it, it works. It shows the content in the xml file as plain text (a long string). Any one give me some suggestion to make it looking better, for example, show each element in seperated lines. Thanks.

  • How to show the file contents in a streaming manner on the browser

    Hi,
    I have a log file which gets appended to by another program.
    I need to show the contents of this log file in the browser window but in a streaming manner. Reading the file in one shot and refreshing the page every few seconds is not a solution as it makes the browser hang when the file size is huge. A unix tail functionality is also acceptable but it should be streaming. Would a servlet or applet do the trick?
    Please advise!

    is your log file present on web/application server? if yes, you can do the following:
    1. create a web page containing text area. (for displaying log file)
    2. use XmlHttpRequstObject (Ajax) for querying the next available data from Servlet.
    On the Serverside:
    You can store the the FileScanner object in session scope. and use it to read the next available data and send it as response.
    On the client Side(webpage/javascript)
    read the contents of the response and append it to textarea.
    In Simple words, I'd say AJAX is the way to go.

  • Stoplight Format: How to show percent sign next to each value?

    I need to show a percent sign next to each data value on a column that has a stoplight format. The calculation has been created and works perfectly. But when I add the stoplight format, the percent sign '%' disappears. For example, acolumn data value is 95.25%. After I add the stoplight formula, 95.25% becomes 95.25.

    Thanks for your help, nearly worked but only returned results where the if statement was met ie where locked =0, so I used an additional statement to display something else when when locked=1
    <?php
    if($row_spec_rx['locked'] == 1) {
    echo "button html goes here";
    ?>
    <?php
    if($row_spec_rx['locked'] == 0) {
    echo "something else";
    ?>
    I am sure there must be a more elegant way of doing this!

  • How to show 3D PDF content in Preview app?

    Is it possible to enable the display of 3D content in a PDF file using the Preview app in Yosemite? It displays fine in Adobe Reader, just not in Preview.

    Hi SK,
    The following SAP note would help you
    1215100 - Is it possible to create a table of contents in Crystal Reports?
    [https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_erq/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes.do]
    Regards,
    Raghavendra

  • How to show the updated content of a JFrame

    I have a JFrame with JPanel and JMenuBar (and JMenus). I would like when the user select some item from the menu to change the JPanel of the JFrame, but I can't figure out why this code doesn't work.
    Problem is in the methods operation1Performed() and operation2Performed(). What is the command
    import javax.swing.*;
    import java.awt.event.*;
    public class TestGUI2 {
         public static void main(String args[]) {
              Cordinator2 c=new Cordinator2();
              c.showFrame();
    class Cordinator2 {
         private JFrame frame;
         private JMenuBar menuBar;
         private JPanel panel;
         public Cordinator2() {
              frame=new JFrame("TestMenu");
              menuBar=new JMenuBar();
              menuBar.add(getMenu());
              panel=getDefaultPanel();
              frame.setJMenuBar(menuBar);
              frame.getContentPane().add(panel);
              frame.pack();
         public JMenu getMenu() {
              JMenu menu=new JMenu("Modul");
              JMenuItem operation1=new JMenuItem("Operation1");
              operation1.addActionListener(
                   new ActionListener() {
                        public void actionPerformed(ActionEvent e) {
                             operation1Performed();
              menu.add(operation1);
              JMenuItem operation2=new JMenuItem("Operation2");
              operation2.addActionListener(
                   new ActionListener() {
                        public void actionPerformed(ActionEvent e) {
                             operation2Performed();
              menu.add(operation2);
              return menu;
         public JPanel getDefaultPanel() {
              JPanel panel=new JPanel();
              JLabel label=new JLabel("Some text");
              panel.add(label);
              return panel;
         public void setPanel(JPanel p) {
              panel=p;
         public void operation1Performed() {
              System.out.println("operation1");
              JPanel t_panel=new JPanel();
              JLabel label=new JLabel("Operation1 performed");
              t_panel.add(label);
              //frame.remove(panel);
              //frame.getContentPane().add(t_panel);
              setPanel(t_panel);
              frame.repaint();
         public void operation2Performed() {
              System.out.println("operation2");
              JPanel t_panel=new JPanel();
              JLabel label=new JLabel("Operation2 performed");
              t_panel.add(label);
              //frame.remove(panel);
              //frame.getContentPane().add(t_panel);
              setPanel(t_panel);
              frame.repaint();
         public void showFrame() {
              frame.setSize(400, 300);
              frame.setVisible(true);

    First: New code for one of your methods
         public void operation2Performed() {          
              System.out.println("operation2");          
              JPanel t_panel=new JPanel();          
              JLabel label=new JLabel("Operation2 performed");          
              t_panel.add(label);          
              frame.remove(panel);          
              frame.getContentPane().add(t_panel);          
              setPanel(t_panel);          
              frame.validate();     
    From that you can make operation1 work too. What was happening was that you have two panels. You have to remove the one and then add the next one. Then you need to tell the frame that you've made a change.
    Cheers,
    Rachel

  • How do I display the contents of a folder?

    I am creating a technical resource CD including many
    different kinds of media.
    One such area is support files. These are several files that
    customer might want to copy to a directory on there hardrive. I do
    not want them to have to click on and save each file.
    I have added a folder and files in the baggage file area.
    How do I create a Hyperlink (or some other kind of object)
    that when clicked on lauches Explorer displaying the contents of
    the baggage folder? It does not matter if it is a frame or if its a
    pop-up.
    Any help would be greatly appreciated.

    Here's a thought:
    You want the user to see a directory -- i.e., Contents -- of
    the separate volume, and you're looking for a way to open Windows
    Explorer.
    I would merge everything into a WebHelp package or CHM on the
    CD. The main TOC functions as a substitute for the Windows
    directory tree.
    I guess you don't want to go to the trouble of merging all
    that stuff into a WebHelp or chm package.
    Rather than trying to open a directory in Windows Explorer,
    open a new browser window with a single .htm file showing text
    links that mirror the Windows explorer directory.
    To keep it simple, you could list folder names and indent the
    contents, simulating an expanded TOC.
    Make it more complicated by having one htm file with all
    directories closed, and another file for each directory, expanded
    to show contents. A "back" link, in effect, goes up the directory
    tree. For a little more trouble, if you have, say, six
    sub-directories, make their surrogate TOC pages identical, with
    closed directories, except the relevant one is expanded. Clicking
    the base of another "folder" is, in effect, going up the tree.
    How you distinguish between a CD holding the bonus material
    vs. a directory on the hard drive, I'm not sure. Maybe the original
    link would have an option: Go to the bonus on a CD, or go to the
    bonus on the local drive.
    Perhaps it's not what you're looking for, or too much
    trouble. Just tossing out an idea that you could refine or reject.
    Harvey

  • Sub folders content are not getting displayed using KM Navigation iView.

    Subfolder contents are not being displayed for KM Nvaigation ivew
    Posted: Feb 15, 2006 1:01 PM        Reply      E-mail this post 
    Hi
    I created CM repository and did all settings.i could able to see the folder and subfolder contents under Content administration>KMContent>root-->KMPublications(my own folder).
    -->using Administrator user i could able to see all folders/subfolders correctly and could able to edit.
    -->now i created KMNavigation iview and created new role called "KMRole".then i assigned iview to page,then page to Role .this "KMRole" is assigned to user called "prasad".
    >for folder "KMPublications" ,using context menu Details>settings-->permissions ,i added "KMRole" for "Read" only.
    -->when i logon to portal with user "prasad" ,it is showing all root directory content and subfolders.when i click on subfolder called "foods",it is showing me exception.this problem is not coming if i logon as "Administrator".can anybody helpme out.
    Note:if i chnage the Path to display value to subfolder ,it is only displaying subfolders content only.if i click on its subdirectory ,it is giving null pointer exception.
    i checked default trace file,it is giving following information
    #1.5#001560AB529E0068000001130000050000040CDA8CF94AE8#1140032714402#com.sap.portal.portal#sap.com/irj#com.sap.portal.portal#sriram#586##epdev1.corporate_EPD_4605550#sriram#8ba54e509e5b11da9930001560ab529e#Thread[PRT-Async 0,5,PRT-Async]##0#0#Error#1#/System/Server#Java###Exception ID:02:45_15/02/06_0007_4605550
    [EXCEPTION]
    #1#com.sapportals.portal.prt.component.PortalComponentException: Error in service call of Portal Component
    Component : pcd:portal_content/KMEx/KMRole/KMExPage/KMNavigationiView
    Component class : com.sapportals.wcm.portal.component.base.ControllerComponent
    User : sriram
    at com.sapportals.portal.prt.core.PortalRequestManager.handlePortalComponentException(PortalRequestManager.java:969)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:343)
    at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
    at com.sapportals.portal.prt.core.async.AsyncIncludeRunnable$1$DoDispatchRequest.run(AsyncIncludeRunnable.java:377)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sapportals.portal.prt.core.async.AsyncIncludeRunnable.run(AsyncIncludeRunnable.java:390)
    at com.sapportals.portal.prt.core.async.ThreadContextRunnable.run(ThreadContextRunnable.java:164)
    at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:729)
    at java.lang.Thread.run(Thread.java:534)
    Caused by: com.sapportals.portal.prt.component.PortalComponentException: Exception during PageProcessorComponent.doContent()
    at com.sapportals.portal.htmlb.page.PageProcessorComponent.doContent(PageProcessorComponent.java:139)
    at com.sapportals.wcm.portal.component.base.ControllerComponent.doContent(ControllerComponent.java:73)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
    at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
    at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
    ... 7 more
    Caused by: com.sapportals.htmlb.page.PageException: null (java.lang.NullPointerException)
    at com.sapportals.wcm.app.controller.ControllerDynPage.doProcessBeforeOutput(ControllerDynPage.java:81)
    at com.sapportals.wcm.portal.component.base.KMControllerDynPage.doProcessBeforeOutput(KMControllerDynPage.java:56)
    at com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:123)
    at com.sapportals.portal.htmlb.page.PageProcessorComponent.doContent(PageProcessorComponent.java:134)
    ... 11 more
    #1.5#001560AB529E006D0000001C0000050000040CDA8E1777DD#1140032733168#com.sapportals.wcm.service.xmlforms.project.ProjectListResourceHandler#sap.com/irj#com.sapportals.wcm.service.xmlforms.project.ProjectListResourceHandler#Guest#192####b0827ab09e5911da8591001560ab529e#Thread[Thread-108,5,PRT-Async]##0#0#Warning##Plain###Exception reading project list. Error was Cannot get item /etc/xmlforms/XFBuilderConfig/ProjectsTimestamps.pref#
    #1.5#001560AB529E006D0000001D0000050000040CDA8E17786B#1140032733168#com.sapportals.wcm.service.xmlforms.project.ProjectListResourceHandler#sap.com/irj#com.sapportals.wcm.service.xmlforms.project.ProjectListResourceHandler#Guest#192####b0827ab09e5911da8591001560ab529e#Thread[Thread-108,5,PRT-Async]##0#0#Warning##Plain###com.sapportals.wcm.repository.InvalidUriException#
    #1.5#001560AB529E006D0000001E0000050000040CDA91E8084B#1140032797168#com.sapportals.wcm.service.xmlforms.project.ProjectListResourceHandler#sap.com/irj#com.sapportals.wcm.service.xmlforms.project.ProjectListResourceHandler#Guest#192####b0827ab09e5911da8591001560ab529e#Thread[Thread-108,5,PRT-Async]##0#0#Warning##Plain###Exception reading project list. Error was Cannot get item /etc/xmlforms/XFBuilderConfig/ProjectsTimestamps.pref#
    #1.5#001560AB529E006D0000001F0000050000040CDA91E808D9#1140032797168#com.sapportals.wcm.service.xmlforms.project.ProjectListResourceHandler#sap.com/irj#com.sapportals.wcm.service.xmlforms.project.ProjectListResourceHandler#Guest#192####b0827ab09e5911da8591001560ab529e#Thread[Thread-108,5,PRT-Async]##0#0#Warning##Plain###com.sapportals.wcm.repository.InvalidUriException#
    can anybody help
    prasad
    Prasad

    Maybe there is approval set up on this folder. Order time based publishing. Both can cause the read users to see nothing.
    The first means that read users can only see published documents. If no document is published the result is a empty folder.
    Same for the second feature. If timebased publishing it can be that all documents are hidden for the read users because the documents are out of there time interval.
    Hope this helps. Check both in folder > details > settings.
    Frederik

  • KM navigation iview - how to disable folder drop down menu?

    Hi all!
    Portal version: EP7 SP9; I am trying out KM navigation iview opportunities.
    My goal is to create an iview where user can only download folder items (files); and in the same time I would like to disable all the drop-down menus there.
    For example, folder itself has a drop-down menu; also there is one for each of the files. So, is it possible disable/remove these associated drop-down menus for each accordant item within KM navigation iview?
    All ideas/comments will be appreciated!
    Thanks,
    --- Kaspars

    Hi,
    Probably yo mean the hover menu next to the displayname of a resource.
    KM navigation iview has a layoutSet associated (see PCD property layoutset). Find the layoutset in System Admin -> System config -> KM -> Content management -> User Interface -> Settings -> LayoutSet (click <i>show advanced options</i> if you did not so). Here you have some collectionRenderers and resourceRenderers set.
    The hovermenu represents the commands for the resources itself, so you click the resourceRenderer. Here yo can see a property called <i>Command display</i>. Set it to <b>off</b>. Now the menu should be not visible for the resources in KM navigation.
    To setup which commands should be visible you have to set <b>Command Groups</b>. For more info see:<a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/9d/233f989a5ba64fa44ed6e0823286ee/frameset.htm">SAPHELP: Commands and Command Groups</a>
    Hope this helps,
    Romano

  • How can I show all missing content in iTunes library?

    How can I show all missing content (ie. show the exclamation mark against each track)? I can restore the missing content but need to know what is missing without running each track.

    One way to identify the broken links in your library is to create this set of playlists:
    Lost & Found playlists
    Create a playlist called Found, select everything in Music and drag it into the Found playlist. Create a smart playlist called Lost matching All the rules Playlist is Music and Playlist is not Found. Your lost tracks will be in this playlist.
    Or use iTunes Folder Watch and enable its option to check for dead tracks on startup.
    tt2

  • Report : How to show all the reports in Content Management

    Hi,
      Can anyone tell me how I can show the "Resource Locks" Report in Portal.
      I can see 4 reports through Content Management -> Reports i.e. Approval Maintenance, Link Consistency, Resource Statistics, Time-based publishing.
    If I want to add more reports over here than "How I can achieve it".
      Also I have seen the settings System Administration -> System Configuration -> KM -> CM -> Repository Managers -> Reporting Repository
    But here I find no combo box for Active Reports, so from where I can activate the reports and show them in Content Management -> Reports
    Please help me.
    Regards
    Deep

    Deep,
        Are you talkign about the report which give you details of which Portal Objects are currently locked?
       If yes, then you can go to System Adminitrator > Monitoring > Object Locking
    Hope this helps,
    *Points will be appreciated.

  • ITunes used to have a bar that showed me what content on my iPad was taking up the memory.  The bar is gone.  How do I get it back?

    Have to say, I've been messing with this for 30 minutes just trying to figure out how to post a question.  Very frustrated.
    How do I get back the bar that iTunes used to have which showed me what content on my iPad was eating up memory?  The iPad itself doesn't seem to show that, I had to hook to iTunes to see it. Now that's gone.

    I suspect unless he had some items in iCloud backup then they are gone.  Connecting an iPhone to a different library from that to which it was previously connected will result in the device asking if you want to erase it.

Maybe you are looking for

  • Cannot load Mac os

    Hi I started boot camp to install windows 7 and the installation failed and it keep restarting with the same problem and I have no idea what the problem with the windows installation is! Now I can't seem to load the Mac OS.  Please help.

  • Where to buy stacked HDD brackets.

    I'm adding more internal hard drives to my old computer and hopefully eliminating any need of an external drive for backup, etc. I already have one stacked two-drive bracket for master-slave connection in use, but am getting an ATA controller to add

  • Need possible reason for the error!!!

    The following error occured on a QA machine while testing....when clicked on a lable a dialog should come up which contains a table with data. I am not able to reproduce this error on developmenet machines....So i need the possible reason the occuran

  • Error in importing Oracle Developer Days apllaince

    Hi, I am trying to import Oracle Developer Days appliance on Windows XP, but failing with the below error. Failed to import appliance C:/Oracle_Developer_Days.ova. Could not create the clone medium 'C:\Documents and Settings\User\VirtualBox VMs\Oracl

  • How to backup Mac without login???

    My iMac has a very weird problem, it usually booting with a long gray bar and take very long time, and even sometime it suddenly shuts down while booting. And now it shuts down every time i turn it on. I did try Lion Recovery to repair Macintosh HD,