How to give input to an external system applicatio​n

i have an application file.i need to control the inputs of that application through labview 8.5 automatically. is there any suggestions for that one?
Regards
Naresh G

Hi nk0435,
It sounds like what you want to achieve is Inter-Application Communication; In other words, having a LabVIEW VI's Front Panel communicate with Windows Media Player and control the buttons.
You can acheive Inter-Application Communication using ActiveX. A brief article on this can be found here; You may also want to look at the Wikipedia article on ActiveX here.
With regard to communicating with Windows Media Player through LabVIEW, there is some very appropriate example code here.
I hope this helps,
Josh E
Applications Engineer
National Instruments UK & Ireland

Similar Messages

  • How to give input to 3d surface interms of cylindrical coordinates(r,theta,z)

    hi,please let me know how to give input to 3d surface interms of cylindrical coordinates(r,theta,z)how to give input to 3d surface interms of cylindrical coordinates(r,theta,z)

    Hi,
    This is the functions you should be using:
    Also, please have a look at the NI Example Finder, i think the 1st and the 4th example will be of interest to you.
    Hope this helps...
    .......^___________________^
    ....../ '---_BOT ____________ ]
    ...../_==O;;;;;;;;_______.:/

  • How to send IDOC's to external systems

    Hi everybody,
    I'd like to get information of how I can send one IDOC to an external system.
    I have to send data about access control and e-learning from R/3 to external system,  I think an IDOC is the perfect way to do it, but I don't know all the steps involved.
    Could anyone explain me or give some document or link in with I could see all the steps  from the selection of the IDOC (What to do if the idoc doesn't fit exactly) until the IDOC is out of the r/3 system, how to configure the ALE, etc
    Thank you very much.

    This document might be helpful:
    http://www.angeli.biz/www5/books/IDocBook/IDocBook.pdf
    It's a bit outdated but most of the info is still actual. If you anticipate a lot of ALE/IDoc projects, I suggest getting this book: http://www.amazon.com/IDoc-Technologies-Prima-Techs-Book/dp/0761534318/sr=8-1/qid=1170864257/ref=sr_1_1/103-6659593-2860615?ie=UTF8&s=books
    It is out of print right now but I've heard that more copies are coming out this year. This is the most comprehensive book available on the market at this time.

  • How to catch the response of external system

    Hi i have a scenario like to send a request and get the response
    If we use invocation type as realtime for outbound message type in external system then we can add both request xsl and also response xsl
    but if we use invocation type as xai for outbound message type ,where can we add the response xsl file
    how to convert the raw response
    plz help me.

    shanker,
    We are currently developing Outbound Messages at my client. This stuff is new to me and unfortunately, the documentation does not go into a lot of detail, but I'll give you an explanation of how I understand the differences in the response processing for XAI & Outbound Messages.
    If you define the Outbound Message with a processing method of 'Real-time', XAI will send the request and it expects an immediate response. It keeps the connection open until it receives the response. There is even a Context parameter you can set how long you wish to wait for a response before it times out. So unlike XAI which is asynchronous, this processing method 'appears' to be synchronous, because the request waits for a response and when it is received, will update the Outbound Message with the response. And since you expect a response, CC&B allow you to define a response XSL on the External System / Outbound Message Type configuration.
    What is still unclear to me is the setting of HTTP Transport Method in the Context Tab. Possible values are 'send' and 'sendReceive'. How is the different values affect XAI & Real-time messages?
    Any comments are welcome.
    Andries

  • How to migrate projects from another (external) system into PS

    Hi,
    Which technique to use in your opinion is the best practice to migrate projects in PS?
    Batch input or ABAP program and use BAPIS? or is ther other alternative?
    Best regards
    Jose Marin

    Hello Jose,
    Open PS is the best option, If your external system is MSP. There is no standard LSMW prog available for uploading the Projects. Howvever there are certain BAPIs available
    1.BAPI_PS_INITIALIZATION
    2.BAPI_BUS2001_CREATE
    3.BAPI_BUS2054_CREATE_MULTI
    4.BAPI_BUS2001_SET_STATUS (To set the status at project level)
    OR
    BAPI_BUS2054_SET_STATUS (To set the status at WBS element level)
    5.BAPI_PS_PRECOMMIT.
    I guess you don't have to code again for this. Whatever structures and internal tables in BAPI_PROJECT_MAINTAIN can be used to populate the above BAPIs.I have checked on BAPI_PROJECT_MAINTAIN and this creates a Project definition too.
    Good option is to create a custom program and load data using the BAPIu2019s.The program should perform couple of pre-validations and should have error handling capability as well.
    Thanks
    Sarang

  • How to send delivery document from external system to ECC

    i have a business requirement to send a delivery and billing documents from external system ( MS access )  to ECC
    could any one light me how to do this ???
    Thank you in advance

    Hi Ahmed,
    Talk to your middleware team, They will upload the data through RFC.
    Basiclly RFC(Remote function call) works like it will call the function module and then upload the data.
    For more information, check the link given below.
    http://help.sap.com/saphelp_nw04/helpdata/en/6f/1bd5b6a85b11d6b28500508b5d5211/content.htm
    Hope this helps,
    Regards,
    MT

  • How to give input parameter to application form through se38 program?

    Hi all,
    How can i call my application form from within my se38 program?
    is there any way then please tell me?
    and how to pass input parameters to application form through se38 program?
    Thanks and Regards,
    Arpita.

    Hi you can pass the parameter using application program. You can pass the value using the interface of the function module given below.
    parameter p_matnr type  mara-matnr.
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname           = gc_smart_form 'Name of ur smart form
          variant            = ' '
          direct_call        = ' '
        IMPORTING
          fm_name            = lv_fmname
        EXCEPTIONS
          no_form            = 1
          no_function_module = 2
          OTHERS             = 3.
      IF sy-subrc NE  0.
        MESSAGE ID sy-msgid TYPE 'E'
                          NUMBER sy-msgno
                            WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    CALL FUNCTION lv_fmname
    EXPORTING
      control_parameters         = gs_ssfctrlop
      output_options             = gs_ssfcompop
      user_settings              = ' X'
    **---This is where u can pass ur paramter to the smart form*
      matnr                           = p_matnr.
    called from batch job
    EXCEPTIONS
    formatting_error           = 1
    internal_error             = 2
    send_error                 = 3
    user_canceled              = 4
    OTHERS                     = 5            .
    Thanx and hope this would help.
    Regards,
    Aruna
    Edited by: Aruna Kumari Chekka on Dec 12, 2008 6:24 AM
    Edited by: Aruna Kumari Chekka on Dec 12, 2008 6:29 AM

  • How to send an event to external system?

    Hi
    I am facing problem in sending the event to an external system.
    Initially I created 2 workflows with different itemtypes. One has send event and other has receive event. This works perfectly when I use the WF_OUT and WF_IN agents of the same system.
    Now, I signup two workflow server ( running in two PC, on Oracle 8.1.7 ). I have followed the following steps.
    a. creating database links.
    b. Signing up the system.
    c. changing the system status to enabled in Global Preference Page.
    In the event subcription in System1 is local, Out agent is Wf_OUT of System1 and the TO Agent is Wf_IN of System2. There is external subscription for the same event in System2 without Agents.
    When I run the workflow with send event, the event message goes to WF_OUT agent with the status Ready, but never propogates.
    What could be the reason? Can anyone help me?
    Thanks a lot.

    Hi
    Thanks for immediate respose. I tried the ping/acknowledgement example in the biginning itself. It doesn't work. I also tried by changing the agents ( to respective values suitable for my systems) of that example. Then also it failed. The error in that case also same. The message will not propogate from the out going agent.

  • How to give input on selection screen

    hi all,
    i want to provide text to thr report on selction screen
    i.e for example i have to write the text 'not valid reason for it ' on selction screen
    how do i write it ?
    kindly let me know
    thanks in advance

    Hi Deepthi,
    Please go thru the following code.
    SELECTION-SCREEN BEGIN OF LINE.
      PARAMETERS cg1 RADIOBUTTON GROUP CTU.  "create session
      SELECTION-SCREEN COMMENT 3(20) TEXT-S07 FOR FIELD cg1.
      selection-screen position 45.
      PARAMETERS cg2 RADIOBUTTON GROUP  CTU.     "call transaction
      SELECTION-SCREEN COMMENT 48(20) TEXT-S08 FOR FIELD cg2.
    SELECTION-SCREEN END OF LINE.
    You can Give text for a particular screen element.
    You can set the position of the text as well.
    U should make use of events like AT SELECTION-SCREEN for getting the input data back to the report
    Thanks,
    Lakshman
    Edited by: Lakshman N on Dec 4, 2008 2:52 PM

  • How to work with folios from external systems?

    I need to group a content into a hierarchical structure using folios. I need to add document to the particular slot in the folio. Documents are generated by the external application and checking-in thru the SOAP interface. There is no services regarding folios for SOAP in UCM. Is there any solution to resolve this problem? It is possible to use workflow processes to route documents to particular slots during the SOAP check in action?

    The services exist to do what you want, but they are not documented. I suggest logging a service request with support in order to request an Enhancement Request to prompt the documentation to be created. the more requests that come in the more priority can be given as far as I understand it.
    If you know how to customize the CS pretty well you can go look at the Folios component in the CS custom directory (remember not to directly modify it however) and look at the service definitions and that may give you some ideas. If you do not know how to read the service definitions ( and some are not clear since they call Java sub methods that are not exposed clearly) you can look at the Customizing guides in the documentation.

  • How to give input parameter to Bapi when executing a method.

    Hi All,
    I have 1 input field and 1 button.I've defined a model node and inside that model attribute in my view.If I enter something in the Input field the value should go to the particular model attribute I defined.How to pass that input parameter.I have a action like this....
    public void onActionGetDateDetails(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onActionGetDateDetails(ServerEvent)
        wdThis.wdGetGetDateDetailsCustController().execute_Bapi_Get_Date_Details("");
    // while executing the above method I have to pass the input parameter typed in the input field.
    Structure of my context :
    Bapi_Date_Details
    >Network List(Model Node)
                                          |
                                          -->Network (Model Attribute)
         //@@end
    Help me to solve this.
    Thankx in advance.
    Regards,
    Karthick.K.E

    Hi Karthick,
    You can associate an input field's value to a BAPI in two ways:
    1) binding the input UI element's 'value' directly to the BAPI's input attribute that you want to set. This is the methos Noufal suggested. In this method, make sure you initialize the attribute through the following lines of code in the doInit() method, else, the input field will be disabled.
    <b><Bapi_name>Input input = new <Bapi_name>Input();
    input.set<Attribute_name>(new <dataType>);</b>
    2) The second method is settting the input's 'value' to some other attribute(say 'abc') and giving this value to the input parameter just before calling the RFC.
    input.set<Attribute_name>(wdContext.currentContextElement.getAbc());
    Hope this helps,
    Best Regards,
    Nibu

  • How to give input to the vi references

    I'm using vi server to call sub vis.Here by i attached the code.I want to pass one array control also ahile calling the vi.How to do that.
    Attachments:
    main1.vi ‏68 KB
    Horizontal_bar.vi ‏139 KB

    Thank u very much.
    --- Please don't call me "u". The word is "you".
    Whether can i use set control value in the case of call by reference node.
    When you CALL BY REFERENCE, you wire the terminals just as if you were calling it conventionally. Look in frame 2 of my demo.
    Also please clear me whether using run continously is an efficient mode or putting the login in a while loop.
    I have no idea about your "login", but "run continuously" is not a good idea for a finished program. It's intended for debugging, and testing subVIs, but not as a way of operating. For one thing you can't use it in a built application.
    If you need to coordinate several VIs, you need a global b
    oolean variable, called PROGRAM RUNNING" or something.
    Set it TRUE first thing, when the program starts, before you launch all the parallel VIs.
    Set it FALSE when the user clicks the QUIT button on the main panel.
    Each independent loop should check the value of this global and stop if it is TRUE.
    For making an exe file.which is the better way either making the exe of main appln or making exe of library which has alltogether all subvis."
    The library method is only useful if the library can be used by more than one main application. If you have one main application, then use the everything-in-one-file approach - it's easier on everybody.
    Steve Bird
    Culverson Software - Elegant software that is a pleasure to use.
    Culverson.com
    Blog for (mostly LabVIEW) programmers: Tips And Tricks

  • We need how to copy macro logic in the system

    Hi Experts,
    we need how to copy macro logic in the system, we have some macros in my friend system,  i need how to copy macro logic , can u send me elaborate.
    Regards,
    BABU

    I'm a bit uncomfortable with you've wanted to do especially you and your friend has a different system (unless its a sister company/industry). If this would be the case you can copy your friend's macro with the help of your basis team to transport them in one system to another.
    if the case is different organization, I'm not sure if that is possible since no industry have same requirements but i may suggest the links below for your reference on how to copy the Macro into external system. Hope the document is relevant to your issue.
    [http://help.sap.com/saphelp_scm41/helpdata/en/82/2101fac5288f4d8c7be7c20e604a8f/frameset.htm]
    Cheers!

  • How to link an analog input to a controller implemented in PC(Labview) then feedback to the external system?

    Atten : Jeff or anyone =)
    I had discretized my controller onto labview. And would like to feed the analog input from external into the PC(that the controller is implemented in). I do hv a DAQ card. The problem is I do not know how to link the analog input -> ADC -> controller -> DAC -> system. And i really believe labview hv functions to do it. But really confuse how should i do it. Could anyone pls advise me. Thanks

    Darren,
    You have answered my question. I was wondering whether you were doing single point (non-buffered) analog input, or multipoint (buffered) acquisition. Seems you are doing the latter.
    I'll offer answers to both, however, and I'll start with single point. If you have a single point of data that you'd like to output on a DAC, use the Functions->Data Acquisition->Analog Output->AO Update Channel. You can wire your data right into this VI, and it will update the channel.
    If you have an array of data that you'd like to send out on the DAC, you can use the Functions->Data Acquisition->Analog Output->AO Generate Waveform. This VI is similar to the former, but you tell it the DAC you want to update, the update rate (samples per sec
    ond), and the array of samples you want it to update with.
    In LV5.X, the input is an array of samples; in LV6i, it's an array of waveforms. Therefore, you'll have to change your array to a waveform. Do this by selecting the Functions->Waveform->Build Waveform VI. Stretch the output down, and another input will show up (dt). Wire your array to the squiggly line input. Wire a 0 to the t0, and 1/scan rate into dt. Then wire this output to the AO Generate Waveform VI.
    Hope this helps.
    Mark

  • How do I synchronise my Intel iMac's SPDIF audio input to an external clock source?

    How do I synchronise my Intel iMac's SPDIF audio input to an external clock source?
    I have a Focusrite ISA One microphone pre-amp with digital ADC card fitted. Both devices are set to 24 bit/44.1kHz and connected by Optical cable (from ISA One to iMac's optical SPDIF input)
    I've tried to get the iMac to slave to the ISA One's digital clock by looking in the Audio MIDI set-up but cannot get it out of 'Default' mode. Focusrite tell me it needs to be 'Locked' in the Mac but I can't see how to do that.
    The Mac recognises when I change the ISA One's sample rate because Pro Tools gives me an alert, which would suggest that it's receiving data. But all I am hearing on the input is digital white noise.
    Any ideas?
    Cheers!

    USB and FireWire work in very different ways, so there is no adapter.
    Instead, you should just get a USB 2.0 hub, like this one
    http://eshop.macsales.com/item/NewerTech/USB2HB7PRO/
    There are many choices, but be sure to get one that is powered (it comes with its own power supply).  Cheaper hubs rely on the computer's USB port for power.

Maybe you are looking for

  • Vertical Scroll Bar

    I must sound like such a NOOOOOOOB! I have CS4 and have come to remake a website on Flash for a friend. The content that will be put onto the site is quiet a lot so for design reasons I would rather have an internal scrolling area as apposed to scrol

  • Irrelevant Data getting printed on the Invoice Generated

    Hi SAP Billing Gurus I have facing a printworkbench issue..i will be glad if anyone can provide me with the solution or any other help With TCode EA40(Display Invoice)  I am able to get the correct data in output in the print preview . The Process st

  • How to install NWDI to already installed ECC6.0

    Hi Frndz, I installed ECC 6 with JAVA + ABAP stack including(EP,BI,PI,XSS,ABAP).Now i need NWDI for my ESS customization how can i install(add) NWDI for this already installed ECC6.0. is it possible?? Regards Rajesh

  • There is not sound can't use f key to turn on of off by mute keyoff

    I have no sound my my computer . I can't turn the on and off key and mute buy my key board , yes I am writting with it and offer keys work

  • Mass update Customer Sale data error?

    I test mass to update customer master data--sale area data:  sale district ,sale office,sale group three fields, I input Tcode:MASS ,select KNA1 and excute, then select KNVV table and excute, input a customer number in data records to be changed tab