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".
|