VBScript To Insert Values Into UBE Data Selection List Of Values
First off… Shannon Moir ROCKS!
He has put together a VBScript that will insert a list of values into the UBE Data Selection List of Values text area on a fat client. If you do much data migration or data refresh work this script will really help.
set objShell = wscript.createobject("WScript.Shell") Do until success = True Success = objshell.AppActivate("List Of Values") wscript.sleep 1000 Loop wscript.sleep 100 wscript.echo "Start data pump" wscript.sleep 100 Success = objshell.AppActivate("List Of Values") objshell.sendkeys "+{tab}+{tab}" objshell.sendkeys "F98840~" objshell.sendkeys "F98800~" objshell.sendkeys "F98830~" objshell.sendkeys "F98810~" objshell.sendkeys "F594218~" objshell.sendkeys "F590001~" objshell.sendkeys "F594213~" objshell.sendkeys "F590120~" objshell.sendkeys "F594109~" objshell.sendkeys "F4096~" objshell.sendkeys "F0901D~" objshell.sendkeys "F38111~" objshell.sendkeys "F594111~" objshell.sendkeys "F594110~" objshell.sendkeys "F599312~" objshell.sendkeys "F62UI13~" objshell.sendkeys "F56108~" objshell.sendkeys "F1204~" objshell.sendkeys "F01131~" objshell.sendkeys "F56107~" objshell.sendkeys "F03B16~" objshell.sendkeys "F3403~" objshell.sendkeys "F6110~" objshell.sendkeys "F57150~" objshell.sendkeys "F470561~" objshell.sendkeys "F00165~" objshell.sendkeys "F43199~"
Author
Stewart Schatz
More Stories
JDE CNC + JDE Developer ≠ 1
Recently, while scrolling on this platform, where we all strive to present our best professional selves, I came across a job posting titled JD Edwards E1 CNC/Developer. To be honest, it kind of scared me.
How to Use the CMDKEY Command to Manage Stored Credentials on Windows
The cmdkey command is a Windows utility that lets you create, delete, and manage stored credentials for network authentication. This is particularly useful…
How to Print a Directory Structure Using PowerShell: Step-by-Step Guide
If you need to print out the directory structure and list the files within, this PowerShell script will help you...
Windows God Mode… What!?!
Windows God Mode is a hidden feature in the Windows operating system that allows users to access all of the system’s control panel options and settings in a single place.
How To Test A SQL Server Connection
There is an easy way to test your SQL Server connection when running Windows without any special software. I found...
4 Lines To Export Outlook Rules To Excel/CSV Using PowerShell
I used to use a ton of Outlook Rules to organize the thousands of emails that I receive each day....
Average Rating