Hi All,
From my VC application, i want to pass 1 parameter value to webdynpro iview field. From the "signal out" of my vc iview, i have taken the "EPCM event", and "name". and have mentioned in webdynpro Java iview.
public void wdDoInit()
{
//@@begin wdDoInit()
WDPortalEventing.subscribe("urn:com.sap.vc:epcm", "Filter1",
wdThis.wdGetReactPortalEventingAction() );
//@@end
}
public void onActionReactPortalEventing(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent, java.lang.String dataObject )
{
wdContext.currentContextElement().setName(dataObject);
//@@end
}
How can i make the webdynpro iview take up the parameter from VC iview? Can anyone please help me out in solving this issue?
Regards,
Divya