cancel
Showing results for 
Search instead for 
Did you mean: 

Inter IView communication with WebDynpro

Former Member
0 Kudos

Hi all,

Is is possible to have two IView in the Portal that communicate with eachother? And (ofcourse) how would I do that?

Thanks,

Jeschael

Accepted Solutions (1)

Accepted Solutions (1)

venkatakalyan_karanam
Active Contributor
0 Kudos

Hi

By EPCF (Enterprise portal client frame work) its an api.We can communicate between the two iViews in the portal.

Regards

kalyan

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi,

Make use of portal eventing

Raising a portal event

WDPortalEventing.fire(nameSpace, event, parameter)

Subscribing to a portal event

WDPortalEventing.subscribe(nameSpace, event, action)

Sample


WDPortalEventing.fire("urn:comp.sap.tc.webdynpro.test", "MyEvent", parameter);


WDPortalEventing.subscribe("urn:comp.sap.tc.webdynpro.test", "MyEvent", wdThis.wdGetMyactionAction());


Regards,

Ayyapparaj