Skip to Content
0
Former Member
May 21, 2007 at 08:37 AM

Unexpected profile property returned in Application Integrator Layer

20 Views

Hello,

I defined my own application integrator component with my own layer.

When I try to get the iview property com.sap.portal.pcm.Title, VRB _ com.sap.portal.pcm.Title instead of the actual iView name.

I already figured out that properties defined for the component in portalapp.xml (like System) are returned correctly, but it doesn't help when I insert the property com.sap.portal.pcm.Title there.

Does anybody know what I'm doing wrong?

public void processLayer()

{

IPortalComponentRequest portalRequest = getRequest();

IPortalComponentContext componentContext =

portalRequest.getComponentContext();

IPortalComponentProfile profile = componentContext.getProfile();

String applicationName = profile.getProperty("com.sap.portal.pcm.Title");

...

Thanks for your help,

Elmar