Exe to run before TestStand Seq load

We have a situation where we power-up our test rack (including the PC that runs the show), and before the user brings up the TestStand HMI and loads/runs a sequence, we'd like to auto-run an exe that places all test equipment/ I/O cards in a benign state.  Although this sounds like something you'd normally do in Setup, we want to do this as indicated because of a hot-swap capability available.  Anyway, since we (for the most part) have the individual VIs that talk to specific instruments/cards, I'd like to put them together into a sequence-like container and build an exe that steps through each VI in the specified order.  We may want to display a small HMI that gives the user some insight as to what's going on.  In the past, I've placed .bat files (that call various .exe files) in the C:\Documents and Settings\All Users\Start Menu\Programs\Startup folder, so as to autorun.  I want to do a similar thing here, but there are other considerations this time.  What if I used the LabVIEW Build Application, created a number of mini-EXEs, and called them sequentially within this .bat file.  Any suggestions as to how I'd autorun a sequence of VIs in the manner described above.

Hi Mr. Bean,
I would suggest using the .bat files you referenced. However, rather than calling several exe's that you create with LabVIEW you could also call a TestStand sequence using command line commands. This will allow you to autorun a test sequence that calls all of your VIs.
There is a knowledge base entitled How to Run a Sequence File When Opened from Windows Explorer or the Command Line that discusses using command line arguments. Command line arguments are also discussed in the Customizing and Configuring TestStand chapter of the TestStand Reference Manual (chapter 8 in both 3.5 and 4.0).
Matt M.
NI

Similar Messages

  • How to know exe is running and close the exe ?

    I use launchExecutableEx() to run a exe,but before running ,I want to know if this exe is running,if running I will terminal it at first, which labwindows function can do it? I know TerminateExecutable() function,but it need a handle, i do not know the handle because the exe is running before run my program.

    Not sure if all this is can really be helpful (I didn't tested it), but usinf some SDK functions you could:
    List all running processes using EnumProcesses. Inside the SDK that comes with CVI you can search an example called "Enumerating all processes": this is the skeleton of this part of the job
    Scan the list to obtain the process ID of your target executable, if running. You will need to know the exact name how the process appears in the list of active processes in the system: this can be difficult if the application is run under svchost or any other host process
    Use OpenProcess and TerminateProcess to kill it: this is actually equivalent to terminating an application inside the task manager; it's a very rude method and the SDK lists all reasons why it should be used very rarely. In any case, if you feel this is safe for your environment it could be tempted
    As I told you, this is only a framework for you to elaborate on: I never attempted all that. I just wanted to explain how I'd approach this job if I have to.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • Outlook 2007 .ost file corrupt / scanpst.exe 3-4x daily & 3 to 4 runs before "clean", long term issue - need help on how to repair my .OST FILE once and for all, please...

    I've had many issues with my .ost data file (couple years) with:  very slow going into outlook 2007, scanpst.exe 3-4x before its "clean", and have to run it few times daily.
    No major issues i can pinpoint, but just SLOW, hangs at times, file less than 1GB, IT people just mess it up more, etc.
    NEED some PROFESSIONAL minds to help me get this data file cleaned up once and for all... forever hopefully.
    Any help greatly appreciated.

    Why the need to repair it?
    You could:
    1. Create a new Outook profile a different name and a new ost will be created ( leaving the old one there)
    2. Close up Outlook completely, delete the existing.ost and re-open Outlook to create a new one.
    3. Close Outlook completely and rename the existing .ost and re-open Outlook to create a new one.

  • Have been running version 4 for a week without problems. Today, downloaded MS live security update, and have had problems since. when I click on a favorite site, it takes 20 to 40 seconds before the page load's and the same if I click a link on the page.

    been running version 4 for a week without problems. Today, downloaded MS live security update, and have had problems since. when I click on a favorite site, it takes 20 to 40 seconds before the page load's.'''bold text'''

    http://portableapps.com/apps/internet/firefox_portable/localization#legacy36

  • Run exe constructed in labview 6i without loaded nidaq drivers.

    Exe is constructed using labview 6i. It would be convenient to install the exe and run time engine on the HDD,
    and execute as a demonstration program, without loading the nidaq drivers.
    No daq card in pc, nidaq would be on CD. Suggestions are appreciated.

    If you want to run an exe without loading DAQ drivers, you will need to ensure that no DAQ calls are statically linked in the final executable. As waldemar.hersacher mentioned, you can do this by using VI server for all your DAQ calls, then calling stub routines if you are using the laptop for demo purposes. It would probably be easiest to put all your DAQ calls into a few subVIs and call those dynamically instead of each individual DAQ VI call. If you miss one, your launch will fail when DAQ is not present (you will get the standard LabVIEW searching for subVIs dialog and then a message telling you that you need the full version of LabVIEW to correct the problem).
    There are lots of ways to switch between the "demo" mode and the "live" mode. A dialog which pops up on startup and is accessible from the menus is the most obvious.
    Good luck. If you need more hints, let us know.
    This account is no longer active. Contact ShadesOfGray for current posts and information.

  • Running a teststand seqwunce from labview

    HI all
    I want to build a user interface in Labview to execute number of sequences in teststand.
    I already had a look at the examples shipped with TS. But in my case my UI will  be different that the default UI of teststand.
    I want user to select number of sequences(at one time from list box or tree) and then when clicked on execute button , one by one each sequence should get executed.
    For this I need provide seq file path to the invoke/property node before execution. But I am not able to find the current method/property for the same.
    Can someone please help on this?

    By this method you can do the following ( no need to change User interface code -- use the default one ) :
    1) A (Main GUI.vi) vi when executed calls a predfined master sequence to automatically open and run in TestStand.
    2) This predfined master sequence uses a vi to get sequences ( simulating user selected sequences)
    3)The sequences selected are stored in a TestStand string array and run one by one.
    4)TestStand is automatically closed in the end. ( no user intervention is required)
    Setup :
    1) Unzip the files and put it to c:\temp\LVUSER1 ( This path is hardcoded in vi and testsequences )
    2) Go to TestStand menu --> configure --> station options -> user manager and enable automatically login windows user
    3) Create a new user with windows credentials in TestStand using the user manager.( This is to avoid login popup)
    4)Enable report in TestStand if you need a report.
    Run :
    Run the MAIN GUI.vi
    Changes if required :
    1) I have copied CVI user interface from C:\Program Files (x86)\National Instruments\TestStand 4.2.1\UserInterfaces\Full-Featured ( This is because i tested this in )TS 4.2.1
    Feel free to copy any of the user interfaces that you are familiar with from the respective TestStand folder.
    2) Correct the paths if required in vi and test sequences.
    Hope this example will be helpful to you.
    Regards,
    Ravi
    Attachments:
    LVUSER1.zip ‏469 KB

  • TestStand always load previously used file on startup

    Hi,
    I have a problem with my TestStand operator interface (Full featured CVI). When I open TestStand, it loads previously used sequence file by default. How could I turn it OFF.
    In my Station Options, Preferences tab, Re-load last workspace at startup was not selected,which I expect Teststand not to load the previous workspace.
    The only solution to avoid this problem sofar is  Whenever I finish, I have to close the sequence file first and then the teststand window. But this is not possible all the time.
    Has anybody have the same problem??
    Thanks
    mama007

    Two issues with that:
    a) You would need to get a reference to the ApplicationMgr from your sequence. The next version of TestStand will provide an easy way to get the ApplicationMgr, so this problem will go away. Before the next version, it might not be practical to do this without modifying the OI.
    b) By the time your sequence runs, the files are already loaded. The setting change would apply to the next launch of you operator interface, but you would have to explicitly close all the open files when you first changing the setting. In the next version, when you are able to get the ApplicationMgr, this will be doable in one line simple line of code or in one step in a sequence.

  • Nal.exe not running

    We've got a problem with trying to get our applications we've created to
    distribute across the network. I'm testing one application which is
    associated with one user, however we are having problems getting nal to
    load at login via the user's login script. Everything that I've read
    states that you should only have to load nal.exe from the login script,
    and that "wrapper program" should load everything else it needs to in
    order for nal to run and start distributing applications. However,
    nal.exe is not working when I add it to the user's login script. I can,
    however, run nalwin32.exe from the login script, and the applications get
    distributed just fine on Windows XP workstations. But, I get errors on
    Windows 98 workstations, giving an error "unable to load zenapp32.dll".
    Now, I'm guessing that dll file is one that nal.exe loads, and by running
    nalwin32.exe, it bypasses that so it fails to load, hence the error. The
    XP machines are running novell client 4.9 SP2, and the win98 machines are
    running client 3.4. Zenworks for desktops version 3.2, and Netware 6. Any
    ideas why we can't get nal.exe to run?

    Unfortunately, running nal.exe from the login script on both Win98 and
    WinXP machines does nothing. The application launcher doesn't load, and
    hence the applications we've created do not get distributed. This is the
    first time we've tried distributing applications, Zenworks for Desktops
    was installed on our server before I ever got here. I am by no means a
    Novell expert, but might a reinstall of Zen on the server do the trick?
    It just seems like things that should happen when nal.exe is run do not
    happen, and I'm not convinced it is a problem on the workstations.
    > You may want to run "NALWIN32.EXE" for 2K/XP as it tries to update
    files on
    > the workstation and the user may not have the rights to do so and
    generate
    > errors.
    >
    > I would try NAL.EXE on with Win98 and see if that works well there.
    > You can check the OS in the login script and run the appropriate one.
    >
    > [email protected] wrote:
    >
    > > We've got a problem with trying to get our applications we've created
    to
    > > distribute across the network. I'm testing one application which is
    > > associated with one user, however we are having problems getting nal
    to
    > > load at login via the user's login script. Everything that I've read
    > > states that you should only have to load nal.exe from the login
    script,
    > > and that "wrapper program" should load everything else it needs to in
    > > order for nal to run and start distributing applications. However,
    > > nal.exe is not working when I add it to the user's login script. I
    can,
    > > however, run nalwin32.exe from the login script, and the applications
    get
    > > distributed just fine on Windows XP workstations. But, I get errors on
    > > Windows 98 workstations, giving an error "unable to load
    zenapp32.dll".
    > > Now, I'm guessing that dll file is one that nal.exe loads, and by
    running
    > > nalwin32.exe, it bypasses that so it fails to load, hence the error.
    The
    > > XP machines are running novell client 4.9 SP2, and the win98 machines
    are
    > > running client 3.4. Zenworks for desktops version 3.2, and Netware 6.
    Any
    > > ideas why we can't get nal.exe to run?
    >

  • How to convert a DVD of EXEs to run on a Mac?

    The government where I'm working has distributed DVDs with teacher's guides and course materials to teachers and volunteers working on a new environmental education project.  When I loaded the DVD into my SuperDrive, the DVD title showed up under "Devices" in Finder windows, but it was grayed-out and couldn't be opened.  (I had to go into Terminal and use "drutil eject" to get it out.)
    Today I tested the DVD in a Windows laptop and it worked without any problems.  The interface is composed of Flash EXEs.  I can access all of the other files on the disk -- PDFs, PPTXs, &c. -- but they're all in one directory and not always well-named.  I'd like to be able to use the interface to access the files when I present to my students.
    Does anyone know of a program I can run to convert this DVD into something useable on my Mac?  I do have access to a Windows laptop, and I was looking into DVD-to-ISO programs this morning, but I don't know if that would solve the problem of the interface being EXEs.  Any suggestions would be appreciated, thank you

    Templeton Peck wrote:
    EXEs cannot run on Mac OS. You'll need to install Windows on your Mac if you want to open them
    I know this, that's why I'm asking if there is a way to convert the EXEs to something that can run on Mac OS.
    Presently there is no way for me to legally install Windows on my laptop, though I do have access to a Windows laptop if there is some way for me to convert the files on the DVD.

  • I need to Ping an application before going to load

    Hi All,
    I need to ping an application to check whether it is working or not.
    Basically my requirement is I am loading a Home page of application A which includes application B as a part of the page. Before going to load the application B in the Home page i need to ping the application to check whether it is working or not. If it is not working i need to disable that.
    Is there any thing to ping the particular port or something else?
    Please advise me on this.
    Thanks in advance
    Varma.

    Well...
    If aplication B is a Server, you can make a connection using java.net.Socket to verify if it is running before using it from aplication A.

  • Pse12 sometimes fails to close completely leaving exe file running in background

    pse12 sometimes fails to close completely leaving exe file running in background which must be closed with Task Manager before reopening in Windows 8.1.

    Try to use "Firefox/File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit") to close Firefox if you are currently doing that by clicking the close X on the title bar.
    See "Hang at exit":
    *http://kb.mozillazine.org/Firefox_hangs
    See "Firefox hangs when you quit it":
    *https://support.mozilla.org/kb/Firefox+hangs

  • Attr change run cannot preceed Data Load?

    Hi, all
    I need to make attr change run before loading data, because these active MD should be used in data loading routines. When checking this chain BW shows message " A type "Attribute Change Run" process cannot precede process "Execute InfoPackage" var. ZPAK_E5NXARYHE6BXRST2FD3YZAN7B in the ch".
    Why? Is that because change run only activated and chain doesnt wait for change run end and starts next process?
    Or I can suppress this warning?

    <b>2 Gopikrishna eriki </b>
    Why? I think it isn't for no particular reason.
    <b>2AHP</b>
    <i>normaly attribute/hierarchy change run is performed after all data loading finished, it should put after the infopackage process.
    </i>
    But here I need to schedule another load after this change run. And I want to use results of this change run in this load.
    BTW, when running this chain I have dump on this infopackage load with OPEN_DATASET_NO_AUTHORITY on lines
      OPEN DATASET L_PFILENAME FOR INPUT IN TEXT MODE   
        ENCODING DEFAULT                                
        IGNORING CONVERSION ERRORS.                     
    When I schedule this package manually everyting is OK.

  • USB keyboard not working before the OS loads after upgrading BIOS on T60...

    Hi all,
    I have another problem with my T60.
    In order to try adding a fingerprint reader, I upgraded the BIOS to version 2.25 last night. The upgrade was successful but, however, my USB keyboard could not function before the OS load, not in the boot screen, nor the BIOS, nor the boot loader menu.
    I have double checked the USB option is set to "Enabled" in the BIOS,
    What's wrong?
    Thanks,
    [edited 2009-12-30] deleted extra words in subject line
    circle from hk

    I have a similar problem. I have a ThinkPad T60 1951-F8G running Windows XP with latest Windows updates. I use a USB attached IBM enhanced performance keyboard and Microsoft optical mouse. I recently updated the BIOS to v2.25 and a disk cleanup of my C: drive. On attempting to restart the system, the startup progressed only to the initial Windows XP screen with the 3 blue dots moving very slowly, and startup went no further. I repeatedly powered off the system and attempted restart without success.
    I restored the system to an earlier version using ThnkVantage Rescue and Recovery, updated Windows XP to the latest level, and updated Lenovo system software from the Lenovo PC support site using ThinkVantage System Update to the latest level including updating the BIOS to v2.25. Again, I had the mouse and keyboard directly attached to the USB ports in the ThinkPad. All was well until I replugged the keyboard and mouse into an attached Belkin USB 2.0 4-port pocket hub which resulted in a chain of new searches for new USB drivers to install. The next system restart failed, and it was necessary to return to use the last successful configuration. System restart is now decidedly risky with the system freezing at various stages of startup.
    Prior to installing BIOS v2.25 I had not encountered any such startup problems. This does suggest that there is a problem with USB support in BIOS v2.25.

  • Kernel_task running above 500% CPU load on my Macbook Pro running OSX 10.9.4

    I recently upgrade my Macbook Pro to OSX 9.0.4 and the system is running sluggishly slow, Activity Monitor showing kernel_task always running above 500% CPU load, system fan always running loud at startup but laptop is not overheating.  Below is the EtreCheck report, hoping if anyone can help me fix this issue, much appreciate it.  Btw, I have done the SMC reset, but nothing has helped.
    EtreCheck version: 1.9.13 (49)
    Report generated 16 August 2014 2:30:27 pm AEST
    Hardware Information: ?
      MacBook Pro (Retina, Mid 2012) (Verified)
      MacBook Pro - model: MacBookPro10,1
      1 2.3 GHz Intel Core i7 CPU: 4 cores
      8 GB RAM
    Video Information: ?
      Intel HD Graphics 4000 - VRAM: (null)
      Color LCD 2880 x 1800
      NVIDIA GeForce GT 650M - VRAM: 1024 MB
    System Software: ?
      OS X 10.9.4 (13E28) - Uptime: 0 days 0:17:38
    Disk Information: ?
      APPLE SSD SM256E disk0 : (251 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted>: 209.7 MB
      Macintosh HD (disk0s2) / [Startup]: 250.14 GB (103.87 GB free)
      Recovery HD (disk0s3) <not mounted>: 650 MB
    USB Information: ?
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Inc. BRCM20702 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Inc. Apple Internal Keyboard / Trackpad
    Thunderbolt Information: ?
      Apple Inc. thunderbolt_bus
    Gatekeeper: ?
      Mac App Store and identified developers
    Kernel Extensions: ?
      [not loaded] com.digidesign.fwfamily.driver (8.0.3f1) Support
      [loaded] com.digidesign.iokit.DigiDal (8.0.3f1) Support
      [not loaded] com.digidesign.mbox2.boot.driver (9.0f4) Support
      [not loaded] com.digidesign.mbox2.driver (9.0f4) Support
      [not loaded] com.digidesign.usb.elevenrack.driver (1.0.1) Support
      [not loaded] com.paceap.kext.pacesupport.leopard (5.8 - SDK 10.4) Support
      [not loaded] com.paceap.kext.pacesupport.master (5.8) Support
      [not loaded] com.paceap.kext.pacesupport.panther (5.8 - SDK 10.3) Support
      [loaded] com.paceap.kext.pacesupport.snowleopard (5.8 - SDK 10.6) Support
      [not loaded] com.paceap.kext.pacesupport.tiger (5.8 - SDK 10.4) Support
    Startup Items: ?
      Digidesign Mbox 2: Path: /Library/StartupItems/Digidesign Mbox 2
      DigidesignLoader: Path: /Library/StartupItems/DigidesignLoader
      PACESupport: Path: /Library/StartupItems/PACESupport
    Problem System Launch Agents: ?
      [loaded] com.paragon.NTFS.trial.plist Support
      [loaded] com.paragon.NTFS.upd.plist Support
    Launch Daemons: ?
      [loaded] com.adobe.fpsaud.plist Support
      [running] com.cleverfiles.cfbackd.plist Support
      [running] com.digidesign.elevenrack.helper.plist Support
      [running] com.digidesign.fwfamily.helper.plist Support
      [loaded] com.google.keystone.daemon.plist Support
      [loaded] com.macpaw.CleanMyMac2.Agent.plist Support
      [loaded] com.oracle.java.JavaUpdateHelper.plist Support
      [running] com.paceap.eden.licensed.plist Support
      [not loaded] com.teamviewer.teamviewer_service.plist Support
      [loaded] PACESupport.plist Support
    Launch Agents: ?
      [loaded] com.google.keystone.agent.plist Support
      [not loaded] com.teamviewer.teamviewer.plist Support
      [not loaded] com.teamviewer.teamviewer_desktop.plist Support
    User Launch Agents: ?
      [failed] com.facebook.videochat.[redacted].plist Support
      [loaded] com.macpaw.CleanMyMac2Helper.diskSpaceWatcher.plist Support
      [loaded] com.macpaw.CleanMyMac2Helper.scheduledScan.plist Support
      [loaded] com.macpaw.CleanMyMac2Helper.trashWatcher.plist Support
    User Login Items: ?
      iTunesHelper
      SmartDaemon
      BitTorrent
      uTorrent
      Knock
      Autodesk 360
    Internet Plug-ins: ?
      JavaAppletPlugin: Version: Java 7 Update 55 Check version
      FlashPlayer-10.6: Version: 14.0.0.145 - SDK 10.6 Support
      Default Browser: Version: 537 - SDK 10.9
      Flash Player: Version: 14.0.0.145 - SDK 10.6 Outdated! Update
      QuickTime Plugin: Version: 7.7.3
      o1dbrowserplugin: Version: 5.4.2.18903 Support
      googletalkbrowserplugin: Version: 5.4.2.18903 Support
      iPhotoPhotocast: Version: 7.0
    Safari Extensions: ?
      AllMyTube
      Searchme-2
      iTube Studio
    Audio Plug-ins: ?
      BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
      AirPlay: Version: 2.0 - SDK 10.9
      AppleAVBAudio: Version: 203.2 - SDK 10.9
      iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins: ?
      Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    3rd Party Preference Panes: ?
      Digidesign Eleven Rack  Support
      DigidesignMbox2  Support
      Digidesign Mbox 2 Pro  Support
      Flash Player  Support
      MacFUSE  Support
      Paragon NTFS for Mac ® OS X  Support
    Time Machine: ?
      Time Machine not configured!
    Top Processes by CPU: ?
          4% WindowServer
          4% Google Chrome
          1% cfbackd
          0% AppleSpell
          0% Activity Monitor
    Top Processes by Memory: ?
      213 MB Finder
      156 MB Dock
      156 MB com.apple.IconServicesAgent
      123 MB WindowServer
      115 MB Google Chrome
    Virtual Memory Information: ?
      4.43 GB Free RAM
      2.21 GB Active RAM
      414 MB Inactive RAM
      971 MB Wired RAM
      527 MB Page-ins
      0 B Page-outs

    The kernel is using excessive processor cycles. Below are some possible causes for the condition.
    Throttling
    When it gets high temperature readings from the hardware, or a low-voltage reading from the battery, the kernel may try to compensate by interrupting the processor(s) to slow them down and reduce power consumption. This condition can be due to:
    ☞ a buildup of dust on the logic board
    ☞ high ambient temperature
    ☞ a worn-out or faulty battery in a portable
    ☞ the malfunction of a cooling fan, a temperature sensor, a voltage sensor, or some other internal component
    Note that if the problem is caused by a sensor, there may be no actual overheating or undervoltage.
    If the computer is portable, test with and without the AC adapter connected. If kernel_task hogs the processor only on battery power, the fault is in the battery or the logic board. If it happens only on AC power, charging is causing the machine to heat up. That may be normal on some models. CPU usage should drop when charging is complete.
    Apple Diagnostics or the Apple Hardware Test, though not very reliable, is sometimes able to detect a fault. For more thorough hardware testing, make a "Genius" appointment at an Apple Store, or go to another authorized service provider.
    If nothing is wrong with the hardware, then whatever you can do to improve cooling may help.
    Installed software
    User-installed software that includes a device driver or other kernel code may thrash the kernel. That category includes virtualization software, such as Parallels and VMware, as well as most commercial "anti-virus" products. Some system-monitoring applications, such as "iStat," can also contribute to the problem. You can test for this possibility by completely disabling or removing the software according to the developer's instructions, or starting in safe mode. Note, however, that disabling a system modification without removing it or testing in safe mode may not be as easy as you think.
    Corrupt NVRAM or SMC data
    Sometimes the problem is cleared up by resetting the NVRAM or the SMC.
    External display
    Connecting an external LCD display to some MacBook Pro models while the lid is open may cause this issue. If applicable, test by closing the lid or disconnecting the display. You might get better results with a newer LED display.

  • I have made many attempts to install the 11.1.4.62 iTunes update unsuccesfully! Error 6034, iTunes.exe has made an attempt to load the C runtime library incorrectly. I see that many people is having the same problem. How do I solve it...

    I have made many attempts to install the 11.1.4.62 iTunes update unsuccesfully! Error 6034, iTunes.exe has made an attempt to load the C runtime library incorrectly. I see that many people is having the same problem. How do I solve it...

    Click here and follow the instructions. You may need to completely remove and reinstall iTunes and all related components; this won't affect its library, but that should be backed up anyway.
    (99115)

Maybe you are looking for

  • Emf images in word document convert badly to pdf using adobe plug-in

    I have a problem with converting word documents containing emf images to pdf using the adobe plugin in the MS word ribbon which is provided with Adobe Acrobat XI standard. The text and some of the image formatting in the emf vector image either disap

  • Not Getting "Undock" Option in Windows 7 with W520 in Docking Station

    I just bought a W520 which is my 5th ThinkPad in about 10 years.  This one is different in that I don't get the option to "Undock" in the Windows 7 "Shutdown" option list.  I also noticed the W520 doesn't seat as securely into the docking station as

  • User exit in material creation

    Hi,   Can anyone help me to find a user-exit while saving a material in MM01? I need to validate the sales data of the material, table MVKE. Regards, Priya.

  • Subscription to India not activated?

    Dear, Today I recharge India 800 min(7.49 Euro),but my account it is not showing & i can not call any India number.My payment histry i attached in below,please take necessary action as early as possible. For your safety and protection, please never,

  • Dictionaries in Openoffice 2.4 can't install

    I'm trying to install dictionaries for openoffice 2.4 but when I click the guide "Install extra dictionaries..." the dicooo.swx (version 1.8) starts and I choose my language and click install but then I get an error stating "non-allowed value or data