cancel
Showing results for 
Search instead for 
Did you mean: 

Launching transaction iview frm webdynpro iview

Former Member
0 Kudos

Dear experts,

I am launching a transaction iview from a webdynpro iview. On click of button it launches the transaction:CV02N.

The screen variables are: DRAW-DOKNR and DRAW-DOKAR.

I am using absolute navigation.

the code is as below:

WDPortalNavigation.navigateAbsolute("ROLES:"path,WDPortalNavigationMode.SHOW_HEADERLESS_PORTAL,null,null,WDPortalNavigationHistoryMode.NO_HISTORY,null,null,"DRAW-DOKNR="docnos+"&DRAW-DOKAR=DRW&OkCode=/00",null,false,false);

I can see the name value pair in the URL of the transaction iview which opens in the new window. But I just see the initial window of the transaction and I need to enter the parameters again to see the result.

Is there any way to see the result directly?

Thanks in advance for your help.

Regards,

Rahul

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member182534
Active Participant
0 Kudos

Dear Rahul,

If you see You are not passing any data to the new one which you are opening.

So the only way is to pass data so that you can do what you want to do.

There are many ways to pass the data one of them is to send data through url and many more.

Regards

Piyas Kumar Das.

Former Member
0 Kudos

Dear Piyas,

Thanks for reply.

If you see attribute: "DRAW-DOKNR="docnos"&DRAW-DOKAR=DRW&OkCode=/00"

Here docnos is a string which takes value dynamically.Rest of the values are hardcoded.

When I launch the transaction iview, I can see the values being passed in the URL.

Regards,

Rahul

Former Member
0 Kudos

I set the ok code in the transaction iview. It started working now.