How to display sub categories ?

hi
How to display categories and sub categories and its sub categories.
We don’t know the depth of sub categories.. so how it can the categories be displayed?
Could anybody can provide the solution ASAP ?
Thanks & Regards
user8729783

user8729783 wrote:
hi
How to display categories and sub categories and its sub categories.
You can use below:
<dsp:droplet name="ForEach">
  <dsp:param bean="Profile.catalog.allRootCategories" name="array"/>
  <dsp:oparam name="output">
  <dsp:valueof param="element.displayName"/>
  <%-- diplay subCategories --%>
  <dsp:droplet name="ForEach">
  <dsp:param name="array" param="element.childCategories"/>
  <dsp:oparam name="output">
  <dsp:valueof param="element.displayName"/>
  </dsp:oparam>
  </dsp:droplet>
  </dsp:oparam>
</dsp:droplet>
-RMishra

Similar Messages

  • How to Display Sub-Columns using ALV Grid

    Hi ,
      Could someone tell me how to display sub-columns under a parent column using ALV Grid. Do we have any standard Program which has this scenario. Please let me know.
    Thanks,
    Abaper.
    Message was edited by:
            ABAP'er

    you can check all with <b>BCALV* or RSDEMO*</b> in SE38 for all Std
    check below
    BCALV_DND_01                   Drag ALV Row to Tree Folder
    BCALV_DND_02                   Drag Icons from Tree to Rows of the Grid
    BCALV_GRID_DND_TREE            ALV Grid: Drag and Drop with ALV Tree
    BCALV_GRID_DND_TREE_SIMPLE     ALV GRID: Drag and drop with ALV tree (simple)
    BCALV_TEST_COLUMN_TREE         Program BCALV_TEST_COLUMN_TREE
    Rewards if useful............
    Minal

  • How to Display Sub-Columns using ALV

    Hi experts,
        Could someone tell me how to display sub-columns under a parent column using ALV. Do we have any standard Program which has this scenario. points are guaranteed for the right answer.
    Thanks in advance
    Sreenivas

    you can check all with <b>BCALV* or RSDEMO*</b> in SE38 for all Std
    check below
    BCALV_DND_01                   Drag ALV Row to Tree Folder
    BCALV_DND_02                   Drag Icons from Tree to Rows of the Grid
    BCALV_GRID_DND_TREE            ALV Grid: Drag and Drop with ALV Tree
    BCALV_GRID_DND_TREE_SIMPLE     ALV GRID: Drag and drop with ALV tree (simple)
    BCALV_TEST_COLUMN_TREE         Program BCALV_TEST_COLUMN_TREE
    Rewards if useful............
    Minal

  • How to display multiple categories of webapp items in list view? Changing listbox list to checkbox list to select category in submission process?

    Hello!
    1.
    I am trying to get my page to list webapp items that are part of a few categories. I understand that if i want to view only one category, I just need to do the normal process of choosing that category and placing it out. So my question is: How do I display multiple categories of items in a webapp in a single page. I've tried this
    {module_webapps,WEBAPP_ID,c,CATEGORY_ID1,,,,10,,1} {module_webapps,WEBAPP_ID,c,CATEGORY_ID2,,,,10,,1}
    This only displays the everything from the first category, then everything from the next, which will not make it in order of date.
    I've also tried this for fun:
    {module_webapps,WEBAPP_ID,c,CATEGORY_ID1&CATEGORY_ID2,,,,10,,1}
    How can I go about doing it?
    2.
    I am looking to allow users to input a webapp item and allow them to select a category to tie to that item.
    <label for="CAT_Category">Category (You may select more than 1)<span class="req">*</span></label>
        <select name="CAT_Category" id="CAT_Category" class="cat_listbox" rows="4" multiple="multiple" style="height: 60px;">
        <option value="CATEGORY_ID1">--- Option 1</option>
        <option value="CATEGORY_ID2">--- Option 2</option>
        </select>
    Is it possible for me to change the listbox style into a checkbox style such that the user doesn't have to control+click multiple options?

    No answer to No.1 but I really want to find it out too.
    No.2 
    If you already know list of the categories & ID you can manually create a list of checkboxes
    <input type="checkbox" name="CAT_Category" value="89081" />
    <input type="checkbox" name="CAT_Category" value="89082" />
    <input type="checkbox" name="CAT_Category" value="89083" />
    something like that should work

  • How to make sub-categories in iTunes playlists

    I have many playlists for separating certain types of music, like most people do.  I was wondering if there is a way to place sub-categories in playlists already made.  For example:
         iTunes>Playlists>Recently Added>10 Most Recently Added>5 Most Recently Added.
    I would like to be able to view/listen to the originated playlist; i.e. "Recently Added" which contains all the sub-playlists; i.e. "10 Most Recently Added" and "5 Most Recently Added" but also be able to access the sub-playlists within the original playlist and listen to solely the songs within the sub-category.
    Basically, is there a way to put a playlist within a playlist without having to use and edit auto-updating smart playlists manually?

    You can't make a playlist inside a playlist. You can nest playlists inside of folders and if you click on the folder it will show a summation of all the playlists contained in it.

  • How to display sub table and NOT repeat each detail line?

    I am going nuts trying to get this thing to display correctly, so I am someone can help me. I am trying to display a sub table (not subreport - tried that and it doesn't work) for detail records. For Example on an invoice items may have child items.
    I am using Crystal 11
    I have two tables iDetail and iSubDetail
    My detail section looks like this:
    D   iDetail.itemNum                              iDetail.price
               iSubDetail.itemNum
    I have a Left Outer link from iDetail.itemNum  --> iSubDetail.itemNum
    I should see something like this:
    itemOne                  $50.00
         subItemOne
         subItemTwo
         subItemThree
         subItemFour
    itemTwo                $25.00
    itemThree              $30.00
    etc...
    Instead, my Crystal report displays this:
    itemOne                  $50.00
         subItemOne
    itemOne                  $50.00
         subItemTwo
    itemOne                  $50.00
         subItemThree
    itemOne                  $50.00
         subItemFour
    itemTwo                $25.00
    itemThree              $30.00
    etc...
    and of course the total for the invoice is wrong.
    I have tried all the different links and a subreport, but I cannot get it to display correctly. Does anyone have any ideas??

    I tried subreport but I can't figure out how to turn it OFF for non-relative items; from the above example data I would get with a subreport:
    itemOne $50.00
      subItemOne
      subItemTwo
      subItemThree
      subItemFour
    itemTwo $25.00
      subItemOne
      subItemTwo
      subItemThree
      subItemFour
    itemThree $30.00
      subItemOne
      subItemTwo
      subItemThree
      subItemFour
    Looks great for itemOne, but I can't turn it off for itemTwo and itemThree. I have tried hiding the subreport if iDetail.itemNum =
    iSubDetail.itemNumi, but if SubDetail table is accessed it repeats the iDetail record like the original post.
    I tried hiding it in the subreport, but it does not know what the main report record is. I couldn't find anyway to PASS the itemNum from the main report to the subreport. If I could pass it as a variable, I could just hide the subreport when it is NE to iSubDetail.itemNum.
    I kind of got it working by grouping the iDetail record by itemNum. However, the problem with that is when there really is multiple iDetail records, the invoice only shows one!! So, I would still like to find a better solution,
    Thanks for your reply.

  • How to display sub and sup HTML tags?

    Hallo,
    I use the htmltext property of the text control a lot for displaying Infotext, but this property can not render then <sub> and <sup> Tags. How can I display Infotext where I need, for example, math formulas within the text flow???
    Thanks
    Hans

    Alex,
    Thanks for this information. This framework should meet a lot of my demands, but for this actual project, it's too complex, I only need this 2 tags additional to the existing, and I substituted the <sub> tag by a <font size='-2'> and the <sup> tag by drawing a spezial character (&#8593;). With this drawing of special characters, I can also do a lot.
    But nevertheless that's the framework I need for future projects!
    Thanks
    Hans

  • How to display sub total text in ALV grid display reporting

    Hi,
    I want to display a text 'SUB TOTAL'  in Sub total  row  of an ALV report.
    Presently I am getting the name of the field used in sorting to get sub totals. But I required to display own text. Could you please give me solution.
    Thanks
    Giridhar Karnam

    For doing this u need to simply modify the layout properties, please award points if found helpful
    DATA: L_LAYOUT TYPE SLIS_LAYOUT_ALV.
    L_LAYOUT-SUBTOTALS_TEXT = 'GEN SUBTOT'.
        CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
          EXPORTING
            I_CALLBACK_PROGRAM = SY-REPID
            IS_LAYOUT          = L_LAYOUT
            IT_FIELDCAT        = IT_FIELDCAT
          TABLES
            T_OUTTAB           = IT_FINAL
          EXCEPTIONS
            PROGRAM_ERROR      = 1
            OTHERS             = 2.

  • How can I search sub categories in iBooks?

    Okay, after generally loving apple products, this one has me raging mad. When I search iBooks, there is a drop down list of categories and authors.
    But sub categories -- as found in any normal bookstore -- are nowhere to be found.
    For example, searching "Ferrari" will drop down a variety of books, two of which are in the Transportation category.  But, Transportation is not listed in any of the categories in the basic iBooks menu.
    Words such as "history", "science and technology" cover a LOT of ground, and there MUST be better navigation to zero in on topics of interest.
    So, how can I find a list of sub-categories so I can spend my iTunes wealth?

    Sadly I don't think you can. I have a number of books published in the Games and Card Games category (as identified by BISAC code) but Apple don't have a Games category either. However in the iTunes Store (not iBooks) if I search for 'Games' and then select the 'Books' Media Type filter I can find the books in the results. Perhaps the same ill happen if you try with 'transportation'. Now that books are searchable directly from the iTunes store I find it much easier to search there rather than on my iPad.

  • How do we create a a main podcast category with sub-categories similar to the way many bands have subcategories and artwork for each of their albums?

    How does a content producer create a main category with sub-categories similar to the way many bands have subcategories and artwork for each of their albums?

    I think you're talking about an 'Artist Page' in which several podcasts are 'aggregated' into one iTunes Store page?  This Apple Tech note deals with the subject (scroll to the bottom of the page):
    http://www.apple.com/itunes/podcasts/creatorfaq.html
    Although your mention of albums makes me wonder whether there you are talking about albums and songs in the music Library? - podcasts don't come in albums.
    You've also asked this in another forum:
    I have created a feed for our podcasts, but they are all under one umbrella. We would like to have subcategories under one main category.
    'A feed for your podcasts' doesn't make sense - a podcast has one feed (and vice versa). Are you confusing 'episodes' with 'podcasts'? A podcast is a collection of episodes - you can't categorize the episodes separately. The category shows only on the Store page and applies to the entire podcast. The 'Artist' page may again be what you are aiming for - if not perhaps you could post an example of what someone else is doing that you would like to.

  • PSE user since the old Album `1.  Accumulated a 20K or more photo catalog.  Stopped upgrading at PSE 10.  How do I translate all the categories, sub categories and tags in PSE 10 to the new versions that look alot like the system in Lightroom??

    How do I convert my catalog and the Categories, Sub Categories, and Tags in PSE 10 to the newer versions like PSE 12 or 13??
    The new organizer looks a lot like Lightroom with the computers filing system, not the organizer I have been using for about 10 years.
    Can I upgrade and somehow retain all the organization I presently have?

    How do I convert my catalog and the Categories, Sub Categories, and Tags in PSE 10 to the newer versions like PSE 12 or 13??
    The new organizer looks a lot like Lightroom with the computers filing system, not the organizer I have been using for about 10 years.
    Can I upgrade and somehow retain all the organization I presently have?

  • How to locate photos using keywords in sub-categories?

    Is there a way to locate your photos according to the sub-categories in keywords, such as under "animals" I have "wild" and "domestic"? When I search for them with the inspector, I only can access the main category.
    Message was edited by: Host <to clarify subject>

    How are you searching for keywords? I mean, when you say you search for them with the inspector, are you referring to, under the "Library" tab in the left pane, the search field right at the top of that list, or the search field at the top of your "Keywords" HUD?
    When I try to search keywords using the keyword HUD, it hangs for several minutes between each keystroke until I finally give up. (I have a lot of keywords - I used Keyword Manager in iPhoto, and the conversion to Aperture didn't preserve the hierarchy, only the list.)

  • How do I reinstall PSEv8, then relink to the images, tags & sub categories?

    I am running PSEv8 on a PC w/ windows 7.  Experiencing several errors, such as;
    1. file, get photos and videos, then from files and folders - error -> unable to get photos.
    2. click on a sub category, it does not open.  the current view stays and does not open to the new sub category.
    I think reinstalling psev8 is the solution, but I don't want to lose the data I have already entered, ie tags the and sub categories.
    What file is this data stored in?  or what should I do before I uninstall then reinstall to keep the data?

    Hi,
    Whatever you see in Organizer is kept in a databse called Catalog and Catalog is kept separately. When you uninstall PSE8, catalosg remain on your machine.
    Before I say go ahead with uninstallation, I would like to know more about your problem and it would be great if you can share some screenshots when you see problem. It will help me understaing the exact problem.
    And it may be possible to resolve your problems without uninstall...

  • Creating a table based on Category and Sub-Categories

    Hi
    I am building an extensive home budget. I have 3 tables showing, monthly, quarterly and annual costs. These tables contain Categories and Sub-Categories. I have created a table and chart to show the percentage of the total costs for each Category. For the two Categories with the largest percentage of the total cost I would like to create a table (and chart, no problem, based on my first template) showing the breakdown of the Sub-Categories. However this information is to be retrieved from 3 tables, and I was hoping to create the table automatically. If not I must individually go to each different table and find the relevant Sub-Category and manually input the text and link the cell for the value to my new table. This gives room for error in my opinion and is a nuisance as my budget file now contains about 8 sheets so even on 27" iMac requires a considerable amount of scrolling around.
    Am I expecting too much of Numbers or missing something totally? I do not have much experience of spreadsheets, just basic tables and calculations in Excel before coming over from the Dark Side!
    Many thanks for any advice
    Shirley

    Hi Barry
    Many thanks for your reply and apologies for my delay in responding.
    Hope I am doing this photo embedding correctly via Flikr:
    Page 1
    I apologise also for my incorrect terminology - please bear with me on this, unfortunately I never used Excel much so terminology is pretty much my own . I believe that I have one sheet, which then changes into different numbers of pages depending on the page size I set, so with these examples 4 pages. 14 tables and one chart at this time
    The tables on the second screenshot were the only way I could figure out how to retrieve the data for the final table and chart (% Total Monthly Expenses)
    Now what I want to do is for each (or in fact the three largest) budget categories is to give a breakdown of what in that category is, percentage wise, costing the most. Preferably, I want to get this breakdown category information automatically so that human error is ruled out (that I cannot overlook an entry in the any of the tables in my first example). Perhaps I am asking too much, but I thought it was worth asking!
    Again many thanks for responding and for your help with this
    regards
    Shirley

  • How do I make categories under My Templates, as is done in page layout and word-processing?

    How do I make categories under My Templates, as is done in page layout and word-processing? I have over 50 of my own templates and want to categorize them. For example: son's homework, business, etc. Thanks

    Here are some screenshots of my organization. Your sub-folders need to be in the same folder as My Templates, NOT in My Templates which is confusing.

Maybe you are looking for

  • Error when Call DS Smoke Test from Siebel.

    Hi , I am trying to test the DS Smoke test from Siebel. I have configured as per the document. but when I click the Button "DS Smoke Test" button I am getting below error Error invoking service 'Policy Automation Determination Server', method 'Assess

  • TV Shows outside of the US?

    Does anybody know when (or even if) Apple are planning on extending giving people outside the US the option of downloading TV Shows? In the UK we have the option to download Music Videos (yawn!) or Movie Trailers (yawn! yawn!). Fair enough, we can al

  • Boot hangs for while on 2.6.38 waiting for nVidia audio device.

    Hi everyone, I'm having a boot hang loading pci 0000:00:07.0, it's getting kinda annoying waiting for those 12 seconds. This problem has been ocurring on and off after kernel upgrades. Just wondering if anyone out there knows how to get around this p

  • My iphone won't import photos automatically to my pc when connected to itunes??

    For some reason when I connect my iPhone 4 to my computer it won't automatically import any new photos like it used to. I am running windows 7, 64 bit and iTunes 11 on my pc... Any ideas??

  • Can any body advise me what anti virus i can use?

    ey, good afternoon all. i got a message when i'm trying to download something that i need to install an anti virus so that my downloading will not get slow and also my internet connection. the message advice me to download avira. can any body who is