Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
raadwiptec
Creator II
Creator II

Variable

LET vReportDate = date(makedate(2021,9,30),'YYYYMMDD');

in my Load Script .. I have

Load ,

X,

YDate,

Z

from ....qvd(qvd) where YDate<$(vReportDate)

 

is there a way to control this vReportDate from front end?

 

Labels (1)
  • SaaS

3 Replies
edwin
Master II
Master II

when a variable is defined in the script, it will behave just like any variable in the UI.  you can change the content using a button for example.  or using any object with an action.  maybe you can explain further what problem you are experiencing

Or
MVP
MVP

As stated by @edwin , you could modify this variable from the front end, but what good would it do? Your Let statement would reset it every time you run the script.

It sounds like what you're trying to do would be better served by creating an ODAG app.

edwin
Master II
Master II

i do see the use case where you would want to modify the variable in the app - maybe for defaults which SHOULD reset when reloaded