Hi everybody!
Please help me for fixing this problem.
I used getName() method in my script and it shows value but script console can't resolve this symbol.
Which method can I use instead of this?
Hi @Jamil Rahimov ,
This warning is because the console does not know the type of the IssCustomer_RM object (since you declared it with def). But it is working at execution time, because that is how groovy works. As you can see it logs just fine without triggering any exception. :)
@Antoine Berry
Okay, How can I ignore this ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Unfortunately I do not think you can. :(
It is an integrated basic console so you cannot do much about it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Rather than using def you may wish to specify the class of that object when declaring it; I assume it's an ApplicationUser.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.