Calling WDJ from WDA application

Hi experts,
Can anyone please tell me that how 2 call a WDJ application from a WDA application. Please explain in detail as i am complete novice in this field.
thnx.

Hi Thomas and experts,
I have requirement where i need to call WD java standard application.
My requirement : I am displaying teamview in my MSS through OADP by using WD ABAP...
                             Initial Screen displays columns like Position, Employee name , Job ...etc
                                 when manager select position in teamview ....it has to check whether positions region went live or not.
                                I) IF position region went live then it has to open 3rd party tool and pass parameters(Here i am open 3rd      party URL and passing parameters)
Here my requirement, 2)Already we have standard WDJ application which is using as of now, so if positions region has not gone live then i have to call standard WDJ application with passing parameter and skipping initial screen which is displaying teamview and continue with position details
Is this possible through portal which explained above. can any one suggest me how to proceed .
Thanks in advance...
Regards,
Farooq

Similar Messages

  • Call WDJ from WDA

    Hi
    Is is possible to call Web Dynpro Java components from Web Dynpro ABAP ones?  We currently have an SAP Portal based on NW2004 and are just upgrading to ECC6.0 and wish to use WDA.  However, it is likely we will want to integrate the WDA components with existing WDJ components rather than rewrite a lot of java code to ABAP.
    Any ideas anyone?
    Regards
    Ian

    Hi Ian,
    the 2 WD application sets should coexist ok.
    Navigating directly from one to the other is like any URL link.
    I guess you knew that.
    You can not treat them as subcomponents.
    If you hope to do context level component embedding,
    then I believe you are without luck.
    The framework assumes the Component to be embedded is on the same stack.
    Evening embedding WDA1 inside WDA2 on another ABAP stack is limited to URL
    suspend and resume plugs.
    I tried exactly what you want in 2 ABAP stacks without luck.
    It all comes back to SESSION.  I assume the JAVA stack cant work with the ABAP stacks session. Dont know WDJ enough to be sure.
    So only rudimentary url parameter passing to pass data back and forth.
    I hope your components are nicely encapsulated and can be called via URLs
    regards
    Phil.

  • Call ITS from BSP Application

    i have created a ITS screen which in turn calls a Abap report
    I want to call this ITS screen from a BSP application .
    Could you please provide some sample code which is used to call ITS from BSP application..
    Useful answers will be rewarded
    Thanks

    Since it is related to both ITS and BSP i thought i can post it in both. and also i didnt get answers for the queries..... for a long time. Anyhow i will take your suggestion for my future query.
    i hv done using iframe to call my ITS application.
    I can able to call the Bsp application whichin turn calls its screen abap program.
    while executing ,  the selecting the directory from the file browse pop up doesnt work for downloading the file
    becos the client , they will not change the settings related to applet in the internet browser for security reasons.
    I hav to make it some how to make it work in the portal which calls this BSP application..
    at the moment i mapped this BSP application to the user role in the SUS Portal . but it appears in the SUS portal . but i m not able to click the application and also handsymbol is not seen while bringing the mouse to that area.
    Could you please tell me , how to use Action_id for that particular application, Authorisation profile settings.
    Kindly  give your suggestions asap.

  • Call Webgui from WD application with only one log on

    Hi
    In my first application using WD ABAP, requirement is to call WEBGUI from the application.
    Calling WEBGUI is working fine but while calling WEBGUI the system asks for another log-on which is not required.
    When the application first executes it asks for logon again while calling WEBGUI the system asks for another logon,
    please let me know how can we avoid second logon?
    Note - I am using RFC host name while creating URL for WEBGUI.
    Thanks, in advance

    Hello Trupti,
    Are you using fully qualified host names?
    Edgar

  • Calling RFCs from Webdypro application!!!!

    Can anybody show me a suitable example for calling rfc from webdynpro application.

    Hi steve,
    Look at this tutorial..
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webdynpro/tutorial on accessing abap functions in web dynpro - 4.htm
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webdynpro/tutorial on handling transactions with bapis in web dynpro - 5.htm
    Follow the steps provided in those documents.
    You can easily understand how to access ABAP functions from WebDynpro.
    Let me know if you need more help on this.
    Regards,
    Karthick

  • Calling form from web application

    i use the below url for calling form from web application.
    http://host51.yan.com/forms/frmservlet?form=test&width=700
    i would like to know about "frmservlet"
    if it's a servlet file then
    where its located in application server10g

    The servlet is part of the forms-installation on the application-server, on the local OC4J this is located in $ORACLE_HOME/forms/j2ee/formsapp.ear
    What exactly do you want to know about the servlet?

  • How to call webservice from Java application

    Hi XI gurus
    Pls let me know how to call a webservice from Java application.
    I wanted to build synchronous interface from Java Application to SAP using SAP XI
    For example, i need to create Material master from Java application and the return message from SAP, should be seen in Java application
    Regards
    MD

    Hi,
    If your  JAVA Application is Web based application, you can expose it as Webservice.
    JAVA People will pick the data from Dbase using their application and will send the data to XI by using our XI Details like Message Interface and Data type structure and all.
    So we can Use SOAP Adapter or HTTP in XI..
    If you use HTTP for sending the data to XI means there is no need of Adapter also. why because HTTP sits on ABAP Stack and can directly communicate with the XI Integration Server Directly
    If you are dealing with the Webservice and SAP Applications means check this
    Walkthrough - SOAP  XI  RFC/BAPI
    REgards
    Seshagiri

  • A Problem when calling a new WDA Application

    Hi,
    i am opening a new wda application with link in a html page using that code;
    in a html;
    <a href = "http://domain/sap/bc/webdynpro/sap/zhr_105_user_pass_control" />  Link </a>
    in "zhr_105_user_pass_control" wda application;
    METHOD onactioncall .
      DATA : lv_url TYPE string.
      CALL METHOD cl_wd_utilities=>construct_wd_url
        EXPORTING
          application_name = 'ZNEW_WDA'
        IMPORTING
          out_absolute_url = lv_url.
      DATA lo_window_manager TYPE REF TO if_wd_window_manager.
      DATA lo_api_component  TYPE REF TO if_wd_component.
      DATA lo_window         TYPE REF TO if_wd_window.
      lo_api_component  = wd_comp_controller->wd_get_api( ).
      lo_window_manager = lo_api_component->get_window_manager( ).
      CALL METHOD lo_window_manager->create_external_window
        EXPORTING
          url    = lv_url
        RECEIVING
          window = lo_window.
      lo_window->open( ).
    ENDMETHOD.
    But this is opening wda application in new window and standard sap sessions couldn't starting so the login screen is opening.
    How can i redirect my wda application to another wda application with started sessions?
    Can somebody help me please?
    Thanks.

    Hi,
    Here you r using below code
    CALL METHOD lo_window_manager->create_external_window
        EXPORTING
          url    = lv_url
        RECEIVING
          window = lo_window.
      lo_window->open( ).
    It's occuring the external window each time that's why opening Log-On window.
    Skip this code and use the code for keep the same window.
    -Rick

  • Create DLL from labview and calling it from other application

    I have an application built using Labview. I wanted to create DLL out of it. The application has
    two String inputs start and stop buttons and two status indicators.
    1. How to itegrate start and stop buttons from function prototype?
    2. Does Labview created DLLs requires labview runtime engine when it is to be called from other application?
    Can some one help on this.
    Solved!
    Go to Solution.

    Hi Yuvish,
    1) They should be boolean inputs to your VI. But does it makes sense to provide a stop button input at the start of your VI? (THINK DATAFLOW!)
    2) Yes, the LV-RTE is needed...
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • How to call javascript from java application

    How can we call a function written in javascript from java application (core java not applet)? How will java identify javascript?
    Is there any such options ?

    Try creating a page called launcher.html (for example). That does this:
    <html>
    <head>
    <script language="javascript">
    windowHandle=window.open("http://www.javasoft.com", "", "height=700,width=1000,status=no,scrollbars=yes,resizable=yes,toolbar=no,menubar=no,location=no,top=5,left=5");
    </script>
    </head>
    </html>Now you launch IE (or whatever) with this page using the Runtime class. After x seconds (after the second window has been launched) try killing the process. Hopefully it will kill the original window you opened and not the window you popup (the one without toolbars etc)
    It might kill both windows but I can't be bothered to test it. If it does you'll have to try and find a workaround.

  • Calling workbook from oracle application 11.03

    hi,
    i want to call one report of discoverer from oracle application 11.03 request set.if any one has done this ever or have any idea how should i do this,please reply back.
    thanks in anticipation
    null

    hi,
    this will help u in solving the problem.
    This can be simply achieved via the following steps:
    Add a 'Push Button' to an existing form, where you wish Discoverer to be run from.
    Add a standard 'WHEN_BUTTON_PRESSED' trigger to this button.
    Edit the trigger to insert the HOST command referencing the Discoverer executable(including the full path), plus the command line options you require. An example of this is shown below:
    HOST('C:\ORAWIN95\DISCVR31\DIS31USR.EXE /CONNECT SCOTT/TIGER /OPENDB TESTQUERY1 /SHEET ALL');
    In this example, command line options have been appended to the Discoverer executable to first connect as a specific user, then open a Workbook that has been saved to the database, and then run all the sheets in the workbook. These command line functions are optional and there are others that can be used to perform various functions. For more information on the complete Command Line options available, see Chapter 13, section 13.3, of the Discoverer 3.1 Administration Guide or see the following WebIV Note copy of the same:
    Note.68739.1 - Complete Command Line Options for Discoverer 3.1(Admin & User Edition)
    Other references
    For command line options available with the 3.0.8 release of Discoverer(which were only available for the 'User Edition' in this release), see the following note:
    Note.44841.1 - Command Line Parameters With Discoverer 3.0 User Edition
    bye
    raj

  • Calling opportunity from accounts application

    Hi All,
               I tried calling opportunity application from accounts application by clicking on a tab , just like calling bsp application from pcui.Unfortunately it is calling the same accounts application.
              I tried this in opportunity application too,it is calling the same application which calls it.
              Where do you think I went wrong?
    Regards,
    Ruby.

    Hi ,
          I created a button in opportunity tab in account application.When i click on it no processing takes place? I added an event  in the toolgroup of opportunity (tab).
    Did the changes in the application layout.Is it possible to call a pcui application from another? I have not used any object linking.My screen element type is html.
    Regards,
    Ruby.

  • How to call transaction from webdynpro application

    Hi Experts,
    I have a web dynpro component zxx_comp.its corresponding web dynpro application zxx_app.
    my requirement is , when i test the webdynpro application, i have to call a transaction zxx_txn corresponds to the module pool program zxx_pgm  directly . How can i do that?
    Regards
    Ashwin KV

    Hi Ashwin,
    Use the following to open a T-Code from WD application.
    CALL METHOD cl_http_server=>if_http_server~get_location
    IMPORTING
      host = lv_host
      port = lv_port
      out_protocol = lv_protocol.
    DATA lv_url type string.
    concatenate lv_protocol  '://' lv_host  ':' lv_port  '/sap/bc/gui/sap/its/webgui/?sap-client=&~transaction='zxx_txn' into lv_url.
    DATA lo_window_manager TYPE REF TO if_wd_window_manager.
      DATA lo_api_component  TYPE REF TO if_wd_component.
      DATA lo_window         TYPE REF TO if_wd_window.
      lo_api_component  = wd_comp_controller->wd_get_api( ).
      lo_window_manager = lo_api_component->get_window_manager( ).
    lo_window_manager->create_external_window(
         EXPORTING
           url    = lv_url
         RECEIVING
           window = lo_window ).
    Regards,
    Harsha

  • Call Discoverer from Oracle Applications

    I need to view the discoverer workbooks from Oracle Applications
    menu. Sombody know how?

    We ran into the same issue when we upgraded Disco to 10g (do not recall exact version) about 18 months ago - unfortunately, we are off till the new year and I will not be able to determine what the resolution was until then.
    Pl see if any of these MOS Docs can help -
    788706.1 - Error Unable To Connect To Oracle Applications Database 'afscpgcs' After Cloning An APPS Instance & Changing APPS Passwords
    306235.1 - Launching A BIS Workbook Gives Unable To Connect To Oracle Applications Database (afscpgcs) Error
    459941.1 - Secure Ticket Connection Fails From e-Business Suite
    784358.1 - Connecting to Oracle EBS with Discoverer Fails with ORA-01017 Invalid Username/Password Error
    Try enabling tracing as noted in 370800.1 (How To Create An E-Business Suite Connection Trace For Discoverer 10g (10.1.2) Plus / Viewer) to see if you can find more details about the error.
    HTH
    Srini

  • Calling BUS3007 from VB6 application

    Hi,
    i´m triing to call ARAccount.GetBalancedItems from an VB Application. But the Call always ends with "Named Parameter not found!"
    Sample Code:
    Set mObj_Buch = mobj_Bapi.GetSAPObject("BUS3007")
    Set mobj_LineItem = mobj_Bapi.dimas(mObj_Buch, "GetBalancedItems", "LINEITEMS")
    mObj_Buch.GetBalancedItems COMP_CODE:=Typ_COMPANYCODE.str_COMPANYCODE, _
    CUSTOMER:=Typ_VENDOR.str_VENDOR, _
    Date_From:=Typ_KEYDATE.str_KEYDATE, _
    Date_To:=Typ_KEYDATE2.str_KEYDATE, _
    LINEITEMS:=mobj_LineItem
    Any help appreciated.
    Thanks,
    Uwe

    The servlet is part of the forms-installation on the application-server, on the local OC4J this is located in $ORACLE_HOME/forms/j2ee/formsapp.ear
    What exactly do you want to know about the servlet?

Maybe you are looking for

  • Sequence Usage for a given Period

    Hi All, We would like to log the activity happening on a sequence and its usage in RAC environment. i.e In simple words we would like to know the increase in the maxvalue of the sequences for a given range or period say on a given Day @ 9.00 AM start

  • How to use a decode function

    I want to use the following with decode, recently started on BODS. Can you please provide the steps to use decode function in source tabke fieldname is ordid and in target fieldname is Orderid decode(Order_ID = 1709,lpad(Order_ID,7,'700'),Order_ID) t

  • How do I format TOC to 2 columns?

    Good morning all. I have been searching and cannot find a clear answer to this question: Am I able to format my TOC into more than 1 column? I'd like to create a 2 column TOC, if possible. I am using a landscape orientation to a US legal size page. I

  • Decimal places for formula variable

    Hello, I have created a formula variable of type manual entry and type number. I'm multiplying it to an amount. The problem is that the user is unable to enter a decimal place value. eg: cannot enter 0.5 or 0.05. the query regards it as 5 (converts 0

  • How to create Production order in SAP B1

    Hi Experts, Can anyone send me a link on how to create Production Order in SAP Business One? Regards, Vishal Ver: SAP Business One 2005 B (7.40.253)  SP: 00  PL: 43