Hi,
is it possible to change the ccd agent skills via a telnet command? I know the following commands to list the skills:
tabskill - list all skills
tabskilldom - list all skills domains
agacd <agent_number> - list the agent with skills an levels
But I does not find any command to change the skills or levels.
Or does anybody know if this is possible with csta?
Thank You!
Greetings
Sven
change agent skills via telnet command or csta?
- tot3nkopf
- Alcatel Unleashed Certified Guru

- Posts: 4058
- Joined: 02 Feb 2006 10:41
- Location: Germany & Romania
- Contact:
Re: change agent skills via telnet command or csta?
Via telnet using mtcl account you can look for nodico command.
mgr -log filename ---> to get the syntax for your needs (in mgr modify a skill of an agent to see the output on log file)
mgr -nodico -X yourbuiltfile (to execute your custom built agent skill change file that you need to build)
or
something like:
echo 'SET Subscriber "101": "100" { Annu_Name = "MyName", Annu_First_Name = "MyFirstName" }' > tmp.mgr; mgr -nodico -X tmp.mgr ; rm tmp.mgr
in order to build and remove through a command a temporary file (one time command from command prompt.
(see this also: viewtopic.php?f=222&t=979&hilit=nodico&start=10 )
It should be possible to change it via CSTA also (check the csta v2 documents and make some tests).
mgr -log filename ---> to get the syntax for your needs (in mgr modify a skill of an agent to see the output on log file)
mgr -nodico -X yourbuiltfile (to execute your custom built agent skill change file that you need to build)
or
something like:
echo 'SET Subscriber "101": "100" { Annu_Name = "MyName", Annu_First_Name = "MyFirstName" }' > tmp.mgr; mgr -nodico -X tmp.mgr ; rm tmp.mgr
in order to build and remove through a command a temporary file (one time command from command prompt.
(see this also: viewtopic.php?f=222&t=979&hilit=nodico&start=10 )
It should be possible to change it via CSTA also (check the csta v2 documents and make some tests).
-
sven
Re: change agent skills via telnet command or csta?
Thank you i will try it this week and report here.
Greetings
sven
Greetings
sven
-
sven
Re: change agent skills via telnet command or csta?
Thank You for the hint. It is working. The mgr file looks like that
I create a handy bash script, thank you.
Greetings
sven
Code: Select all
SET ACD2_Operator_data "101": "1": "1": "1": "AgentNumber"
{
SkillSet = {{"skill-id","skill-level","active-flag"}}
}
example:
SET ACD2_Operator_data "101": "1": "1": "1": "44712"
{
SkillSet = {{"139","6","TRUE"},{"135","5","TRUE"},{"138","6","FALSE"}}
}
Greetings
sven
