cancel
Showing results for 
Search instead for 
Did you mean: 

Browse portal content

Former Member
0 Kudos

Hi,

We have requirement to show the portal content in webdynpro tree structure, I have seen the same type of scenarion in blog (/people/prakash.singh4/blog/2005/07/28/browse-roles-folders-pages-iviews-assigned-to-a-user-ep6-sp9-and-higher).

But the blog explains uisng dynpage, can anybody have done the same type of application in webdynpro?.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi

The following example shows how to get the list of visible iViews using the page service:

IWDPageService pageService

= (IWDPageService) WDPortalUtils.getService(WDPortalServiceType.PAGE_SERVICE);

String [] iViews = pageService.getVisibleIViews();

The returned array contains the names of the visible iViews.

Former Member
0 Kudos

Hi,

Thanks for your quick response, I have the code how to get all iViews, pages and worksets. I want to develop those in a tree structure if you see that blog you can get what our requirement is.

First I want to display all teh available roles in root node, when I expand that one I can have worksets under that node like that so on.. I want to display.

Answers (0)