How to log in via SAP using the command line

I am trying to login through SAP via the command line using the sapgui command, is this possible? Is there a way to view all the arguments / options for the sapgui command?

+5
source share
1 answer

You can use sapshcut.exe to connect to the SAP system through the command line. Here is an example:

sapshcut.exe -system=SID -client=100 -user=YOURUNAME -pw=Y0urP4$$ 

Additional command line parameters are described in SAPNote 103019 (the link requires an SAP trading platform account) or can be obtained using the command

 sapshcut.exe -help 
+11
source

Source: https://habr.com/ru/post/1483312/


All Articles