How to Use VM Ware software to run ECC 6.0

Hi,
I dont know where to put this question, I have Ecc6.0 software,
i have vista pre installed laptop with vm ware, i come to know that we can run ecc 6.0 using vm ware.
Please suggest.

> i have vista pre installed laptop with vm ware, i come to know that we can run ecc 6.0 using vm ware.
https://www.sdn.sap.com/irj/sdn/virtualization
Neither ERP 6.0 nor IDES is available as "home installation". You need a license for that.
Markus

Similar Messages

  • I would like to leave my iMac on Snow Leapord to use Power PC software, and run Mountain Lion on my Macbook pro. I am getting an iPhone 5. Is there a way to use mail on all of them?

    I would like to leave my iMac on Snow Leapord to use Power PC software, and run Mountain Lion on my Macbook pro. I am getting an iPhone 5. Is there a way to use mail on all of them with the same accounts?

    Any IMAP e-mail account can be accessed from all devices just fine. You don't need to upgrade from Snow Leopard to be able to access an IMAP e-mail account. However, Snow Leopard won't have built-in support for iCloud. As mende1 points out, you can still read your iCloud e-mail from Snow Leopard, but you have to set it up manually. You won't be able to do things like sync your iCloud calendar or addresses with iCal or Address Book on the iMac, though.

  • How to using the executable software in Java

    I got a software named: pdf to text convertor; which can format the text interface from the pdf, for example, you need add the page number with a4 paper, then the convertor can change the pdf into text with page numbers. it is running on the doc, the command like: c:\pdfconvertor\xpdfrc.exe "c:\filename\name.pdf", after the text file will exist in the same directory with the pdf file.
    so my problem is how to use java to call this DOS command to execute the program, and then java can read the text file, does some one give me some idea? better with simple java code!! Thanks very much! I will pay dollar for the solutions

    You can use:
    String[] cmd = {"c:\\pdfconvertor\\xpdfrc.exe", "c:\\filename\\name.pdf"};
    Process p = Runtime.getRuntime().exec(cmd);Wait for the process to finish:
    p.waitFor()and do your thing with the output file.
    Note there are mechanisms for capturing the input and output of the subprocess; see java.lang.Process javadoc.

  • What a good book to learn how to use Apple's software professionally

    I have a MAC Mini, need to learn how to use Apple's sofeware professionally!  Like how to put headers on a spreadsheet!

    Hello Eva,
    For a book...
    http://shop.oreilly.com/product/9780596157593.do
    For Tutorials...
    https://www.apple.com/iwork/tutorials/#numbers-hero

  • How to use PCI6602 4-5 cards run simultaneous via RSTI?

    I use them as a simple event counter all of them must start and stop count at the same interval of time.
    Now I write my VI as attachment,I already have RSTI bus,but don't know how to use it.
    Every one who know please help.
    Attachments:
    PCI6602 Count(4card 32CH) R8.vi ‏345 KB

    Hi credo,
    First here's a few comments on what I see in your vi:
    1. The loops to configure the counters are the right idea. You need those 32 distinct task id's to perform 32 channels of counting. You've already gotten over one key hurdle!
    2. There's quite a bit of duplicated code to handle each of the 4 boards separately. You could make sub-vi's out of these code chunks and clean up your diagram considerably.
    3. You're programming the counters for "simple" (unbuffered) event counting but are then reading them as though they are buffered. This won't work.
    I can't tell whether you need buffering or not. It doesn't look like you are trying to use most of the buffered data. However, buffering *can* still help make sure that all the counter values you read represent the same instant in time. Can you describe your needs more exactly?
    4. If you buffer the reads, you'll need to supply a "Gate" signal, i.e., a sampling clock. If you can spare a counter to generate one, then this alone can synchronize all your readings. Otherwise, you'll also need to configure all the counters to start on a digital trigger.
    5. You've got some issues with dataflow, local variables, and race conditions. For example: inside your big loop you read from the D1,D2,D3,D4 local variables to create a graph and stuff. However, you don't write new values into those indicators until the inner reading loops end. It is very likely that they will be read before they are written. This would be a good place to simply route wires instead of using local variables.
    That's plenty enough to look into for now. I would strongly recommend that you first try to work out the programming syntax and flow using several counters from 1 board. When you get it working, you can create a sub-vi from it and reuse it for the other boards. Then we can start talking about RTSI...
    One little-known fact about RTSI is that it can actually be handy even when programming a single board under traditional NI-DAQ. I've used it frequently to avoid the need to hardwire connections for timing signals. I'd again recommend that when you're ready to deal with RTSI, that you first try it out on a single board. If it works for 1 it'll work for the others.
    Finally, you may want to consider migrating to DAQmx. Especially if you don't have a lot of code invested into counters under traditional NI-DAQ yet. NI has been nudging us toward DAQmx for quite a while now, and it'll handle the RTSI stuff pretty much auto-magically.
    -Kevin P.

  • How to using sqlplus to connect and run command ?

    Hello,i have a small problem please help me
    I want to use sqlplus to connect and run command
    for example : sqlplus test/test@DB select sysdate from dual ;
    and then it will show data (sysdate) to screen
    what should i do ?
    Thanks

    kenshin19xx wrote:
    Hello,i have a small problem please help me
    I want to use sqlplus to connect and run command
    for example : sqlplus test/test@DB select sysdate from dual ;
    and then it will show data (sysdate) to screen
    what should i do ?
    Thanks
    bcm@bcm-laptop:~$ echo "select sysdate from dual ;" > now.sql
    bcm@bcm-laptop:~$ sqlplus user1/user1 @now
    SQL*Plus: Release 11.2.0.1.0 Production on Wed Dec 14 20:41:33 2011
    Copyright (c) 1982, 2009, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SYSDATE
    2011-12-14 20:41:33

  • How to use "Start synchronous Call" to run a subVi and keep timeout event in Main vi still running?

    Hi, All
    I have a application need periodically check an instrument status and I put it in the "Timeout Event" in main vi. I also need call some subVis for configuration etc. Somehow when I called those subvi, the Timeout event in my main vi was not running. Then I use " Start Asynchronous Call" function to call the subVis. Turns out it works fine with some subvis without return value, but not as expected with "return value-needed" subvis. 
    I attached a simple test, my main vi call two dlg subvis: AboutDlg.vi and SettingsDlg.vi. In the timeout event, I just use a counter for simulation. When you run it, you can see the counter keep counting when the AboutDlg.vi was called, but stopped when SettingsDlg.vi was called. 
    As I remembered, someone suggested to use Queue to pass return value, but I don't know how to implement it here. 
    Anyone has any suggestions about it? 
    Thank you very much. 
    CQ
    Solved!
    Go to Solution.
    Attachments:
    AsyCallTest.llb ‏108 KB

    Try playing with this - I have modified  your code to poke a Q in there.
    You will want to change the clusters to more useful datatypes (maybe enum and variant so you can unbundle variants depending on enum input), you will want to type def the clusters to make it easier to maintain and you will NEED to handle the sitaution where the called VI is left open on program close - i couldn't be bothered as this was not your immediate issue)
    Hope this give you some Ideas - totalyy untested but should work.
    James
    Attachments:
    AsyCallTest.llb ‏114 KB

  • How to use addKeyListener in a program running using command prompt

    Does anyone have any idea how to add the addKeyListener to a program running using command prompt.
    Let me explain how the program run.
    The program is start and accept call from other program. But from time to time, I need to issue some command by pressing the keyboard, let say, ESC is closed the program, F1 is showing the stated. F2.... (This is all need to run in the command prompt windows)
    My problem is this program does not have any gui interface, so how can it be added?
    i do it this way
    public void key(){          
    addKeyListener(this);
    But it have compile error.
    mainServerImpl.java:87: cannot resolve symbol
    symbol : method addKeyListener (mainServerImpl)
    location: class mainServerImpl
    addKeyListener(this);
    I did implement KeyListener. But just don't know how to solve this error.
    can anyone tell me how to solve it or point me a source that can help.
    Thank in advance!
    Regards,
    Tai Tan

    Write your own Thread, to do this:
    public class KeyThread extends Thread {
       public void run {
          while(true) {
             int i = System.in.read();
             if(i == 123) {
                break; // to stop the thread
    // in your main:
    Thread keyThread = new KeyThread();
    keyThread.start(); // calls run() of the thread

  • How to use third party software

    I have downloaded the Real Guitar demo to try out with Logic. I have never used sounds other than those that came with Logic. How do I set up Real Guitar so that I can use those sounds in Logic? Thanks.

    Quit Logic. Install RG, just follow the onscreen instructions. When the installation is complete, start Logic, create a *Software Instrument track,* go to the *i/o slot* on the *channel strip*:
    !http://farm5.static.flickr.com/4006/46126704682468f6d04em.jpg!
    click it and select Musiclabs>RealGuitar:
    !http://farm4.static.flickr.com/3338/4612670388_ac07dc50d0.jpg!
    and strum away - whilst keeping the RG manual open in the background.

  • How to use Sony Ericcson software on an Apple Mac?

    Does anyone know how to load the Sony Ericsson software onto an Apple Macbook, and then transfer music from that application onto my phone, W880i?
    Do I need iSync? If so, how does the download application work with the Sony Ericsson software and transferring music from my Apple to my phone?
    Any help appreciated,
    thanks,

    Managing your Contacts and Calendars is very easy with Sony Ericsson phones and Macs.
    Make sure all your Contact data is up-to-date and stored in the Macs *Address Book* application and all your Calendars, Events & To Dos are also up-to-date and stored in the Macs iCal application.
    Then you'll need an iSync Phone Plugin for your phone from http://www.feisar.com/plugins.html
    Finally, you set-up iSync and synchronize all your data between your Mac and phone.
    From then on you just sync your phone regularly and any changes made on the phone or on the Mac are transferred both ways so both your Mac and Phone are always up-to-date with each other.
    Some general tips about using and setting up iSync are here: http://www.feisar.com/isync_tips.html

  • How to use Text Variables to make Running Footers

    I'm confused about how Text Variables are behaving in the creation of Running footers on a pair of master page.
    My document has 3-6 Steps on each page. Each Step is designated with a unique character style called StepName.
    I want a running footer that has the first instance of StepName on the left page and the last instance of StepName on the right page. Like a dictionary.
    I can get the correct text to appear, but then it adds an unwanted ParagraphStyle (a substep letter) that gives me this:
    A) Open the File
    when what I want is just this:
    Open the File
    The Character Style StepName is not based on any other style.
    I have seen this done but can't understand why I'm picking up a lettering scheme on the footer.
    -Christian

    Sounds like you have a numbered list applied to the paragraph style of your footer.  It's either part of the paragraph style of the footer or it's local formatting. Either way, you can turn it off by selecting the paragraph and clicking on the numbered list button on the paragraph panel or the main control panel. Or you can edit the style and under bulleted and numbered lists change the list to none.

  • How to use HOST call DOS continuous running problem but NOT hold Forms scre

    In my Forms, I have a Button a start a MP3 recorder program to record voice, I use HOST command to init the program successfully. However, since the MP3 recorder program in continuous running, the HOST command hold my Forms screen until the MP3 program stop.
    I have try to use Open_form to open another form to start this MP3 program. It still hold the whole Forms system.
    Is there any solution to start a continuous running DOS program but NOT hold the Forms screen?
    Thank You !

    You didn't provide your host-command, so i simply guess its something like
    HOST('"c:\Program Files\mp3.exe" someoptions');instead of calling the program directly, you could use a commadn batch along with the start-command, for this should launch the program asynchronously:
    HOST('cmd /c start "c:\Program Files\mp3.exe" someoptions');hope this helps.

  • How to use pointerPressed() in j2me app running in Windows mobile

    Hi
    Can someone tell me how to add pointerPressed() support in command area(the bottom rectangle enclosiing the keyboard icon) in windows mobile.
    Our J2ME app is running in windows mobile(5.0) however even after setting fullscreen mode to true,pointerPressed() does not work on the bottom area of the screen where the keyboard icon is.It however works on all other screen region.
    Thanks in advance.
    Abhishek

    so are you saying that pointerpressed doesnt work after setting Setfullscreen mode?

  • Oracle 10g/11g database use on UEK versus Red Hat kernel? How widely used?

    Greetings
    is there any official or semi-official information regarding how widely used is Oracle UEK to run Oracle 10g/11g database (RAC or single-node) versus running Oracle database on Red Hat Linux or on Oracle Linux with Red Hat kernel ?
    I am asking because at my customer site there is a perception that Red Hat (or Oracle Linux with Red Hat kernel) is much more widely used in production to run Oracle 10g/11g database and therefore it will provide better stability even if the performance may be somewhat reduced compared to Oracle UEK option.
    So I need some sort of approximate percentage numbers of how well is UEK used in Linux Oracle community to run Oracle 10g/11g databases.
    Many thanks.
    Yuri B

    The problem with the world is that the intelligent people are full of doubts, while the stupid ones are full of confidence. Well, in my opinion, a higher market share does not reflect the quality or reliability of a product. Take MS Windows for example. Unfortunately, the reason for success is often not due to knowledge and experience, but rather due to fear and sheep effect or herd behavior.
    Perhaps you can use other arguments or questions to help you to make a decision, eg.:
    Oracle has a better understanding of what Oracle products require than Red Hat.
    Oracle takes full responsibility for the OS and Database, no finger pointing.
    Oracle tries to provide a better product than the RHEL kernel.
    The Oracle UEK kernel contains Oracle driver software, not available for RHEL 6 or later.
    Oracle updates are free of charge, RHEL requires a subscription.
    Oracle as a company is about 20 times bigger than Red Hat.
    There can be reasons that require the use of the original RHEL kernel, for instance if the vendor of a specific driver for your hardware demands it. But otherwise...

  • How to use appleworks files with lion 10.7.4

    Every now and then I need to access an old Appleworks file, and cannot. Is there a way of converting the files so that they can be used with other software thar runs with Lion 10.7?
    Thanks.

    Depends which type of file and how old.
    AppleWorks 6: WP openable by Pages, SS openable by Numbers, PR openable by Keynote. DR openable by (some versions of) Eazy-Draw. DB and PT openable only by AppleWorks 6.
    AppleWorks 5 and earlier: openable only by AppleWorks/ClarisWorks (same of newer version that the version creating the file).
    More detailed answer here: Abandoning AppleWorks.
    Regards,
    Barry

Maybe you are looking for