Is it possible to trigger remote R/3 connection through WD ABAP

Hi Colleagues,
I am trying to trigger a remote R/3 Connection through WD ABAP. I created an RFC destination through SM59. i tested the connectivity and it works fine from R/3 to R/3. But when i trigger the same code through a WD ABAP application, nothing happens.
Is it possible to open an SAP GUI screen through the remote connection using WD ABAP? If yes, can you provide me a solution.
Thanks,
Gaurav.

Hi,
Please refer this link for Thomas's reply
Calling TCODE on click of LinkToAction UI
Or
If you are using the Enterprise portal, create an Iview of R/3 or Transaction where you can give the transaction that you want to open.
Regards,
Lekha.

Similar Messages

  • Is i possible to trigger a workflow from the creation of an event in iCal

    Is i possible to trigger a workflow from the creation of an event in iCal
    Or is is possible to create a workflow to ad events to an iCal calendar which then triggers the workflow or is combined with the ad events workflow.
    Graeme

    Hmm, nope. Not that I'm aware of. Very few apps allow you to hook scripts directly to user activity. Finder* is a notable exception. iCal's "publish" feature has the ability to auto-update after user activity, but you'll either need dot mac accounts or your own webdav server to get that working.
    I'd re-consider the idea of triggering a periodic workflow with iCal. That way if the computer is shut down or asleep, iCal will wait to run the workflow at its next opportunity. You could hide the unsightly repeating events in a second calendar so they're out of the way.
    The next best thing is to write a faceless AppleScript application with a long-duration idle handler. The user would simply add it to their login items in System Preferences. This would also resume its cycle after sleep or shutdown.
    Yet another option is to write an AppleScript that can register itself in the crontab. This has the advantage of running at a predictable time. If you're careful, you can even set the script to wake up or power on the computer as necessary.
    * Folder action scripts can be triggered when files are created, moved, or deleted, but not when they're merely updated. This probably rules out much of iCal's activities in ~/library/application support/ical/.

  • Is it possible to trigger an event when clicking context menu trigger icon?

    When opening a context menu on a UI element, is it possible to trigger an event to handle, eg. set the lead selection for this context element to which the UI element is bound, when clicking the menu trigger icon ?

    First, these NW04s menus are not really context menus. They are static menus that are rendered within the view layout. Real context menus will come later.
    There is no "onMenuOpen" event for an application.
    Armin

  • Is it possible to trigger FIPP event (and how?) when parking an FI document

    Hello
    I wander is it possible to trigger FIPP event (and how?) when parking an FI document with transaction fbv1(and not fv60)
    Thx in advance

    Hi,
    In Financial Accounting --> Accounts Receivable and Accounts payable >  Business Transaction> Incoming Invoices/Credit Memos  --> Make and check settings for Document Parking -->  Create Workflow Variant for Parking Documents (Click  this)
    There you have to assign your workflow.
    Regards,
    Surjith

  • Is it possible to trigger the acquisition and recording of data in this condition?

    Hi
    I am a LabVIEW newbie,
    Is it possible to trigger the data acquisition and recording in the following case;
    I have two input signals 1. Pressure Transducer 2. Pulse from a magnetic pickup.
    I have to plot the pressure data against the pulses. Can I make the magnetic pickup signal as master signal to trigger the data acquisition and recording? and at the same time acquiring the pressure data as well.
    How can I do that ?
    Thanks.

    Hi Rich
    Thanks...
    I have PCI - 6033E High resolution multifunction I/O board and NI BNC - 2090 adapter chasis.
    What I am getting is the pressure from the transducer and magnetic pulses.
    Two cosecutive pulses encompass one complete cycle of the combustion process inside the engine.
    I need to record the data for presenting the information offline.
    Since combustion is a highly unstable process I need to get the optimum representative grapgh at a particular engine speed.
    So lets say, I want the magnetic pulse to trigger this the data acquisition for 50 of such pulses, i.e. 50 complete cycles of diesel engine. So that these 50 acquired cycles may be averaged for pressure readings and a single representative curve (graph) may be produced.
    Thanks again
    Message Edited by SeaMist on 06-26-2008 02:49 AM

  • Is it possible to trigger action in backing bean on page unload event?

    Hi,
    There is a RichPopup in my page which has a Listener to save data or not by user choice "Data change detected, do you want to save those changes?"
    I've tried with the javascript event 'window.onbeforeunload', but this way must be fit with a Servlet function which I am not allowed to use.
    The attibute 'onunload' in the tag '<af:document>' seems useless. Even there is few description or example in the 'Tag Reference'.
    So, is it possible to trigger action in backing bean on page unload event? Thanks in advance for helping.
    Viva

    Hi Frank
    Thanks for helping, I've tried in your way. My codes are like below:
    Page codes:
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
        <af:document id="d1" clientComponent="true" title="viva test">
          <af:resource type="javascript">
            if (!window.addEventListener) {
                // alert('window.addEventListener is not supported in IE8. Override it!');
                window.addEventListener = function (type, listener, useCapture) {
                    window.attachEvent('on' + type, function() {listener(event)});
            window.addEventListener('beforeunload', function (){performUnloadEvent()}, false);
            function performUnloadEvent() {
              var eventSource = AdfPage.PAGE.findComponentByAbsoluteId('d1');
              //var x and y are dummy variables obviously neeed to keep the page
              //alive for as long it takes to send the custom event to the server
              var x = AdfCustomEvent.queue(eventSource, 'handleOnUnload', {args:'noargs'}, false);
              var y = 0;
          </af:resource>
          <af:serverListener type="handleOnUnload" method="#{vivaTestBean.testOnUnload}"/>
          <!--
          <af:form id="f1">
            <af:commandButton text="Unload" id="cb1" action="unload"/>
          </af:form>
          -->
        </af:document>
      </f:view>
    </jsp:root>The backing bean codes:
    public class VivaTestBean {
        public VivaTestBean() {
        public void testOnUnload(ClientEvent clientEvent) {
            System.out.println("Thanks God");
    }The first way which triggers a 'unload' event by clicking a button DO WORKS. :)
    But when I changed the triggered way by changing the <af:document> to clientComponent as what you did, the 'onbeforeunload' event won't come out when I refreshed or closed the page.
    That doesn't make sence, since I think the two ways to trigger a 'unload' event are the same.
    Edited by: 841766 on 2011-3-7 上午1:13

  • Is it possible to trigger a JSP ?

    Hello All,
    Thank you for your answers on all my previous posts,
    This time, I was just wondering if it is possible to trigger a JSP to run at a given time of a day ?.
    Scenario :
    I have done a JSP coding to automatically write an XML file from the database. I use this XML for the RSS feed in my project. If I could automate the creation of XML at a given time of the day, then my RSS feed system will completely be automated.
    Thank you for your thoughts and suggestions in advance.

    The best way is if you have a Unix flavoured box and can benefit from the cron as the previous posts said. Then use the curl command to essentially ping a website.
    I have also used lynx in the past which is gives you the ability to use on windows as well as add session/cookie and better result logging capabilities if necessary.
    Hope that helps!

  • Is it possible to have a phone line connected to a Mac Mini (OS X10.8.2) so you can use your computer with Parallels (Windows xp) to dial into a modem to download data being collected and stored at the remote location?

    Is it possible to have a phone line connected to a Mac Mini (OS X10.8.2) so you can use your computer with Parallels (Windows xp) to dial into a modem to download data being collected and stored at the remote location?

    Hi, do you mean a real Dial-up Modem as in the old days?
    As I recall, the Apple USB Modem won't work in 64 bit OSes, but there are others that will, I think this is one of them...
    http://www.zoomtel.com/products/dial_up_external_usb.html
    Or is the Modem on the other end Cable/DSL/FiberOptic?

  • ** Is it possible manual trigger when JDBC is sender

    Hi Friends,
    Is it possible manual trigger to send the new records to the JDBC sender adpter ? Instead of Stored Procedure or SQL statement (Stored Procedure) in 'Query SQL Statement' parameter ?
    The purpose is instead of JDBC poll at frequent interval,we want to send newly inserted record whenever required.
    Any idea friends, to do this ?
    Kind Regards,
    Jeg P.

    Hi,
    You can try this way. On insertion of any record in a table trigger a Stored Procedure which will call the url for activating and deactivating the channel. For more help on invoking the url from Stored procedure, please refer to the link below.
    http://www.lorentzcenter.nl/awcourse/oracle/appdev.920/a96612/u_http.htm#1012294
    Your code will look something like this
    req := utl_http.begin_request('http://host:port/AdapterFramework/ChannelAdminServlet?party=party&service=service&channel=channel&action=action ');
    Thanks
    Amit

  • Possible to trigger HRMD_A IDoc immediately

    Hi experts,
    Can you please let me know if it is possible to trigger an Outbound HRMD_A IDoc immediately i.e. as soon as someone creates a new record for any of the infotypes associated with this IDoc the IDoc is sent; without having to schedule PFAL or BD21.
    Thanks and regards,
    Brendon

    Can you please let me know if it is possible to trigger an Outbound HRMD_A IDoc
    immediately i.e. as soon as someone creates a new record for any of the infotypes
    associated with this IDoc the IDoc is sent; without having to schedule PFAL or BD21.
    Well I think some confusion out here, PFAL or BD21 does not have any control on when the IDOC
    is sent they will just read the infotype data and create IDOCs. WE20 Partner Config has got the
    setting to tell system whether COLLECT the IDOCs in ready state or dispatch as soon as they
    gets creates (PFAL/WE21) Without scheduling BD21/ PFAL you will not have IDOCs itself
    triggering comes later.
    Hope this clarifies.

  • Possible to trigger output type through Function module?

    Hi,
    Is it possible to trigger output type through Function modules or through some codings or any standard FM's?
    Regards
    Bala.

    You did not specify what area you need to retrigger an output type for, but here is a sample to retrigger a delivery output.
      CALL FUNCTION 'BAPI_LIKP_PROCESS_MSG_DIRECT'
        EXPORTING
      DYNAMICOUTPUTDEVICE       =
          processing                       = PROCESSING
      SORTMESSAGE               = 1
        TABLES
          deliverynumber                 = delnbrs
          outputtype                       = outputs
          messageprotocol              = bapimsgprot
          return                              = bapiret2.
    Thanks

  • HT1689 is it really possible to spy remotely on iPhone?

    is it really possible to spy remotely on iPhone? Means is it possible for someone who uses the same mobile network to spy on my iPhone 4?

    myblackipadmini wrote:
    when I reset my iPhone (data &amp; settings) that means am eliminating any possibility for any spying possibility (hidden software)?
    If when you say "reset" you really mean a Restore (a "reset" in iPhone terminology is more-or-less like rebooting your computer), then a Restore will erase any data and settings. But the only way anyone can install hidden software on your iPhone is again if it's jailbroken, and with jailbreaks a Restore may not remove everything. That's one reason why jailbreaks are strongly discouraged. If your iPhone is not jailbroken, then it can't be spied upon by any means accessible to normal people.
    Regards.

  • Hi there , i use microsoft remote desktop to connect to my work pc - on my 21.5 mac the remote screen is half the size of my screen and i cant get it to be full screen - is this possible or am i just stupid ? many thanks

    Hi there , i use microsoft remote desktop to connect to my work pc - on my 21.5 mac the remote screen is half the size of my screen and i cant get it to be full screen - is this possible or am i just stupid ? many thanks

    What setting have you chosen in the view menu? Fit to Screen or Window.
    And, in Preferences what have you set for Display?

  • Is it possible to get Remote Desktop to work from my Surface 2 to a local PC running Vista?

    Is it possible to get Remote Desktop to work from my Surface 2 to a local PC running Vista?
    I keep getting "cannot find PC" entering IP or PC name
    but as a test I have set up my PC to do web hosting, and I can browse to the IP address using desktop IE and see my local web pages.
    I've just found a reference that says it has to be Business Vista.
    Why would Microsoft put such a STUPID restriction in?
    I think this Surface thing is going to go back if so.
    What about Win8 64 Pro? Will that work?

    Hi,
    Thank you for posting in Windows Server Forum.
    Yeah, windows 8 pro can connect to surface 2. There is detailed article guide for it, please check below link.
    Your Complete Guide to Using Remote Desktop on the Microsoft Surface and Windows 8
    Hope it helps!
    Thanks.
    Dharmesh Solanki
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Remote access vpn going through another firewall segment

    Hi,
    Can i know that when use remote access vpn connect to asa firewall inside interface, after that the remote access vpn is it can connect to another firewall segment , the firewall segment is behind the inside interface?

    Hello Sam,
    As long as you include that traffic into the crypto acl and also on the NO_NAT configuration  the answer would be yes. That is possible
    Regards,
    Julio

Maybe you are looking for

  • Text to speech not working with characters such as quotes? Any ideas

    text to speech not working with characters such as quotes? Any ideas

  • Functional acknowledgement posting to PO confirmation tab

    Hi Gurus, Can anbybody please  throw some light on the followin scenario. is it possible to have the functional acknowledgement posted to the confirmation tab of the PO. If so what kind of confirmation control key has to be used and other settings th

  • FV60 Screen enhancement through BADI

    Hi I am trying to enhance the BASIC Data tab in FV60 and FV65. I came across the BADI 'BADI_FDCB_SUBBAS01' which i believe is supposed to enhance the screens. I created a zprogram with a screen with a test field in it and inserted this program name (

  • IPHOTO crashes every time I use it.

    Ever since I have loaded iphoto it has crashed, especially with RAW files. Does anyone have a suggestion?

  • Problems with iTunes music transfer

    Hi, I have a problem in my music that i bought from iTunes. I copied-paste the music from my purchase to a blank CD and put some pictures in the CD too, because I need to format my computer. Then after i formatted my computer I tried to get the music