Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
How can I use the value of reloadtime() and use it as a field within a table inside the load script?
I tried using let reloadtime = reloadtime() and then in the table:
test:
load reloadtime as loadtime;
Anyone know how? I need to know reloadtime() or now() and store it inside a QVD.
Hi
Try like this
Let ReloadTime= ReloadTime();
LOAD '$(ReloadTime)' as ReloadTime AutoGenerate 1;
But its show the last reload time only. Not reload time.
i.e. This ReloadTime field value varies when u see the function value of ReloadTime() in textbox.
Hi
Try like this
Let ReloadTime= ReloadTime();
LOAD '$(ReloadTime)' as ReloadTime AutoGenerate 1;
But its show the last reload time only. Not reload time.
i.e. This ReloadTime field value varies when u see the function value of ReloadTime() in textbox.
Thanks, I used now() instead and it worked!
Hi,
Try like this
Let ReloadTime= ReloadTime();
LOAD
'$(ReloadTime)' as ReloadTime
AutoGenerate 1;
LOAD
Now() as NowTime
AutoGenerate 1;
Regards,
Jagan.