Call WebDynpro from ITS

Hi,
I have a Webdynpro application and I need to call this application from a ITS application, sending a value from ITS.
How can I call a Webdynpro from ITS and how send a parameter?
Thanks,
Evandro.

Bala,
Try using dynp_okcode=shop
I am not sure what this shop means, you may have to change this to right ok code used in your transaction. 
According to this wiki using okcode to skip the initial screen is is obsolete.
refer the [wiki|http://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=22375]
This post [Pass value from webdynpro ABAP to service "Sicf"|Pass value from webdynpro ABAP to service "Sicf"]
Edited by: Baskaran Senthivel on Feb 28, 2011 3:19 PM

Similar Messages

  • Calling Webdynpro from a Portal service

    Hi,
    I am new to EP. I have a task where i have to write a Portal service which has to call a prewritten Webdynpro. Can someone guide me as to how I can call WebDynpros from Portal services.
    Thanks,
    Sudhir

    Hi Sudhir,
    That makes no sense. Portal Services are "faceless components", i.e. they have no user interface. WD is just all about UI. How should that kind of integration work / make sense?!?!
    Hope it helps nevertheless
    Detlev

  • Call BAPI from ITS

    hi all,
    i'm wondering to know about how to call BAPI from ITS. Could I call BAPI from ITS? if yes, please advise me on this.
    Thank you so much for your effort.
    Peerasit

    Not solve yet.
    Thank you.

  • Call webdynpro from BSP (MVC)

    Hi, gurus!
    I have simple bsp created using MVC. I have my own component which includes MainWindow with controller class by default and a view with controller class and model class. Everything was created using Wizard.
    I need to call webdynpro app from this BSP in WEB UI. I have a code that get WD url, then I'm trying to use navigation in DO_REQUEST method whih I redefine for a view controller class:
      data: l_wd_url type string.
      call method cl_wd_utilities=>construct_wd_url
        exporting application_name = 'Z_XR_BP_COURCES'
        importing out_absolute_url = l_wd_url .
        navigation->goto_page( l_wd_url ).
    In test mode it's working fine, but when I call this BSP through WEB UI I recieve an error message:
    "Business Server Page (BSP) error
    What happened?
    Calling the BSP page was terminated due to an error."
    Sorry, if my question a little bit stupid =), but i'm new in BSP.
    Could anyone help me?

    Hi,
    Please check in SDN before posting the questions.
    Check with the following link [Webdynpro from BSP (MVC)|Call Webdynpro Application from BSP Application;
    Hope this helps you.
    Regards,
    Rajani

  • Calling BSP from EBP

    Hi ,
    Has anybody called BSP page from EBP/ITS application ?
    How can I call BSP from ITS ?
    Thanks & Regards,
    Sachin S M

    Hi Sachin,
    the easiest way is to call the BSP as a "catalog"
    Just publish your BSP, then you may find under tab properties the copmplete URL for your BSP Application.
    Then just define a catalog in spro
    "Enterprise Buyer->Master Data->Define Catalogs"
    where you define a "catalog" with the URL under catalog application call structure.
    Result:
    You should find an entry under your tab caltalogs with  the description from your entry made in the customizing.
    Regards
    Andreas

  • Calling GuidedProcess from WebDynpro ABAP

    Hi all
    can anybody tell me that how to call GP from webdynpro ABAP.
    and what are the advantages and disadvantages in this scenario??
    if anyone reply then it would be the great help to me
    Regards
    Suresh babu

    Hey,
    You can call a GP from WD ABAP through by implementing a service call from a method that is embedded in your WD. You can refer this link for the same.
    http://help.sap.com/saphelp_nwce10/helpdata/en/44/58f9cc0d95311ce10000000a155369/frameset.htm
    But you should note here that Data exchange between ABAP WD and GP is not two way but its only one way.
    Cheers,
    Mandrake

  • Not able to call RFC from webdynpro

    Dear Experts , I want to call a rfc from my webdynpro application , but its not working
                          I have a function module in my ECC system , that I want to call from webdynpro application of SRM system but its not working , it is not showing any error also
    I called the function module like
      CALL FUNCTION 'ZFM_SR_GET_PLANT_RFC'  DESTINATION lv_logsys
        TABLES
          it_plant = lt_pr.
    the control is just passing thru this function call but not going inside it,
    at the same time when I call this function module from my report program in SRM it's working fine , is there anything else i have to specify to call it from webdynpro application ?
    Please help

    Hi thomas ,
    I have added the exception for my function module , but they didnt triggered ,while debugging I have observed that no exception occured at the point of call , and my sy-subrc eq 0 ,
    se I did like this
      CALL FUNCTION 'ZFM_SR_GET_PLANT_RFC' DESTINATION lv_logsys
        TABLES
          it_plant                            =    lt_pr
        EXCEPTIONS
          system_failure                =    1  MESSAGE msg
          communication_failure    =    2  MESSAGE msg
          OTHERS                          =    3.
      IF sy-subrc <> 0.
        MESSAGE ID 'ZMSG01' TYPE 'E' NUMBER '00' WITH msg
                INTO ls_message-message.
        CALL METHOD wd_comp_controller->gref_message_manager->report_error_message
          EXPORTING
            message_text = ls_message-message.
      ENDIF.
    AT CALL FUNCTION  statment the control is just passing thru it , and not going inside function module

  • Call Component from Z-Report in ITS

    Hello Folks,
    I have an Issue with the ITS.
    We have a Z-Report called from ITS. It works fine except one thing. The Report show some campaigns in an ALV and if you double-click on one entry it calls Transaction: CRM_MKTPL. But this Transaction is not supported anymore in CRM 7.0. So I have to navigate to the WebUI Component.
    But how do I do this? I want it in the same Window. Any Ideas?
    Best Regards and thanks in Advance,
    Bastian Stritt

    Hi Eduardo,
    For calling a SAP transaction in ITS, the basic form of url is:
    http://<hostname>:<portno.>/scripts/wgate/webgui/!?tcode=va01&parameter1=value1&parameter2=value2&okcode=OKCODE
    Pl. replace the values with whatever is relevant to you.
    Following code is an example. This is opening the called transaction in a new window.
    onClick="javascript:window.open('http://irapps183:82/scripts/wgate/webgui/!?TRANSACTION=ZSCRIPT&P_PARVW=Z1&S_VBELN-LOW=`ZCONT_ITEM-VBELN[1].VALUE`&okcode=ONLI','mywindow')"
    Hope this is helpful to you.
    Pl. award the points if useful.
    Regards.
    vishwas.

  • R/3 User Exit Call from ITS

    Hi ,
    In an user exit i want to find out if a call has been made from ITS ..
    is there any FM or system variable set.. based on which I could find out ?

    call function 'ITS_PING'
           exceptions
                its_not_available = 1
                others            = 2.
      if sy-subrc eq 0 .
    ******* called from ITS
    else .
    **** not called from ITS
    endif .
    Raja

  • Call widgets from SAP EP(WebDynpro)

    hi,
    Can anyone please tell me how to call widgets from SAP EP (WebDynpro).
    Eg. i have created a webdynpro project and i have a button called "SEE WEATHER FORECAST". When i click on it, i should get the widget opened.

    what does this have to do with XI?
    Regards,
    Robin

  • How to call Webdynpro ABAP from Widget

    Hello guys,
    I want to add an icon to my widget with a link to a webdynpro ABAP application.
    However, the link is dependent on the system the user is accessing.
    So, I'd like to know if it's possible and what's the best method to do it.
    1. is it possible to call a Transcation or a RFC that calls a WebDynpro from the Widget?
    or
    2. is it possible to retrieve the Widget's default system parameters and assemble the Webdynpro URL dynamically?
    Any more ideas?
    Thank you and best regards,
    Henrique.

    up.
    Henrique.

  • Calling WebDynpro Component from PDK

    Hi
    I need to pass portal runtime information to a webdynpro component. How do i call a webdynpro component from PDK.
    Any Help please.
    Regards
    NagaKishore V

    Were you able to call Webdynpro component fro PDK? Can you tell me how did you accomplish this?
    I have a similar requirement.

  • How can I Call the MainVI from its SubVI, and this happen recursively?

    Hi All,
    How can I Call the MainVI from its SubVI, and this happen recursively?
    Actually, LAbView 7.1 doesn't support recurssion?
    Plz help me out!

    Dear GerdW,
    Thanks a lot 2 all of u guys,for all the brilliant responses.
    Actually, my basic aim is to call the Main VI, containing a SubVI.....
    Now, I want to call my main VI from this SubVI...recursively!!!!!..but whenever I tried to put the MainVI in this SubVI..an error message pops out saying recursive calling is not possible.
    I also tried using "Call by reference" but tht also didn't worked...an d error is somewat like...VI is invalid..or type matching..or state matching error.
    Here, Im attaching the snapshot of the MainVI... Im calling the SUBvi from it... It is running GOOD n FINE...
    But prob arrives when I call the Main from the SUBvi, which looks like same as MainVI(with little differences).
    I hope, Im clear in my words n not being ambigous.
    Plz, correct me where ever  im wrong.
    Thank You.
    Mishra_RnD
    Attachments:
    ScrShot.JPG ‏272 KB

  • My iphone4S suddenly became totally screen blackout, I try to call it from my other cellular still its ringing how can I open it?

    To all concern,    
         My iphone4S suddenly became totally screen blackout,I try to call it from my other mobile its still ringing at the vibration still working how can I fix it,please help me Apple Communities

    Try to reset the phone by holding the sleep and home button for about 10sec, until the Apple logo comes back again. You will not lose data by resetting.
    If this does not work, connect in recovery mode to your computer and restore, explained here:
    iOS: Unable to update or restore

  • Calling ActiveX from WebDynpro ABAP application

    Hello everyone,
    I am looking for the possibility of calling an ActiveX control based application by extending my Web Dynpro ABAP application. Is this possible at all?
    Thanks,
    Amber
    Message was edited by: Amber Gupta

    Saraa_n wrote:
    Hello Bala,
    >
    > I doubt whether you can pass parameter for the TCODE ME23N because in the ME23N transaction, you can select the PO only via the popup dialog and you cannot directly enter the PO number.
    >
    > I dont think while calling TCODE via ITS you can set value in the popup dialog and execute it. Alternative would be to use ME23 TCODe.
    >
    > BR, Saravanan
    It is correct taht ME23N can be tricky (as can MIGO and MIRO) because of the way they launch.  I've done this in the past by creating a new custom program and TCoce.  The custom program has a simple parameter for the PO # so it can be passed in via URL. The logic of the custom program then starts a call transaction and handles the popup and supplies the PO #.

Maybe you are looking for

  • Disk Utility won't let me do anything with broken flash drive?

    Hi there, I own an 8GB SanDisk flashdrive that recently, and out of nowhere, changed permissions to write only. I feel like this may have something to do with the fact that when it was in my old Macbook I would close the screen with it still inserted

  • Hand Type Check Enter Accounts Payable

    Hi I was wondering How do we enter Hand Typed Check in to SAP, lets say we didn't run Check Payment but later we want to issue a Void check on a Plane Paper (instead of original check on which we already written by hand)for our record Purpose , and "

  • How to make a shortcut in iTunes 11.1.4?

    Hello there everyone! Well I have been searching in the internet a lot of articles that has many shorcuts but no one could help me. Anyways what I want is to know if there is a shortcut to add a selected song to a playlist or if there is not how to m

  • Bulk Insert - Commit Frequency

    Hi, I am working on OWB 9.2. I have a mapping that would be inserting > 90000 records in target table. When i execute the SQL query generated by OWB in Database it return result in 6 minutes. But when i executed this OWB mapping in 'Set based fail ov

  • Exchange server 2010 DAG configuration

    Dear Boss, I would like to configure Exchange server 2010 with DAG . I have test lab . i would like to tell my test LAB setup . One domain controller win-2008 X 64 Ent  Two Exchange server 2010  ( Role - Client Access, Mailbox) Each Server  Two Netwo