Forms builder oracle
Fermé
zako2012
Messages postés
6
Date d'inscription
lundi 25 juin 2012
Statut
Membre
Dernière intervention
26 juin 2012
-
25 juin 2012 à 16:22
zako2012 Messages postés 6 Date d'inscription lundi 25 juin 2012 Statut Membre Dernière intervention 26 juin 2012 - 26 juin 2012 à 10:23
zako2012 Messages postés 6 Date d'inscription lundi 25 juin 2012 Statut Membre Dernière intervention 26 juin 2012 - 26 juin 2012 à 10:23
A voir également:
- Forms builder oracle
- Pdftk builder - Télécharger - PDF
- Tiny11 builder - Accueil - Windows
- Gpt builder - Accueil - Intelligence artificielle
- Family tree builder en français - Télécharger - Généalogie
- Lego builder pc - Télécharger - 3D
1 réponse
zako2012
Messages postés
6
Date d'inscription
lundi 25 juin 2012
Statut
Membre
Dernière intervention
26 juin 2012
1
26 juin 2012 à 10:23
26 juin 2012 à 10:23
j ai trouver la solution :p
declare
alert_id alert;
choice number;
begin
select sum(mtpmt) into :invoice1.somme
from PAYMENT1
where payment1.refinv= :invoice1.refinv;
:invoice1.somme:=:invoice1.somme+:PAYMENT1.mtpmt;
if :invoice1.SOMME >:invoice1.mtinv then
alert_id := Find_Alert('VALEUR_INVALID');
choice := Show_ALert(alert_id);
IF Id_Null(alert_id) THEN
Message('The alert named: Are you sure? does not exist');
ELSE
choice := Show_Alert(alert_id);
END IF;
RAISE Form_Trigger_Failure;
end if;
end;
declare
alert_id alert;
choice number;
begin
select sum(mtpmt) into :invoice1.somme
from PAYMENT1
where payment1.refinv= :invoice1.refinv;
:invoice1.somme:=:invoice1.somme+:PAYMENT1.mtpmt;
if :invoice1.SOMME >:invoice1.mtinv then
alert_id := Find_Alert('VALEUR_INVALID');
choice := Show_ALert(alert_id);
IF Id_Null(alert_id) THEN
Message('The alert named: Are you sure? does not exist');
ELSE
choice := Show_Alert(alert_id);
END IF;
RAISE Form_Trigger_Failure;
end if;
end;