J'ai une erreur sur le Query F8.
"unable to perform query FRM-40505".
Sur le trigger POST-QUERY j'appele une fonction qui fait :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
 
CURSOR curseurToto IS
SELECT toto FROM table
WHERE table.idToto:=:BLOK.item_id_toto; -- item_id_toto est un item basé non visible
REC_CUR_TOTO curseurTOTO;
OPEN curseurTOTO;
  FETCH  curseurTOTO INTO REC_CUR_TOTO;
  :BLOK.item_nom_toto:=REC_CUR_TOTO.toto;-- item_nb_toto non basé et visible
  CLOSE curseurTOTO;
Merci.