How to run two programs with one PC and two monitors

Good Morning,
I have a requirement to run a parallel loop and update the progress in two monitors with one computer.
For ex: its a two test stage, the process and progress of the 1st stage needs to displayed in monitor1 and similarly for 2nd stage to monitor 2 with program running with one computer.Would it be possible to do that.
Thanks in advance

Hi Parker,
yes, it's possible. You also have properties to set windows to specific monitors...
Best regards,
GerdW
CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
Kudos are welcome

Similar Messages

  • How to create a contract with one supplier and two dealers?

    Hi Gurus,
    I have a contract with a supplier (eg. Apple), but the products and services are supplied by two dealers.
    The supplier is the manufacturer and with whom the negotiation of prices is made.
    The dealers are those who make the delivery of the products and services and who the payment is done.
    How can I create a contract with these characteristics in SRM 7.0?
    I don't want to create two contracts with same products and services for two suppliers (Dealer_1 and Dealer_2).
    How can this be handled through business partner type "Vendor"?
    In "Partner" section in "Header" --> "Basic data", I can only add 1 vendor.
    The system is:
    Component software: SRM_SERVER
    Release: 700
    Level: 0008
    Support package: SAPKIBKV08
    Thanks in advance and best regards,
    Alonso Valenzuela

    Hi Wadim,
    I have a similar requirement to create order lines in an existing contract with reference using  BAPI_CUSTOMERCONTRACT_CHANGE.  The order lines get created in the contract. However, the condition types from the order line which i'm referencing are not getting referenced and are not getting added in the Contract's line after referencing.
    Did you come across any such issue ? If yes , could you suggest the solution ?
    Regards,
    Venkat.

  • How do I use icloud with one mac and two iphones

    I have just got an iPhone 5.
    My wife and I share a macbook pro
    My wife has an iphone 4s and uses iCloud to sync photos etc.
    I want to use iCloud too, so.....how do we use iCloud so:
    - when we each take photos on our phones they sync to our mac
    - our contacts sync (can we set preferences on our individual phones so we only get the contacts we want on our iPhones from a shared address book on the mac)
    - we have individual calendars
    Any advice much appreciated.
    Thank you.

    If you want to share the same photo stream so both your photos sync to your mac via iCloud you'll have to share the same primary iCloud account.  Set this up in Settings>iCloud on both phones using the same Apple ID, and in System Preferences>iCloud on your Mac; then turn photo Stream to On.  If you want to also using iCloud to sync with your shared Address Book on your Mac, but keep your contacts separate, you'll have to create two contact groups in Address Book on your Mac - one for each of you - and drag copies of the appropriate contacts into each group.  Then turn iCloud syncing for Contacts to on on all your devices.  To view just your own contacts you'll have to open the Contacts app on each of your phones, tap Groups, then check only your own contact group to view.  When you add contacts on either phone, you'll have to add these contacts to the appropriate groups in Address Book on your Mac as you can't manage contact groups on your phone.
    If you want to maintain your own calendars, the easiest thing to do is not to syncing your calendar with iCloud.  If you did, your calendars would be merged in iCal on your Mac and the merged calendar would appear on both phones.
    The important thing to know is that when you share an iCloud account any data you sync with the account will be merged and appear on all devices sharing the account.  This will happen with your contacts too, but since you already have a shared Address Book on your Mac, it will stay up to date as you change/add/delete contacts on your phones.  And by using contact groups you can filter your view to just your own contacts.

  • How to run Struts program with the help of tomcat

    Hello Everybody
    This is Adesh.I am a newcomer of java and facing a problem with struts, so if any one know how to set the path of struts and how to run struts program, so plz inform me.
    THX in Advance.............................................

    struts-config.xml
    <struts-config>
    <action-mappings>
         <action path  = "/welcome"
                    type  = "Welcome"
                    scope="session">
                <forward name="success" path=".welcome"/>
                <forward name="failure" path=".base.error"/>
         </action>
    </action-mappings>
        <plug-in className="org.apache.struts.tiles.TilesPlugin">
            <set-property property="definitions-config" value="/WEB-INF/tiles-defs.xml"/>
            <set-property property="definitions-debug" value="1"/>
            <set-property property="definitions-parser-details" value="0"/>
            <set-property property="definitions-parser-validate" value="true"/>
        </plug-in>
    </struts-config>tiles-defs.xml
    <tiles-definitions>
         <definition name = ".base" path = "/include/template.jsp">
              <put name = "title" value = "${title}"/>
              <put name = "header" value = "/include/top.jsp"/>
              <put name = "body" value = "${body}"/>
              <put name = "footer" value = "/include/footer.jsp"/>
         </definition>
    </tiles-definitions>web.xml
    <servlet>
            <servlet-name>action</servlet-name>
            <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
            <init-param>
                <param-name>config</param-name>
                <param-value>/WEB-INF/struts-config.xml</param-value>
            </init-param>
    <init-param>
                <param-name>definitions-config</param-name>
                <param-value>/WEB-INF/tiles-defs.xml</param-value>
            </init-param>
            <load-on-startup>1</load-on-startup>
        </servlet>
    <servlet>
            <servlet-name>init</servlet-name>
            <servlet-class>Init</servlet-class>
            <load-on-startup>2</load-on-startup>
        </servlet>
        <servlet-mapping>
            <servlet-name>action</servlet-name>
            <url-pattern>*.do</url-pattern>
        </servlet-mapping>
      <jsp-config>
        <taglib>
            <taglib-uri>/WEB-INF/struts-bean.tld</taglib-uri>
            <taglib-location>/WEB-INF/struts-bean.tld</taglib-location>
        </taglib>
        <taglib>
            <taglib-uri>/WEB-INF/struts-html.tld</taglib-uri>
            <taglib-location>/WEB-INF/struts-html.tld</taglib-location>
        </taglib>
        <taglib>
            <taglib-uri>/WEB-INF/struts-logic.tld</taglib-uri>
            <taglib-location>/WEB-INF/struts-logic.tld</taglib-location>
        </taglib>
        <taglib>
            <taglib-uri>/WEB-INF/wall.tld</taglib-uri>
            <taglib-location>/WEB-INF/wall.tld</taglib-location>
        </taglib>
        <taglib>
            <taglib-uri>/WEB-INF/c.tld</taglib-uri>
            <taglib-location>/WEB-INF/c.tld</taglib-location>
        </taglib>
        <taglib>
            <taglib-uri>/WEB-INF/fn.tld</taglib-uri>
            <taglib-location>/WEB-INF/fn.tld</taglib-location>
        </taglib>
        <taglib>
            <taglib-uri>/WEB-INF/fmt.tld</taglib-uri>
            <taglib-location>/WEB-INF/fmt.tld</taglib-location>
        </taglib>
    </jsp-config>
        <resource-ref>
            <description>DB Connection</description>
            <res-ref-name>jdbc/SQLServerDB</res-ref-name>
            <res-type>javax.sql.DataSource</res-type>
            <res-auth>Container</res-auth>
        </resource-ref>
    </web-app>This should help....

  • How to run the program with variant automatically

    Hi experts,
    I want to know how can I run the program with a variant automatically without defining any transactions or jobs. I want my program to run with a variant automatically, when I press F8.

    Try doing this way...
    First Create a Sel Screen varient, 'ZTEST123' in this case
    Report ZTEST.
    parameters:
      w_kunnr type kna1-kunnr,
      w_flag type c no-display.
    start-of-selection.
    if w_flag eq ' '.
      submit ZTEST USING SELECTION-SET 'ZTEST123' with w_flag eq 'X'.
    endif.
    end-of-selection.
      write:  w_kunnr.
    Thanks.

  • How to run native program with Java program?

    Hello
    I've got following problem. I'd like to write file browser which would work for Linux and
    Windows. Most of this program would be independent of the system but running programs not. How to run Linux program from Java program (or applet) and how to do it in Windows?.
    Cheers

    Try this:
    Runtime rt = Runtime.getRuntime();
    Process proc = rt.exec("ls -l");
    InputStream stream = proc.getInputStream();
    InputStreamReader isr = new InputStreamReader(stream);
    BufferedReader br = new BufferedReader(isr);
    String line = null;
    while ( (line = br.readLine()) != null) .....
    "if the program you launch produces output or expects input, ensure that you process the input and output streams" (http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.html)

  • Hash with one key and two values

    Hello,
    In java can i have a hash or similar data type than can have one value and two keys?
    thanks,
    jd

    Eh, I'd avoid arrays, personally.
    The reason why is that in my experience, once you start doing things like this, you end up adding an arbitrary number of additional elements for each key. Fixed-size arrays would be a pain.
    If you don't want/need to create an object that encapsulates the two values, why not just use a java.util.Collection as the value in the hash? The Collection -- say, a LinkedList (you decide) -- would hold the two values you want associated with the key.

  • How to Run std program with a specific variant for specific user?

    Hi guys
    We have a std program which will be run by different users in the company. Now the requirement is to make sure that each user runs the report with a specific varaint. Can we control this if yes how?
    one options we thought about was to create a transaction in SE93 and define the program to run with a predefined varaint and assign the new custom tcode to the user profile. But we have many different users and we will end up with creating many transactions which we would like to avoid. Is there any other option to control the std program such that each user can run the program only with a pre-defined varaint and the one which only the user is suppoed to run. thanks in advance.

    We have a std program which will be run by different users in the company. Now the requirement is to make sure that each user runs the report with a specific varaint. Can we control this if yes how
    you can do this..
    You can create a Custom table
    userid     keyfield
    program  keyfield
    variant    keyfield
    programdesc
    Make the table Maintaintable(usnig table maintenance )
    Now create another Program
    It takes input of the Program name( using selection screen)
    LOGIC
    in side that place a logic ,
    Based on the user name  and program name Get the variant name from above table
    Now Submit the program with the variant you have selected above.
    Use Variant Addition when you use SUBMIT
    So now program executed based on user variant.
    Now you create a Transaction for this program.
    When use Runs the Transaction , user needs to input the Program name which he wants to execute.
    and Output will be shown based on the variants
    Regards
    Vijay Babu Dudla

  • I want a JClient Form with one mater and two details

    Hi,
    In my JClient Form, I want to have one master view and TWO detail views. The two detail views are linked to the master view simultaniously. Can Jdeveloper do that?
    and How?
    Stephen

    Sure. Just define the VO's and the relations between them and afterwards develop some independant panels which describe the VO's. You can then place each panel on a single panel and organize them the way you want.
    However, there isn't a way to simply generate the entire deal with a single wizard. You will have to run the wizard multiple times for each of the panels you wish to create and then manually put them together.
    Hope This Helps

  • Using TimeMachine with one Mac and two HDD

    Hi
    I was wondering if the following can be done with out loosing data and with out confusing TimeMachine:
    Using one mac and with time machine going back and forth between 2 external HDD ?
    in order to have 2 TimeMachine HDD (one at home and one on the move)
    Did one of you did try this ?
    If yes is it working fine ?
    Thanks for sharing your feed back
    Regards

    Hi, and welcome to the forums.
    Yes, that works fine.
    The first backup to each drive will, of course, be a full one.
    Thereafter, each backup will be an "incremental" one, of all the changes that have been made to your system since the last backup +*to that drive.+*
    Of course, if you create a file at home, run a backup, then change the file and run another backup, your "home" backup will have both versions of that file. If you then do a backup to the other drive, it will only have the new version.
    The more changes you make between drive swaps, the longer the first backup after the swap will be, since there are more changes to "catch up" with. In some cases, the volume of changes may cause Time Machine to do a "deep traversal," with a longer than usual "Calculating Changes" phase, to figure out what's changed and needs to be backed up.

  • Windows server with one NIC and two IP address answers to ping with wrong address.

    Hi,
    I have Windows 2012R2 server, as a web server. It has only one NIC, and I have given it two IP addresses. 10.0.0.11 at the main Window, and under the advanced tab, I have added 10.0.0.12 as additional ip to the nic.  I have even but to
    host file a row, that states 10.0.0.11 server.domain.local.
    Now when I ping "server.domain.local" from the server itself, it gives me 10.0.0.12 as answer.
    With nslookup I can get correct address (10.0.0.11). But when I type server.domain.local to the web browser it tries to connect 10.0.0.12, which is incorrect. It should connect to 10.0.0.11 address. Could you please help me?
    Regards,
    Jouko

    Windows does not work well with two IP addresses on the same subnet.  Results are inconsistent, as you have discovered.  In general, you should never try to put two IP addresses from the same subnet onto a single Windows box.  That means either
    multiple addresses on a single NIC or on multiple NICs.
    Maybe if you tell us what you are trying to accomplish by having two addresses, we could provide better assistance.
    . : | : . : | : . tim

  • How i can make Waveform with one X and 2 diferent Y axis

    I have 2 arrays with one same collumn
    I want to show it on waveform chart with one x axis.
    Its must lokks like that:

    You can't have two separate Y axis stacked on one another. You can create multiple Ys that can be on the same side, or opposite sides.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • Merging two Podcast with same episodes and two different feed addresses

    Version 7.0.1.8 has certainly problems in the download of new podcast episodes.
    I'm having a lot of difficults - the last one beeing forced to unsubscribe one podcast and subscribe it again with another feed address. Now I have two podcasts in ITunes with same name. In Windows Explorer, all episodes are together - in the iTunes menu, all episodes are separated, each one downloaded the same episode, and with a number one appearing in the file name under the folder where the programs are stored. I tried to merge both subscriptions, but it's impossible.
    Does anybody knows how to do this? Need I download all episodes again?
    link:http://discussions.apple.com/message.jspa?messageID=3376635#3376635

    nothing was done, but I hope new software updates solved this issue.

  • How to run a program with a specific WM?

    I am unsure if this is programming related, or what.. but:
    I am programming something and when I run it I have no visible window manager. This is probably because I use DWM. However, when I compile and run this on a machine with a DE the application has a window manager bar, such as GTK, or what ever the DE uses. My question is, how in my setup (DWM or in any DE-less environment) can we force an application to use a title bar/window manager bar such as GTK?

    Firstly, we've got to get some terminology straight :-)
    I think what you're referring to is usually called one of several things:
    - A client's parent window.
    - A client's decorations.
    - A client's extents.
    - A client's frame.
    Also, GTK is a GUI toolkit... Like Qt, tkinter, or wxWidgets. They are not responsible for a client's decorations. Traditionally (with the famous exception being Chrome), window managers create those decorations by re-parenting the window you create.
    Usually, tiling window managers don't bother with decorations (although, they may still re-parent the client for other reasons).
    In short, you can't "force" your application to use a title bar, unless you physically create one yourself (again, like Chrome... and they do it so tabs can be at the very top). I don't think toolkits do this, since window managers traditionally do this manually.
    You don't need to have a DE to have window decorations. If you were just running Openbox, you would see a title bar too.
    If a window manager doesn't create decorations for you, you need to create your own (probably from scratch, unless a toolkit exists to do this for you, but I'm not aware of any). This is a non-trivial task that would probably require low level X programming (using Xlib or XCB). If you want to pursue this venue, I'd be happy to give you a few pointers. (I am building a re-parenting window manager right now.)

  • How can I set up itunes with one ipod and two laptops?

    My boyfriend gave me an ipod a few months ago and he let me set up itunes on his laptop so everything is there. now that i have my own laptop i want everything thats on his laptop on mine. The itunes part i mean. but i don't know how can anyone help me?

    Do as this article says:
    Syncing to a "New" Computer or replacing a "crashed" Hard Drive: Apple Support Communities
    That will make your iPod the syncing computer.
    You can only have one syncing computer/iTunes library for apps. and photos. You can however, manually sync music and vides from multiple computer/library if you sync manually. See that topic of:
    iTunes 11 for Windows: Set up syncing for iPod, iPhone, or iPad

Maybe you are looking for