Trigger after update, field
Hello
I Can't find the response of my problem
I have a field that has a TRIGGER AFTER UPDATE function, i need when the field is field in to update 3 fields below.
I tried this :
(DETAIL := "http://www.kiosqueauto.fr/index.php?module=ajax&action=car_details&natcode=" + 'NATCODE AUTOVISTA' + "&vat=19.6&index=0") and ('DATA SERIE' := "http://www.kiosqueauto.fr/index.php?module=ajax&action=car_equipments&natcode=" + 'NATCODE AUTOVISTA') and ('DATA OPTION' := "http://www.kiosqueauto.fr/index.php?module=ajax&action=car_options&natcode=" + 'NATCODE AUTOVISTA')
But i don't understand why it doesn't work, only the first field is updated.
Thanks for your help !
1 reply
-
I think it should be something like this:
DETAIL := "http://www.kiosqueauto.fr/index.php?module=ajax&action=car_details&natcode=" + 'NATCODE AUTOVISTA' + "&vat=19.6&index=0";
'DATA SERIE' := "http://www.kiosqueauto.fr/index.php?module=ajax&action=car_equipments&natcode=" + 'NATCODE AUTOVISTA';
'DATA OPTION' := "http://www.kiosqueauto.fr/index.php?module=ajax&action=car_options&natcode=" + 'NATCODE AUTOVISTA'
instead of using and you separate commandlines with ;
Steven.
Content aside
- 4 yrs agoLast active
- 1Replies
- 626Views