cancel
Showing results for 
Search instead for 
Did you mean: 

Handle Gui User Password

humaxel74
Explorer
0 Kudos

Hi Community,

I just wanted to know how you handle the SAP GUI Credentials, not storing the Password in clear Text in a string.

What are your leading practices ? Is there a way to encrypt the Password in SAP Build PA and hand it over via parameter?

BR Torsten

liskaj01
Participant
0 Kudos

I use custom script with environment variables. You can set up variable of type password instead of string.

irpa_core.core.shellexec(`sapshcut.exe`, `-system=` + system + ` -client=` + client + ` -user=` + user + ` -pw=` + password + ` -language=` + language);

Accepted Solutions (0)

Answers (2)

Answers (2)

vbalko-claimate
Active Participant

I usually use Destinations for handling passwords - you usually dont want passwords in source code - remeber, that source code are usually handled by git.

manish_09
Explorer
0 Kudos

I use Windows Credential Manager to store the required usernames and passwords, and then call them in automation using the "Get Local Agent Credentials" activity.