
Contributor II
2022-11-21
05:24 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Set a variable in Load Script
Hello Everyone !
I need your help on this problem :
I need to change the value when the user changes it in the app (0 to 1)of a variable already existing in the load script (if the user changes the value => variable = 2)
Thank you for your answers.
656 Views
1 Reply

Partner - Specialist
2022-11-28
04:20 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
after the then , press enter and type let and then $(tTriggerKO).... also close this if statement with endif (inside the loop)
but if Nom_Ctrl has more then 1 value in the data set this statement will only change 1 time because after the first iteration the variable is already 2 .
if you don't want that you can move this let statement to the end of the script and do something like this
if $(vTest) = 1 then;
let vTest = 2;
endif;
615 Views
