cancel
Showing results for 
Search instead for 
Did you mean: 

How to Call Transaction iView that calls RRMXP from Web Dynpro for ABAP

Former Member
0 Kudos

Dear Experts,,

I'm developing an application in Web Dynpro for ABAP wherein I'm supposed to give a link that should open an SAP Transaction iView that calls tcode = 'RRMXP' and I pass the application parameter as QUERY/WBID = <BI query/Workbook ID>.

I tried calling com.sap.portal.appintegrator.sap.bwc.Transaction iView, but it asks for system/application and GUI type parameters. How to pass through the URL?

Any help would be highly appreciated

Regds,

Srini

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member253880
Participant
0 Kudos

Hi Srini,

check the portal navigation documentation.

The absolute portal navigation maybe could solve you problem.

Use the Launcher Parameter for passing data (e.g. SAP logical system)

http://help.sap.com/saphelp_nw70ehp1/helpdata/en/b0/f86f4132f15c58e10000000a1550b0/frameset.htm

Hope it will help you.

Kind regards

Axel

Former Member
0 Kudos

Thankx Mate!! Solved it myself. Was having problems with Navigation Absolute method. Used the SAP Transaction iView to pass params and it worked.

Forgot to Update the thread. The issue stands resolved and closed.

Regds,

Srinivasan.

Former Member
0 Kudos

Hi Srini,

could you kindly post the solution you've found? I have a similar requirement to call an ERP transaction out of the CRM Web UI (could be Web Dynpro as well).

Is it actually possible to just call an (portal) url that then starts the SAPGUI for windows?

Many thanks & regards

Wolfgang

Former Member
0 Kudos

Hi Wolfgang,,

My problem was that I was supposed to call the BeX Web Analyser ( a BI excel based tool - client installation) on click of a button in my WD-ABAP application. I solved it as follows :

In the portal pcd, I cam across a folder content provided by SAP. Here, you'll find standard template iViews that can be used to call applications ( for which you make iViews). I had to call an SAP TCode : RRMXP so as to call a BI Workbook/Query.

So, I called the standard iView template for sap_transaction_iView as follows :

        • irj/servlet/prt/portal/prtmode/preview/prtroot/'

'pcd!3aportal_content!2fcom.sap.pct!2ftemplates'

'!2fiviews!2fcom.sap.portal.sap_transaction_iview?'

'sap-config-mode=true&System=BWR3System&TCode=RRMXP'

'&GuiType=WinGui&OkCode=y&ApplicationParameter=' <appnm> into url.

l_popup =

l_window_manager->create_external_window( url = url

has_menubar = ' '

  • has_statusbar = ' '

has_toolbar = ' '

has_location = ' ').

l_popup->open( ).

*****

And , it worked.

Any more help pls feel free to revert.

Regds,

Srini