- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Logging in SAP using command line
sapshcut.exe command can be used to log in to SAP from command line as shown in below example:
Procedure
Add the directory that contains the sapshcut.exe command to your system or user path. The sapshcut.exe command is installed as part of the SAP client into the following directory: C:\Program Files\SAP\FrontEnd\SAPgui
To add additional directories to the system or user path on Windows systems, select Control Panel > System > Advanced > Environment Variables.
The .bat file must be named sapshcut.bat must be located in your default path preceding the sapshcut.exe file.
The following parameters are passed to the sapshcut.bat file when called from a predefined Launch definition −
%1 keyword "-command" %2 transaction_name, for example: SM13 %3 keyword "-system" %4 SAP_system_identifier, for example: TV1 %5 keyword "-client" %6 client_number, for example: 100
The following example shows a sample sapshcut.cmd file. In this example, you use a different user ID and password when sapshcut is run through the Application Launch for the system TV1. All other SAP systems use the default logon parameters.
@echo off set sapshcut="C:\Program Files\SAP\FrontEnd\SAPgui\sapshcut.exe" if "%4" == "TV1" ( %sapshcut% %* -user=myid -password=mypwd ) else ( %sapshcut% %* )
- Related Articles
- Command Line Interpreters
- Command Line arguments in C#
- Command line arguments in Java
- Command Line Arguments in Python
- Command Line arguments in Lua
- Using Options on the Command Line for MySQL programs?
- Java command line arguments
- How to find the version of Java using command line?
- How to read a file from command line using Python?
- Command Line arguments in Java programming
- Command line arguments in C/C++
- Command Line Interface Programming in Python?
- Command line arguments example in C
- Explain Java command line arguments.
- The MySQL Command-Line Client
