SAPeedie… for free

I’ve decided to give away my portable SAPeedie app for SAP testing. It’s a simple enough windows app, but below is the extract from the help file. I haven’t spent much time on it recently, so please be aware that I’m not going to provide active support. However, I’ll post answers to questions if enough people have issues, so feel free to share your experience…

Here is the link (V2.2)

Sapeedie is a tool I developed to aid in SAP testing. The program simplifies actions that I found tedious and repetitive and includes the standard windows keyboard shortcuts that are missing in SAP.

Quick Shortcuts:
Control + N – open a new session
Control + A – select all (some text fields do not allow you to select all)
` – sends you to the command box directly (keeping your hands on the keyboard and avoiding the built in shortcut which is awkward)
Windows + S – Sets the current window to stay “on top”. All other windows will remain behind the tacked window(s). The same keys to remove this property.
Alt + Right Button – a bit more convenient than that silly Ctrl + Y selection shortcut.

Advanced Features (the cool stuff):
Control + Right Mouse Click – Opens a special menu that you can customize as needed. You can put favorite transactions in your txns.txt file and have quick access to them from anywhere in SAP. The same menu also provides access to the DocLog (more details on that in a second). Each file you click in the DocLog is transferred to your clipboard.

Control + Shift + Right Click – Captures the message on the screen from SAP. For example, if you create a PO, the message might be “PO 12345 created”. When you control + shift + right click, the message is saved into your doclog.txt file, with the name of the transaction you were running, and the date/time. This will allow you to keep track of your testing – every time you press those keys (even if there isn’t a number) the text will be saved. It’s a sort of “this is what I did” log. Just remember to click!

Copy Cliboard to your DocLog – it’s in the menu, but if you want to capture a large quantity of text, with a reference to where you got it, you can use this feature… (There’s room for improvement but this allows you to bring ANYTHING into your doclog. Just copy it first.)

Posted in Software | Tagged , , | Leave a comment

Mapping (made-up) Shipping Data

I’m reading Ben Fry’s book Visualizing Data and having some serious fun with mapping. I invented some shipping data (from my home state of Ohio to the other 50) and then put it on a map of the US using some of Ben’s example code. I didn’t manage to get the animated version to work on the site, but it’s still pretty… If you’re interested, let me know and I’ll pass along the code.

Below is an example of the output. Love to hear your thoughts.

~ab

Shipping Map

 

Posted in Uncategorized | Leave a comment

Spotify control script for AHK

I found it rather annoying to reopen Spotify whenever I wanted to change tracks or increase the volume… Using Autohotkey, it’s no longer a problem (I found some great examples via Google).

Enjoy

~ab

;
; Spotify volume and track controls.
;

#persistent

^!Space::
{
DetectHiddenWindows, On
ControlSend, ahk_parent, {Space}, ahk_class SpotifyMainWindow
DetectHiddenWindows, Off

}
return

^!Right::
{
DetectHiddenWindows, On
ControlSend, ahk_parent, ^{Right}, ahk_class SpotifyMainWindow
DetectHiddenWindows, Off

}
return

^!Left::
{
DetectHiddenWindows, On
ControlSend, ahk_parent, ^{Left}, ahk_class SpotifyMainWindow
DetectHiddenWindows, Off
}
return

^!Down::
{
DetectHiddenWindows, On
ControlSend, ahk_parent, ^{Down}, ahk_class SpotifyMainWindow
DetectHiddenWindows, Off
}
return

^!Up::
{
DetectHiddenWindows, On
ControlSend, ahk_parent, ^{Up}, ahk_class SpotifyMainWindow
DetectHiddenWindows, Off
}
return

Posted in Autohotkey | Leave a comment

New post on just an asterisk

Check it out here – link

Posted in Uncategorized | Leave a comment

Stock widget…

I’ve been thinking a lot about dashboards recently and wanted to use processing to create a “stock tool” – something to grab real-time stock data for a company and display it in an interesting way.

Take a look here

Posted in Uncategorized | Leave a comment

New processing project: Clock

Another Processing project – this one is kinda fun. It’s a clock, created with code and some basic shapes. I think the coolest part is that I used “processing.js”, a library that renders the result in an HTML5 format – you can see the animation on your iPad! (or iPhone)

Check it out here

Here is an image of the output.

Posted in Processing | Leave a comment

Arc_flowers

This applet uses random numbers (within some boundaries) to create the stems and petals.  If you press any key while it runs, it will stop. Each time will be different, so enjoy!

Take a look at the java applet herehtml5 animation here and below is a sample of the output.

Image generated using processing

Posted in Processing | Leave a comment