How to check is the element name is exists?

Full name of a sctn is "sctn 1 of frmw 1 of stru /6xxxx"

Var !name fullname of sctn

Var !isexist exists $!name

It's not working. 

How to check fullname id exist or not .

Parents Reply
  • I generally don't use exists method to determine whether the name exists, because I think it's cumbersome and the return result is unreliable.

    The method I used to determine whether a name exists is to try to jump to the object of that name. If it jumps over, it means that the name exists. If it is reported that the error cannot be redirected, it means that the name does not exist. It can be easily solved by handle

Children