Hi
This is not trivial but the method is:
Look for the keyword in the dictionary to identify the type and the index.
Here we found:
/ NOTE JMH : CE MOT-CLEF N EST PLUS UTILISE
NOM = 'FORMULATION POUR DEPOT ET EROSION'
NOM1 = 'FORMULATION FOR DEPOSITION AND EROSION'
TYPE = ENTIER
INDEX = 36
TAILLE = 0
DEFAUT = 2
DEFAUT1 = 2
CHOIX =
'1="KRONE ET PARTHENIADES"';
'2="FREDSOE / ROUSE"'
CHOIX1 =
'1="KRONE ET PARTHENIADES"';
'2="FREDSOE / ROUSE"'
RUBRIQUE = 'SUSPENSION'
RUBRIQUE1 = 'SUSPENSION'
NIVEAU = 1
AIDE = ' '
AIDE1 = ' '
Then in lecdon_xxx you could search for the variable associate to this keyword.
Type = ENTIER --> look for MOTINT (LOGIQUE --> MOTLOG, REEL --> MOTREA and CARACTERE --> MOTCAR)
Index gives the index in the array
In your case, you will find:
DEPER = MOTINT( ADRESS(1, 36) )
Then in the sources, you could look for the variable DEPER
But in fact, for this particular keyword, in the dico, you have a commentary (in french sorry) which indicate that this keyword is no longer used...
Hope this helps