Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am testing a script that use Let below. Icannot get DD-4066 in table test2. May I know if I am doing anything wrong?
test:
Load * Inline
[
issuekey
DD-4066,
];
let vkey= peek(test.issuekey);
test2:
load * Inline [
abc
'$(vkey)'
];
Hi @43918084 ,
you used the peek function wrong.
This script should work:
test:
Load * Inline
[
issuekey
DD-4066
];
let vkey= peek('issuekey',0,'test');
Trace >>>>>>> $(vkey);
test2:
load * Inline [
abc
'$(vkey)'
];
Hi @43918084 ,
you used the peek function wrong.
This script should work:
test:
Load * Inline
[
issuekey
DD-4066
];
let vkey= peek('issuekey',0,'test');
Trace >>>>>>> $(vkey);
test2:
load * Inline [
abc
'$(vkey)'
];
Thanks a lot for your immediate expertise. Really appreciate it 🙂
I'm always happy to help 😉