Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I'd like to load a table on the backfront on a certain condition.
I've got a variable vTableChoice which can have values 1 or 2.
So, I need to set the following condition in script:
If vTableChoice = 1 then:
table1:
load
...
else:
do not load table1 but load table2:
table2:
load
...
Is it possible to implement such logic?
Thank you in advance,
Larisa
Yes, almost exactly as you posted.
if $(vTableChoice) = 1 then
table1:
load
...
else
table2:
load
...
endif
Yes, almost exactly as you posted.
if $(vTableChoice) = 1 then
table1:
load
...
else
table2:
load
...
endif
Thank you!