18-08-16 08:53 PM
24-08-16 07:16 PM
25-08-16 11:53 AM
02-09-16 08:00 PM
29-01-24 05:01 PM
Thank you Ravinder for the suggestion. I did do as you mentioned, but the password i sent was not accepted. I have to mention that, I am working with an old PICK db with a green screen.
Let me know if you have any insight into it. Thanks
30-01-24 02:18 PM
Hi @NanjundaNarasim,
If you're interacting with a mainframe application, you're probably using Global Send Keys to submit your password, yes? If so, you have to remember that certain characters have a special meaning in Send Keys syntax (like + for SHIFT, ^ for CTRL and so on). So, if you send "1+1" by Global Send Keys, Blue Prism will actually send "1" followed by SHIFT-1, which is "!".
If you're sending a literal string via Global Send Keys, you should first "sanitize" it to make sure any special characters are converted to regular characters. There's an action called Escape Sendkeys String in Utility - Strings that'll do it for you. Or, you can do it yourself using the rules in the BP documentation here: Send Keys Cheat Sheet. But why re-invent the wheel?
Hopefully, that will solve your problem.