Minimizing saplogon window: When I call an SAP function module that displays its own screens the SAP logon window is put into the foreground if the user hasn't previously minimized it, and this distracts the user. Is there a way to minimize the saplogon window automatically with an InputScript command?

You may start a VBScript with

Start "minimize.vbs"

and in the VBScript "minimize.vbs" you then minimize the saplogon window as follows:

dim sh

set sh = createobject("wscript.shell")

if sh.appactivate("SAP Logon 720") then

    sh.sendkeys "% n"

end if

set sh = nothing

Please observe that for other SAP GUI versions (e.g. 7.10 or 7.30) you need to adjust the window title "SAP Logon 720".