Enter a variable value in the "Type action" in SAP

Hi All,
I have a variable with a value that I need to use in a search field in SAP. Im using “Type action” and manually write the value. This works fine. Now, I would like to use the value in the variable. How should the syntax be?

The current syntax is “12334243[k(enter)]”. Variable vMyNumber = “12334243”

Any suggestions?

Br
Cris

Hello,

if you notice, you have “string[k(enter)]” and it’s a string, so you can concatenate your string variable to create your string.

Like this with a string variable:
vMyNumber+“[k(enter)]”

Regards.

2 Likes

Hi Clayton,
I tried that one. Didn’t work but now it works great. Probably I did something wrong. Thanks for confirming the syntax.