@RTTATOVAR what is the script you are using to navigate from the Hyperlink to the 2nd screen?
Without seeing that script I think there are two possible paths you can go,
- Use the keys
- On the hyperlink script you can use ‘setCurrentKeys’ and then navigate to the new screen and it should populate the relevant data (from my experience this sometimes doesn’t work in some screen, hence I usually take the cache route)
- Using the cache
- On the hyperlink script set the next screen keys using the ‘setCache’ function.
- And on the target screen refresh script, use the ‘getFromCache’ and then use ‘setCurrentKeys’ function to set the current screen keys
Thank you all,
I used set and get from cache to solve this problem.