" /> Skill Import in Genesys - Genesys CTI User Forum

Author Topic: Skill Import in Genesys  (Read 3343 times)

Offline water235

  • Newbie
  • *
  • Posts: 47
  • Karma: 0
Skill Import in Genesys
« on: February 16, 2017, 05:46:33 PM »
Advertisement
is there a way to import all the skill from Genesys to  a cfg format file, that i can use to re-import ? psdk or something... ?  any pointers pls...

Offline cavagnaro

  • Administrator
  • Hero Member
  • *****
  • Posts: 7641
  • Karma: 56330
Re: Skill Import in Genesys
« Reply #1 on: February 16, 2017, 06:01:21 PM »
What do you exactly mean or trying to do?

Enviado de meu E6633 usando Tapatalk


Offline water235

  • Newbie
  • *
  • Posts: 47
  • Karma: 0
Re: Skill Import in Genesys
« Reply #2 on: February 16, 2017, 06:54:12 PM »
want to get an export of all the skill(say env1 and put it to env 2)
we are just setting up and we have build our lower lane - so getting to add all the skills manually is way too much. SO just wanted to understand if i can get an import for skills and export them. Like we are able to do for VQ/AG.
Thanks.

Offline cavagnaro

  • Administrator
  • Hero Member
  • *****
  • Posts: 7641
  • Karma: 56330
Re: Skill Import in Genesys
« Reply #3 on: February 16, 2017, 07:18:33 PM »
??? ??? Only can think on some SQL script or export to XML using the CC Wizard maybe...but that exports the whole Cfg DB. How you do it with VQ and AG????

Offline abudwill

  • Full Member
  • ***
  • Posts: 157
  • Karma: 4
Re: Skill Import in Genesys
« Reply #4 on: February 16, 2017, 07:22:48 PM »
I have written PSDK apps to export/import many types of objects, including skills.

Poor mans easy way to do this is get a reference to the object in question and write its XML to a file.  Then you can copy saved XML file and use your PSDK program to form a new object based on XML and save it in new environment.  Note there are certain items that would need to be scrubbed such as DBID.

Offline n3vek7

  • Full Member
  • ***
  • Posts: 137
  • Karma: 3
    • ITKB
Re: Skill Import in Genesys
« Reply #5 on: February 17, 2017, 12:28:24 AM »
I recently looked at it and CC Wizard won't be able to export / import a list of skill. You need a custom script.
For VQ and AG, you can import / export a csv file via GA (not 100% sure for CME and GAX).

Offline nonny

  • Full Member
  • ***
  • Posts: 218
  • Karma: 2
Re: Skill Import in Genesys
« Reply #6 on: February 17, 2017, 06:23:59 AM »
There are third party (paid) apps that can do it.

Sent from my SM-N9005 using Tapatalk


Adam G

  • Guest
Re: Skill Import in Genesys
« Reply #7 on: February 17, 2017, 01:39:45 PM »
This Thread: http://www.sggu.com/smf/index.php/topic,9724.msg44061.html#msg44061

[color=red]***WARNING: NEVER "WRITE" DATA VIA PLSQL TO THE GENESYS CONFIGURATION DATABASE!***[/color]

CREATE VIEW dbo.CFG_AGENT_SKILLS_AND_LEVELS AS
SELECT CFG_PERSON.FIRST_NAME,
  CFG_PERSON.LAST_NAME,
  CFG_PERSON.USER_NAME,
  CFG_PERSON.EMPLOYEE_ID,
  CFG_SKILL.NAME,
  CFG_SKILL_LEVEL.LEVEL_
FROM CFG_PERSON
INNER JOIN CFG_SKILL_LEVEL
ON CFG_PERSON.DBID = CFG_SKILL_LEVEL.PERSON_DBID
INNER JOIN CFG_SKILL
ON CFG_SKILL_LEVEL.SKILL_DBID = CFG_SKILL.DBID


Offline water235

  • Newbie
  • *
  • Posts: 47
  • Karma: 0
Re: Skill Import in Genesys
« Reply #8 on: February 17, 2017, 05:31:03 PM »
can you please elaborate more on this pls

Offline cavagnaro

  • Administrator
  • Hero Member
  • *****
  • Posts: 7641
  • Karma: 56330
Re: Skill Import in Genesys
« Reply #9 on: February 17, 2017, 07:06:03 PM »
Ermmm
Export data as sql then create a sql routine to import

Enviado de meu E6633 usando Tapatalk


Adam G

  • Guest
Re: Skill Import in Genesys
« Reply #10 on: February 17, 2017, 07:11:57 PM »
[quote author=water235 link=topic=10148.msg46015#msg46015 date=1487352663]
can you please elaborate more on this pls
[/quote]

The Oracle PLSQL shown will extract all Skills and Skill Levels to a Database View, when it's run against the cfg database.  If you remove the first line, it will list the same in the Results window, which you can export.

I would not advise using the same method to Import - but at least it's a start.


Offline RobertH

  • Jr. Member
  • **
  • Posts: 69
  • Karma: 1
Re: Skill Import in Genesys
« Reply #11 on: March 02, 2017, 06:58:23 AM »
Use psdk to do it. Check for option to get object using filters. It is documented in psdk docu. You can easily open connection, get all objects of defined object type. All can be done asynchronously.

Odoslané z D5803 pomocou Tapatalku