Navigate to Transactional iVIEW by passing parameters & UWL

Hi Experts,
I have 2 queries here,
1>>
I understand  that to navigate to a transaction from webdynpro a transactional iview has to be used. In my case i have to navigate to ME51 from the component and display the transaction with the details of a paticular purchase requisition. So my question is can i pass the PR no. to the iview and display the right screen of the transaction.
2>>
On click of an other button i need to navigate to the Universal Work List(UWL) of that User, does this require us to embed the UWL in an iview as well?
Thanks In Advance,
Chaitanya.

Hi,
In Portal, when you are creating a Trans. Iview check the properties. I guess there should be parameters for that.
Regards,
Lekha.

Similar Messages

  • 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

  • Starting R/3 Transaction iView with dynamic parameters

    Hi,
    I looked around here for a while searching an answer but couldn't find one. Excuse me if I overlooked something about this rather simple question (I guess).
    I have a BW query iView which displays a list of items, lets say order numbers. I would like to click on this number and open a specific R/3 transaction iView with the given order number processed.
    I succesfully implement this iView with the property "application parameters" in the form "XYZ=0012345" and it works. But of course, the order number should be dynamically set. I tried to call the iview via the "NavigationTarget=ROLES:/.../iViewID?XYZ=0012345" etc. which starts the transaction, but the parameter is not recognized.
    Thanks for any useful hints.
    Uwe

    Hi Uwe,
    perhaps the Guide:
    <a href="http://service.sap.com/~form/sapnet?_SCENARIO=01100035870000000112&_SHORTKEY=00200797470000065927&_OBJECT=011000358700000384062005E&">How To Enable Portal Navigation From BW to PCUI Applications</a>
    Gives you some hints.
    Regards
    Gregor

  • Wesite Login and navigate to reports page and pass parameters to the forms page and download file

    Hello,
    New to C# scripting in SSIS. Everyday I download data file from a website. I need to schedule a page to include a script to auto download from the website everyday by navigation to reports page and submenu for a particular report. After I click it opens
    a webpage where I need to select my criteria and download the file to a table. This is what so far I got
    Object mySSISConnection = Dts.Connections["websiteConnectionManager"].AcquireConnection(null);
    MessageBox.Show("Success")
    I got the success message. After login, I need to navigate to select reports and then from submenu select the everyday report and pass the input parameters to the webpage and download the file and export to a tables. Any help. Not much coding I know. Learning!!
    Any help really appreciate it.
    Thanks
    Jagan

    Whoever instructed you to so is not prudent, once the report definition changed the package will break.
    This is not the proper data interexchange.
    Here is though an example on how to generate a SSRS report and download as a file: http://sandeep-aparajit.blogspot.ca/2010/02/how-to-execute-and-save-ssrs-report.html
    And then to load the file into OLEDB destination http://www.daimto.com/ssis-lesson-2-first-package/
    Arthur
    MyBlog
    Twitter

  • Launch PCUI Transaction from ICWEB passing parameters

    Hi All.
    I'm trying to launch a PCUI transaction (COMM_BUPAR) from Icweb then would like to pass as parameter the confirmed BP in order to get the detail in the PCUI application, is this possible ? any tips ?
    Best regards.
    Addict

    Hi,
    Use the transaction launcher wizard to create the link and assign the parameter for the bp number. 
    IMG path:
    ->Customer Relationship Management
    ->Interaction Center WebClient
    ->Basic Functions
    ->Transaction Launcher
    ->Configure Transaction Launcher (Wizard)
    Depending on what you want you can edit the generated code afterwards to redefine the call.  This is cover in the IC webclient cookbook.
    Cheers
    Andrew

  • 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

  • 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

  • Call a Transaction iView with parameters

    Hello,
    can anyone help me with the following problem:
    I'll just tried to call the transaction RECN with a transaction iView. When I test the iView it works but not with any parameters in the URL.
    I'll tried the parameters fix in the iView properties but without any result.
    Can someone tell me the correct syntax? I'll tried everything I can find in the SAP help and here in the forum.
    Have someone a how to for calling transaction iView with dynamical parameters?
    Thanks for help!
    Best regards
    Martin

    Martin,
    Have you had a look at these yet?
    http://wiki.sdn.sap.com/wiki/display/EP/StartanSAPtransactionfromaURL
    How to launch SAP transaction & pass parameters via URL
    Cheers!
    Sandeep Tudumu

  • Calling Transactional IVIEW

    Hi ,
    Created a Transactional Iview for Custom Tcode.In portal as well i was able to look into the preview of the transaction code.
    I used the follwing code to navigate this Transactional IView in the ABAP WEBDYNP which is been linked to an action button .There is no view or dump comming up when i hit the button .
    The code is as below for navigation :
    data lr_componentcontroller type ref to ig_componentcontroller .
    data l_api_componentcontroller type ref to if_wd_component.
    data lr_port_manager type ref to if_wd_portal_integration.
    lr_componentcontroller = wd_this->get_componentcontroller_ctr( ).
    l_api_componentcontroller = lr_componentcontroller->wd_get_api( ).
    lr_port_manager = l_api_componentcontroller->get_portal_manager( ).
    Data: target type string.
    target = 'pcd:portal_content/com.rc.folder.support_development/com.rc.folder.service_requests/com.rc.iview.empl_certificate'.
    call method lr_port_manager->navigate_absolute
    exporting
    navigation_target = target .
    I am getting Wait Message if I give as sepcified above, and if add 'Roles://' to the starting of target String (PCD Path) its not showing me anything.
    Just wondering what else i was missing ..any suggestion would be helpfull..
    Regards,
    Manohar

    Hi Manohar,
    I gave this string and it worked fine
    ROLES://portal_content/com.XYZ.APPL/com.apple.Userid/com.XYZ.Demo1/com.XYZ.role.role/com.XYZ.role.DEMO1/com.sap.netweaver.bc.uwl.uwl_page'
    I got this from properties of iView.
    Hopefully this helps you.
    Regards,
    Priya

  • Navigate to Universal work list in portal (UWL)

    Hi Experts,
    I need to navigate to the UWL from my component on click of a button. For this should we just call the URL (hardcoded) on the button event or should we navigate to the Iview in which the UWL is embeded.
    Please advice.
    Thanks in Advance,
    Chaitanya

    Hi Experts,
    Could some one please throw some lite on this issue......
    Thanks,
    Chaitanya

  • Passing parameters to SAP Transaction iView

    Hi,
    We have a SAP Transaction iView (for ERP transaction SWK3) which works fine in our 7.0 portal using the following Application Parameters value:
    P_CATID=BO&P_TYPEID=BUS2089&P_INSTID=<Request.P_INSTID>
    At runtime, the parameters set with constant values are passed (i.e. P_CATID and P_TYPEID) successfully from the iView, while the url invoking the iView contains parameter P_INSTID which is dynamic (called from another iView).
    For example, this may look as follows:
    ?P_INSTID=000614330000120800
    Since we have upgraded to portal 7.4, the NWA log shows the following error for this process suggesting this is not a valid method of passing parameters any more.
    om.sapportals.portal.appintegrator.ApplicationIntegratorException: Unable to process template 'P_CATID=BO&P_TYPEID=BUS2089&P_INSTID=<Request.P_INSTID>', because 'P_INSTID' is an invalid terminal property of context 'Request.'.
    Please can you advise how to overcome this error for the dynamic parameter.
    Thanks,
    Alan

    Hi Alexander,
    Apologies for the late reply, I've been on an extended period of annual leave.
    I've checked back on my notes and we retained the Application Parameters iView setting exactly as I state above but I had to ask our Java developer to explicitly add the static parameters P_CATID and P_TYPEID to the dynamic URL call to launch the iView.
    So for example, an example URL would be:
    ... ivu.view_trip?sap-config-mode=true?P_CATID=BO&P_TYPEID=BUS2089&P_INSTID=000614330000120800
    This cured the problem though I'm unsure whether it is still essential that the static parameters need to exist in the iView configuration. We had many issues at that moment in time I was just pleased to find a solution.
    Good luck!
    Alan

  • 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

  • Pass parameters to transaction iview from WDA

    Hi
    I have looked at a lot of posts on this subject but haven't come across a definitive answer. 
    Currently I am passing values as below to navigate to transaction RECN.  The navigation is fine but the parameters are having no effect at the moment.
    Can anyone enlighten me?
    Cheers
    Ian
    ls_launcher_parameters-key = 'BDC_CURSOR'.
      ls_launcher_parameters-value = 'RECN_CONTRACT_X-RECNNR'.
      APPEND ls_launcher_parameters TO lt_launcher_parameters.
      ls_launcher_parameters-key = 'BDC_OKCODE'.
      ls_launcher_parameters-value = '/00'.
      APPEND ls_launcher_parameters TO lt_launcher_parameters.
      ls_business_parameters-key = 'RECN_CONTRACT_X-RECNNR'.
      ls_business_parameters-value = lv_recnnr.
      APPEND ls_business_parameters TO lt_business_parameters.
      lo_api_component = wd_comp_controller->wd_get_api( ).
      lo_portal_manager = lo_api_component->get_portal_manager( ).
      CALL METHOD lo_portal_manager->navigate_absolute
        EXPORTING
          navigation_target   = 'ROLES://portal_content/(blahblah)'
           navigation_mode     = if_wd_portal_integration=>co_show_inplace
         window_features     =
           window_name         = 'Real Estate Contract'
           post_parameters     = abap_true
          use_sap_launcher    = abap_true
          business_parameters = lt_business_parameters
          launcher_parameters = lt_launcher_parameters

    Hi,
    Try to set param1 value to English (even 'a' would be OK) and see if it works.
    If yes, you need to encode your parameters by using URLEncode.encode.
    Regards,
    Omri

  • Passing dynamic data from UWL to transaction iview

    Hi Experts,
    Can some one please suggest how can we take data from UWL task to a transaction iview on click of button.
    I have a webdynpro java sceen which is coming as a task in UWL of a user. When user clicks on Button with complete event, i have to get data from the Webdynpro Sceen and set data to a transaction iview. This means i cant har code the data in Application parameter of transaction iview.
    Catches here are:
    1. Passing data from UWL to Transaction Iview.
    2. Data is dynamic i.e. is entered by user through web dynpro screen.
    Thanks in advance.
    Regards
    Pranav

    Hi Scott,
    Thanks for reply. But i am not understanding the solution provided by you. I think these are ABAP FM and are used user management. I am working in Netweaver environment CE7.1.1.
    Regards
    Pranav

  • Passing Parameters Transaction iView

    Hi!
    I have created a SAP transaction iView that calls the transaction MM03. I know that we can pass application parameters by defining them in the iView properties. On the SAP help website, its given in the syntax <Screen_field1>=<parameter1> and so on for all the parameters.
    How do I find out the name of the screen field? For example, I want to pass the material number VPP27. So it should be, <Screen_field1>=VPP27. But how do know what the screen field is called? I tried giving in Material, but it doesnt work..
    Anyone know a way out?
    Sameer

    You can position the cursor at the field within the transaction in R3, then use the F1 key (for help), followed by F9 (for technical help).  You should see a pop-up showing the screen field names for the present field that the cursor is on.

Maybe you are looking for