Hi support, all.
Trying to use the ENCRYPT function but having some issues with populating userinfo in the ENCRYPT function parameters and need some help.
This is the code i´m currently using in a process and the encryption works and the link is correct etc. when i´m manually typing in userinfo in the process action but not when trying to populate userinfo through the process action.
Here is the working action:
EncryptLink.Link=ENCRYPT_B64('domain=MyDomain&userName=user1&password=password1&testingMode=true&firstCommand=startProcess,OpenSupportcenter,main')
Here is the not working action:
EncryptLink.Link=ENCRYPT_B64('domain=MyDomain&userName=LoggedInSystemUser.LoginName&password=LoggedInSystemUser.Password&testingMode=true&firstCommand=startProcess,OpenSupportcenter,main')
I have also tried:
EncryptLink.Link=ENCRYPT_B64('domain=MyDomain&userName=<<LoggedInSystemUser.LoginName>>&password=<<LoggedInSystemUser.Password>>&testingMode=true&firstCommand=startProcess,OpenSupportcenter,main')
The problem is that the tags isn´t converted to the correct info. PS: The process is executed when a user is logged in.
Any tips appreciated, thanks.