cancel
Showing results for 
Search instead for 
Did you mean: 

on Resume Plug another iview ?

Former Member
0 Kudos

Hi Webdynpro Java guru's ;

I have an suspendable application and it has 3 iviews (iview a , ivew b , iview c).

my application starts with iview a then plugs iview b. In iview b application navigates another application.

After some process it returns back and my first application resumes. When resume plug called. i want my

application plug iview a .

How i can do this ?

Pls help

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Hi Salih,

you work on Portal, don't you?

Suspend and resume needs plugs only if the app runs standalone, if you are on portal, just set status to suspend and portal navigation does the rest for you.

Have a look at the documentation: [Suspend and Resume Plug|http://help.sap.com/saphelp_nw70/helpdata/en/68/3aee42c4257176e10000000a1550b0/frameset.htm]

kind regards

Stefanie

Former Member
0 Kudos

Hi,

Were you able to solve this issue ?

Thanks,

Vinit

Former Member
0 Kudos

Hi,

When u click resume plug u want application plug iview a right ?

String Url = "application iview a url";

wdThis.wdGetSusResWindowInterfaceViewController().wdFirePlugResumePlug(Url);

u store iview a url in Url variable and pass that variable to resume plug.

Regards,

sunaina Reddy T

former_member197348
Active Contributor
0 Kudos

Hi Salih,

Try this:

In view b, before navigating into another application fireplug to view a.

e.g.

If you are using WDPortalNavigation.navigateAbsolute(...);

Then try like this:

wdThis.wdFirePlugToA();
WDPortalNavigation.navigateAbsolute(...);

regards,

Siva

Former Member
0 Kudos

Hi,

U pass iview a url to resume plug then it goes to iview a.

Regards,

Sunaina Reddy t

Former Member
0 Kudos

I did'nt understand clearly.

pls more detail.