Embedding Transaction IView into Webdynpro TabStrip

Hi,
    My Requirement is ,I have Created Transaction IView ,I want to access the Transaction Iview into Webdynpro TabStrip. I am able to access Iview but it is overwriting existing screen i..e complete Webdynpro screen disappears only Transaction Iview displays. I want Transaction Iview to be displayed as part of the TabStrip.
Thanks & Regards
Madhan Mohan

Hi Satyajit,
         I am having a similar kind of requirement , i have to navigate from webdynpro applicaiton to transaction iview ..once user is done with the transaction ( say maintained the material ) i have to come back to the previous screen ... but i think this is not possible as there will be no way to know that user is done with the transaction .. so i though of creating a Iframe and a button on a webdynpro view and link the Iframe to the transaction iview . so user will have to click on the button once he is done with the transaction .. but according to you .. the transaction will be locked if we link that to the Iframe .. please let me know how to resolve this pronblem. or is there any other solution to my problem ..

Similar Messages

  • Embedding Portal iview into some website (non sap)

    Hi
    Can you please tell me the possibilities of Embedding portal iview into website(non sap portal)?
    Thanks in advance.
    Regards
    Pranav
    Edited by: Pranav Goswami on Mar 25, 2009 12:14 PM
    Edited by: Pranav Goswami on Mar 25, 2009 12:16 PM

    Hi Pranav
    You need to give the URL for the application with pcd of iview.
    Please ask you portal or webdynpro consultant he might help you in that.

  • Calling a SAP Transactional iview into a WebDynpro

    Hi,
       Can we call a sap Transactional URL through a webdynpro Application?
          I need to call a SAP Transaction using a webdynpro Link.Is it possible by creating a SAP Transactional Url and then calling this Transactional URL Through a link of WebDynPro.If so how?
    Regards,
    Raja Akella.

    Raja,
    In one of the client we needed to create a lot of iviews pointing to SAP transactions and then put them in Detailed Navigation. Sort of like user menus in SAPGUI. I ended up creating mass content for this. There is a <a href="https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/964">weblog</a> you can refer or better the <a href="https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/aaa54576-0501-0010-2a91-d4aeb886bc27">howto</a> guide.
    - Pankaj
    - Pankaj

  • Interaction between SAP Transaction Iview to webdynpro application

    Hi All,
    I have a requirement where in,
    I have one SAP Transaction Iview and one Webdynpro (Java) Iview,
    Now what I have to do is,
    I need to call Webdynpro app ( or iview) as a pop up from Transation Iview (e.g. click on some button on SAP screen),
    webdynpro screen will be opened,
    do some processing there (calling some web service, getting some data from an external system) and then posting response data back to some screen field in Transaction Iview.
    It is like on a standard SAP transaction, I want to open my custom webdynpro screen to do some data operation and fill response data back to SAP screen once that is done.
    any ideas would be heavily appreciated and rewarded!!!!!
    Regards
    Deepak

    I wrote the code like below:
    WDPortalNavigation.navigateAbsolute("ROLES://<IViewPath>", WDPortalNavigationMode.SHOW_EXTERNAL,
    (String)null,
    (String)null,
    WDPortalNavigationHistoryMode.ALLOW_DUPLICATIONS,
    (String)null,
    (String)null,
    "number=123456");
    In IView application property, I wrote:
    CRMT_SEARCH_LOC-CARD_NO=<Request.number>
    (L.H.S is the screen field name)
    then I got following exception at portal:
    An exception occurred while processing a request for :
    iView : pcd:portal_content/<Iview path>
    Component Name : com.sap.portal.appintegrator.sap.Transaction
    Exception in SAP Application Integrator occured: Unable to process template 'CRMT_SEARCH_LOC-CARD_NO=<Request.number>', because 'number' is an invalid terminal property of context 'Request.'..
    what went wrong????

  • How to pass dynamic params to Transaction iView from webdynpro java app

    Hi Experts,
    I am trying to call a transaction iview in PCD from my Dynpro application with a dynamic param.
    Can somebody help me generating the URL for transaction iView and passing the dynamic params???
    Thanks in advance
    biroj...

    Hi,
    Generating the URL:
    StringBuffer strBuff = new StringBuffer("/webdynpro/dispatcher/xyz.com/xx~xxxx~xxxxx/xxxxxApp");
              strBuff.append("?");
              strBuff.append("TCODE=");
    strBuff.append("" + WDProtocolAdapter.getProtocolAdapter().getRequestObject().getParameter("TCODE"));
    IWDWindow window = wdComponentAPI.getWindowManager().createNonModalExternalWindow(strBuff.toString(), "TCODEWindow");
    window.show();
    Please try the above code snippet helps you to create a TCode iView in a new window.
    or
    We can include URL parameters in a portal URL that calls a Web Dynpro page and these parameters can be forwarded to the otehr iVIews on the page.
    Example:
    http://xxxxxxxxx.com/irj/servlet/prt/portal/prtroot/com.sap.portal.appintegrator.sap.WebDynpro?System=SAP_XXXXXXXX&WebDynproNamespace=xxxxx.com&WebDynproApplication=xx~xxxx~xxxx/xxxxApp&DynamicParameter=u201DTCODE=VA02u201D
    For more information Please go through this:
    http://help.sap.com/saphelp_nw04s/helpdata/en/c3/235a428a1e9041e10000000a1550b0/frameset.htm
    Thanks
    Krishna

  • Trying to opn SAP Transaction IView from Webdynpro

    Hi Friends,
    I need to open a SAP Trancation Iview from Webdynpro (on click of some button) and pass some values to the screen fields,
    I am using the code below(which I found in many threads):
    WDPortalNavigation.navigateAbsolute("ROLES://<Iview ID excluding pcd>",
    WDPortalNavigationMode.SHOW_INPLACE,
    (String)null,
    (String)null,
    WDPortalNavigationHistoryMode.ALLOW_DUPLICATIONS,
    (String)null,
    (String)null,
    (String)null);
    The problem is nothin happened on account of execution of this code,
    I mean not even a blank screen gets opened.
    I am not even getting any error/exception.
    Please advice what could be the possible cause.
    Regards
    Deepak
    Edited by: Deepak Gupta on Mar 17, 2008 12:15 PM

    I wrote the code like below:
    WDPortalNavigation.navigateAbsolute("ROLES://<IViewPath>", WDPortalNavigationMode.SHOW_EXTERNAL,
    (String)null,
    (String)null,
    WDPortalNavigationHistoryMode.ALLOW_DUPLICATIONS,
    (String)null,
    (String)null,
    "number=123456");
    In IView application property, I wrote:
    CRMT_SEARCH_LOC-CARD_NO=<Request.number>
    (L.H.S is the screen field name)
    then I got following exception at portal:
    An exception occurred while processing a request for :
    iView : pcd:portal_content/<Iview path>
    Component Name : com.sap.portal.appintegrator.sap.Transaction
    Exception in SAP Application Integrator occured: Unable to process template 'CRMT_SEARCH_LOC-CARD_NO=<Request.number>', because 'number' is an invalid terminal property of context 'Request.'..
    what went wrong????

  • Launching transaction iview frm webdynpro iview

    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

    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

  • Transaction IVIEW or WEBDYNPRO

    Hi,
    I have to deliver a new functionality using the EP. Is it better to create a general program and a transaction iview or to create a webdynpro? What's the advantage of each approach?

    Web Dynpros will perform better, transaction iViews use webgui (ITS) behind the scenes. Of course if your application has to be accessible to SAP GUI users as well, then you should take the classic dynpro route. I suggest you implement the functionality in a way that you can easily access it from either UI, e.g. use ABAP classes.

  • Calling a Report/Transaction iview from Webdynpro..

    Hi all,
              Our first issue is we have a scenareio, where we need to execute reports(ABAP Program) from webdynpro. Is it possibile to execute a standard report from webdynpro? using JCO. Also tell me how to pass the input/output parameters.I am not allowed to create RFC.I can use only standard BAPI.
              Our second issue is we created one transaction type callable object, and we want to call this transaction callable object from webdynpro, in another callable object in GP. Is this Possibile in webdynpro. We tried using portal navigation, but it is working for normal webdynpro iviews only, not for url iviews also.
              Does any body know the answer for the above issues. please let us know.
             Thanks in advance.

    hi,
    1) it is not possible in web dynpro to call abap reports, what you can do is creating wrapper of Remote enabled FM around the report. But you dont have authorisation to create BAPI, so gotta take use of standard BAPIs.
    ABAP Report in WebDynpro
    this link will help you out for that(calling standard bapi in WD)
    https://www.sdn.sap.com/irj/sdn/downloaditem?rid=/webcontent/uuid/f0b0e990-0201-0010-cc96-d7ecd2e51715 [original link is broken]
    2) go thru this links
    WebDynpro Application as callable object in GP?
    Webdynpro callable object - RFC model
    implenting webdynpro as a Calable Object with GP Interface
    hope it helps
    regards

  • Transaction iView - pass parameters to non-default tab

    Hi Experts,
    I have a requirement to call transaction iView from  Webdynpro ABAP application by passing some default values.
    I am able to call the iView and also able to pass parameters. My requirement is to pass values to the tab in iView which is not the default tab when I execute the TCode.
    Is this possible using absolute navigation...??
    If yes please let me know how can that be achieved...
    Thanks in Advance....!!!!
    Regards,
    Shruti Shah

    Hi,
    Do you  already know a  way to reach this transaction to a desired tab with out using webdynpro ?. Is it possible at all in any way to start this transaction and position to a particular TAB.
    If you do not know that then i am afraid that no one could help you out in forum.
    Good luck

  • RELATED TO TRANSACTION IVIEWS

    where system objects related to ess and mss are stored in enterpriseportal?
    HOW WE  WILL DISABLE THE BUTTONS  ACTION PRESENT IN FORM16 WHICH IS CALLED AS TRANSACTION IVIEW INTO PORTAL?

    Hi Phani,
    If you want to see the system objects you need System Administrator Role.
    System Object - using this some of the applications connect to the backend(Example: R/3).
    IF you want to see the system objects open the System Administrator --> Portal content you can find the system objects.
    Secong question is not clear. Please give us brief description.
    If it is helpful give me some points.
    Kind Regards,
    Phanikumar.

  • WebDynpro iView OR Transaction iView

    Hi all,
    in EP, there are many types of iView. but I want to focusing in one type of iView only.
    So, I want to know which one is better,
    WebDynpro iView or using Transaction iView.
    is there any documentation from SAP?
    like Security, Performance, System requirements between those two.
    thank you.

    Hello Adyt,
    Answer might sound typical theoratical
    Selection of WebDynpro iView or SAP Transaction iView depends upon the client's need.
    WebDynpro Applications are used when we want to create our own reports with specific branding colors,theme, adding buttons, customised selection criteria for generating report.
    Transaction iView on the other hand is used when client wants exactly same look and feel of R3 , using Enterprise Portal.
    Sometimes SAP transactions can't be converted into application, e.g. SAP internal Mail box (Transaction SWBP).
    In such cases no other option than using Transaction iViews !
    About requirements, SAP logon pad needed to be installed on the user's terminal to see transaction iView with iView type selected as "SAP Gui" iView.
    You can bypass this need by selecting iView type " Web Gui"
    For webdynpro you need to have NWDS(Netweaver Development Studio) for application development and java skills as well.
    For transaction iView you need to have user mapping between Enterprise Portal and the backend System.
    To view WebDynpro iview one does not need user mapping.
    Thanks and Regards,
    Pradnya

  • How to pass parameter into transaction iview ?

    Hi experts,
    I want to know "how to pass parameter into transaction iview ".
    Regards,
    Krishna Balaji T

    Hi Krishna,
    Not sure if this can help you.
    1) Passing a parameter to a transaction iview (I saw a resolved suggestion)
    Passing a parameter to a transaction iview
    2) Passing a parameter from the portal to R3 (helpful info for you)
    Passing a parameter from the portal to R3
    3) Create SAP Transaction iView using SAPGUI for Windows (Great Blog and info about TA Iview)
    Create SAP Transaction iView using SAPGUI for Windows
    Please check the following link for Transaction Iviews
    http://help.sap.com/saphelp_nw2004s/helpdata/en/02/f9e1ac7da0ee4587d79e8de7584966/frameset.htm
    Just some info: Portal is basically what the end user can see. What he can do, is still maintain in the backend system. If there are parameters setup already for the user in the backend system (in SU01), then those parameters should still valid for the transaction that the parameters are linked to.
    Hope that helps and award points for helpful suggestions.
    Ray

  • ABAP WebDynpro app calling Transaction iview with Dynamic Parameters..?

    Good day!
    I need to code a call to a transaction (with dynamic parameters) from an Abap WD application.  It appears that to achieve this, the app needs to call a new portal transaction iview, passing the parameters in the call..? 
    This should ideally be via a Sapgui for Windows, but Html also an option (does it matter with regards to the method used?). 
    Kindly assist with advise/instructions, idealy with sample code extract to illustrate (new to Abap WD)...
    Kind regards
    j

    Hi
    this will help you doing so
    http://help.sap.com/saphelp_nw04s/helpdata/en/18/f96f4132f15c58e10000000a1550b0/frameset.htm
    Use BUSINESS_PARAMETERS to pass the data
    Abhi

  • Dynamic parameter tranfer from webdynpro to transaction iView

    Hello,
    i would like to transfer some parameters from my webdynrpo to a transaction iview. The problem is, that its working for one transaction but not for another. I tested SE11 and SE38. Here is the code for both (first SE38 second SE11)
    String targetSE38 = "ROLES://portal_content/temp/transaktionSE38";
    WDPortalNavigation.navigateAbsolute(targetSE38, WDPortalNavigationMode.SHOW_INPLACE, null, null, "RS38M-PROGRAMM=10001234");
    String targetSE11 = "ROLES://portal_content/temp/transaktionSE11";
    WDPortalNavigation.navigateAbsolute(targetSE11, WDPortalNavigationMode.SHOW_INPLACE, null, null, "RSRD1-TBMA_VAL=12345678");
    In both cases the transaction shows up but the parameter is only passed to the transaction SE38, the SE11 field remains empty.
    Does anybody know why (background is that i have a custom transaction which is also not working and im curious why its not working for a standard transaction either.
    Thanks a lot,
    Kai Mattern

    Hi Kai,
      Did you find solution .. for the problem i am also facing the same problem .

Maybe you are looking for

  • Quicktime always opens up..........

    hello, when safari or firefox is running and a page is displayed which shows a video which show run on that page, quicktime opens up and displays it box and then a error message which says "url is not valid". thanks. lee

  • After migrating to new mac, email folders are lost.

    I used Migration Assistant to transfer files and data from my old MacBook Air to my new MacBook Air. Everything seems to have transferred just fine, except for my email folders. I have tried plugging in Time Machine to restore them from my backups on

  • Lenovo Wifi Replacement

    I recently got my T500 with a very poor signal wifi, Thinkpad BGN, a Realtek chipset. I would like to replace my Wifi card with either the Intel Wifi Link 5100 or 5300. However, I read somewhere that Lenovo specfically "whitelist" their wifi cards to

  • Processing Items  Pick up: Available today.

    Hi guys and Happy Thanksgiving,      So I just ordered a new Macbook pro online( my first btw to order online) and  received an email saying Processing Items Pick up: Available today this. Does this mean that I can pick up my product right or there w

  • Panasonic AG-HSC1U

    DOES ANYONE KNOW IF THIS CAMERA IS A GOOD CHOICE ? (Panasonic AG-HSC1U) CAN I JUST DRAG THE H.264 OR MPEG 4 FILES OFF THE CAMERA FROM IT'S USB LINK TO THE INTERNAL HD ON MY G5 OR MACPRO? DO I HAVE TO DO LOG AND CAPTURE? ANY EXTRA CARDS OR SOFTWARE I