cancel
Showing results for 
Search instead for 
Did you mean: 

FPM Error

Former Member
0 Kudos

Hi All

I am trying FPM example in (http://help.sap.com/saphelp_erp2005/helpdata/en/43/3b8e8cb4ab1800e10000000a1553f6/frameset.htm)

I have given application properties as follows

(based on this thread )

sap.xss.configurationComponentDC : sap.com/pcui_gp~xssexamples

sap.xss.configurationComponentName : com.sap.xss.xssexamples.sflight.cc.CcSFlight

But i getting this error

com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Failed to create deployable object 'sap.com/xssexamples' since it is not a Web Dynpro object.

at com.sap.tc.webdynpro.serverimpl.core.deployment.AbstractDeployableObject.<init>(AbstractDeployableObject.java:106)

at com.sap.tc.webdynpro.serverimpl.wdc.deployment.DeployableObject.<init>(DeployableObject.java:59)

at com.sap.tc.webdynpro.serverimpl.wdc.deployment.DeployableObjectFactory.getDeployableObject(DeployableObjectFactory.java:91)

at com.sap.tc.webdynpro.serverimpl.wdc.deployment.DeployableObjectFactory.getDeployableObjectPart(DeployableObjectFactory.java:108)

at com.sap.tc.webdynpro.services.sal.deployment.api.WDDeployableObject.getDeployableObjectPart(WDDeployableObject.java:62)

Please help me

Thanks

Karthi D.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Satya

I didnt used Selfservice admin to define roadmap steps.

I implemented CC.

Thanks

Karthi D

Former Member
0 Kudos

Hi,

u have to define the message key with the lable u would like to have for the

road map step in the message pool of the CC and access them with text accesor in the code and define them when u create the roadmap steps .

like

ropSelect = new ROPStep( "1",

wdTextAccessor.getText(

SFlightConstants.PERSPECTIVE_SELECT),

null );

Regards,

Satya.

Answers (8)

Answers (8)

Former Member
0 Kudos

Hi,

How did define the roadmap steps?

did u use the Selfservice Admin and defined in the portal or have you

implemented the configuration in theInterface controller of CC?

Regards,

Satya.

Former Member
0 Kudos

Hi,

For label of RoadMap you need to specify them as according in MessagePool of CC.

Regards

Raghu

Former Member
0 Kudos

Hi,

You need make changes in your CC Component.

In your CC component you find LoadConfiguration() method here you need to set your defined VAC and also you need to set your Perspectives and also Navigation between the perspectives.

Revert me if you have any queries

Regards

Raghu

Former Member
0 Kudos

Hi Satya

Thanks

i am able to see the Roadmap steps and navigation button without label.

Please let me know how many action method and events to be declared.

Regards

Karthi D.

Former Member
0 Kudos

Hi,

For label of RoadMap you need to specify them as according in MessagePool of CC.

Regards

Raghu

Former Member
0 Kudos

Hi,

For label of RoadMap you need to specify them as according in MessagePool of CC.

Regards

Raghu

Former Member
0 Kudos

Hi,

For label of RoadMap you need to specify them as according in MessagePool of CC.

Regards

Raghu

Former Member
0 Kudos

Hi,

Put the following piece of code in the onInit() of the CC of the VACs


this.fpm = fpm;
fpm.attachComponentToUsage(wdThis.wdGetAPI().getComponent(), wdThis.wdGet<Model Name>ComponentUsage());

Former Member
0 Kudos

Hi Satya

Thanks

Now i am getting this error

com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.attachComponentToUsage(FPMComponent.java:922)

Thanks

Karthi D.

Former Member
0 Kudos

hi,

u have given the DC in application properties as sap.com/pcui_gp~xssexamples

and some where in your application u might have defined a variable for tha DC name as sap.com/xssexamples and are trying to use it . which doesnt match with the application properties.

check this once.

Regards,

Satya.

former_member192434
Active Contributor
0 Kudos

Hi

use this

try the correct URL for calling CC

http://hostname:50200/webdynpro/dispatcher/sap.com/grc~ccappcomp/ComplianceCalibrator

This is the URL since CC 5.2 SP05, before it was

http://hostname:50200/webdynpro/dispatcher/virsa/ccappcomp/ComplianceCalibrator

The first one should apply to you.

Thanks