Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Skillset Variables

Status
Not open for further replies.
Feb 23, 2005
116
We have recently upgraded to CC6 and have discovered a loss of functionality.

In our master script we had a command

----------------------------
IF OUT OF SERVICE SkillsetGroupA THEN EXECUTE SCRIPT Script1
END IF
----------------------------

SkillsetGroupA is a skillset variable that contains 2 separate skillsets.

The master script will not activate because of this "error". Replacing SkillsetGroupA with a "proper" skillset name activates ok.

Are you unable to have Skillset Variables in CC6? Oris this a bug that needs a patch?

Any help or advice appreciated...
 
Yes, you can use skillset variables in CC6. Is the Variable an item or a set? You may need to delete and rebuild the variable. Or you may need to list the skillsets one by one for the OUT OF SERVICE intrinsic. This is what I normally do.
 
Thanks for the reply.

It's a set of skillsets. Only two of them though.

How would you compile the syntax for listing the skillsets individually?

I tried using AND but couldn't get the syntax right.

(I haven't scripted for >1yr but am helping somebody out who is fairly new to it...)
 
IF (OUT OF SERVICE SkillsetGroupA , SkillsetGroupB) THEN
EXECUTE SCRIPT Script1
END IF

Parenthesis are optional.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top