cancel
Showing results for 
Search instead for 
Did you mean: 

dynpro with EP6 - security

Former Member
0 Kudos

hi,

i am learning dynpro, so i am sorry for asking this propably stupid question.

I have some dynpro application and i would like to access it only of the portal and only for some users/roles. How to do it in the simplest way?

thanks

Jiri Juranek

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

if( WDPortalUtils.isRunningInPortal() ) {

work properly

} else {

raise warning // only works in portal.

}

Former Member
0 Kudos

thanks!

Answers (1)

Answers (1)

Former Member
0 Kudos

Your webdynpros end up as iViews that are integrated into the portal. Just add the iViews to the Pages that apply to the specific roles under the Content Administration > Portal Content.

Former Member
0 Kudos

Yes, but how can i say to application that it may be called only from portal?