Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have the following line of codes in the load script :-
Set chknbr1 = 'D330836','D329537';
Let chknbr = len($(chknbr1));
Then, I am getting chknbr <NULL>
If I write like the following :-
Set chknbr1 = 'D330836','D329537';
Let chknbr = len('$(chknbr1)');
Then I am getting the following error :-
Script line error:
Let chknbr = len('''D330836'',''D329537''')
Any help would be highly appreciated !! 🙂
Try this
Set chknbr1 = ''D330836','D329537'';
Let chknbr = len((chknbr1));