Bonjour
Je suis débutant en oracle.j'ai un bouton sur un écran principal qui me permet,'on click' du bouton il y a un écran qui apparait mais je ne veux pas accéder simultanément aux deux écrans.j'ai donc ajouter 'OUI' à la propriété modal du second écran mais il m'affiche une erreur " FRM-40112 Tentative d'execution de go_item vers l'élément non activé BL_VALID:NBRE_DEM "
Voici le code sous le bouton:
Merci
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11 declare i integer; begin if :bl_tab.ck='O' then show_window('WIN_VALID',250,200); go_block('BL_VALID'); else --:BL_TAB.ck='N' then set_alert_property('AL_STOP',ALERT_MESSAGE_TEXT, 'Traitement Impossible,aucune donnée n''est cochée'); i:=show_alert('AL_STOP'); end if; end;
Partager