Book a Demo

Author Topic: 9.3 931 - Glossary Problem?  (Read 4599 times)

OneCent

  • EA User
  • **
  • Posts: 34
  • Karma: +0/-0
    • View Profile
9.3 931 - Glossary Problem?
« on: April 23, 2012, 06:39:46 pm »
Hi

I try to edit my Glossary in 9.3 and i can't edit a old entry or add a new one. The buttons new, save and delete are allways disabled.

Any hint to solfe that problem?

Cheers, OneCent

AndyBo

  • EA Novice
  • *
  • Posts: 10
  • Karma: +0/-0
    • View Profile
Re: 9.3 931 - Glossary Problem?
« Reply #1 on: April 24, 2012, 02:36:31 am »
I had a similar problem
It turned out to be a permissions problem with the version control system
The permissions had to be added separately to the model
« Last Edit: April 24, 2012, 02:42:05 am by AndyBo »

qwerty

  • EA Guru
  • *****
  • Posts: 13584
  • Karma: +397/-301
  • I'm no guru at all
    • View Profile
Re: 9.3 931 - Glossary Problem?
« Reply #2 on: April 24, 2012, 02:53:23 am »
Check your EA security settings.

q.
« Last Edit: April 24, 2012, 02:54:01 am by qwerty »

OneCent

  • EA User
  • **
  • Posts: 34
  • Karma: +0/-0
    • View Profile
Re: 9.3 931 - Glossary Problem?
« Reply #3 on: April 24, 2012, 08:42:24 pm »
Thanks a lot!

JohnRGladstone

  • EA Novice
  • *
  • Posts: 8
  • Karma: +0/-0
  • I don't make predictions... and I never will
    • View Profile
Re: 9.3 931 - Glossary Problem?
« Reply #4 on: April 27, 2012, 05:06:35 pm »
Don't suppose you have any idea if it is possible to import a pre-existing list of terms from a Word document into EA?

I've got a massive list of terms to capture and don't fancy typing them all in one at a time

philchudley

  • EA User
  • **
  • Posts: 750
  • Karma: +22/-0
  • EA Consultant / Trainer - Sparx Europe
    • View Profile
Re: 9.3 931 - Glossary Problem?
« Reply #5 on: April 27, 2012, 06:37:12 pm »
Hi John

Not "out-of-the-box", however the following may work.

1) Extract the glossary into Excel and format accordingly
2) Export to csv
3) Write a bit of code that reads the csv and creates a series of SQL Insert statements.
4) Execute the SQL Insert statements against the underlying EA repository using Access or your chosen DBMS (insert sql statements cannot be executed within the EA workspace)


The repository table details you will need are

Table name - [highlight]t_glossary[/highlight]
Table attribute - [highlight]Term[/highlight]
Table attribute - [highlight]Meaning[/highlight]
Table attribute - [highlight]GlossaryID[/highlight]

The last field is incremental and should start from 1 for a new glossary or continue from the last number for a glossary with existing entries

Something like the following

INSERT INTO t_glossary
(Term, Type, GlossaryID)
VALUES
(value-1, value-2, value-3)


Cheers

Phil
Models are great!
Correct models are even greater!