Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Latest Script Update

Hi Folks,

today I would like to ask how I manage it to Show a TextBox giving me the time of the last Script Update of my database.

So the user can check immediately what 'internal version' he is working with.

Any idea?

Thanks in advance,

Wolfgang

1 Solution

Accepted Solutions
alexandros17
Partner - Champion III
Partner - Champion III

Write this in a text box:

='Last Update: ' & date(ReloadTime(),'DD/MM/YYYY hh:mm:ss')

let me know

View solution in original post

7 Replies
alexandros17
Partner - Champion III
Partner - Champion III

Write this in a text box:

='Last Update: ' & date(ReloadTime(),'DD/MM/YYYY hh:mm:ss')

let me know

Anonymous
Not applicable
Author

Try this in Text Object

='Last Reloaded Date='& Date(ReloadTime(),'DD/MM/YYYY')

Get the last updated date.....

Anonymous
Not applicable
Author

Hi Alessandro,

it works,

thanks a lot!

Mit freundlichen Grüßen

ppa. Wolfgang Mohr

Verwaltung/Administration

<http://www.bruening-gruppe.de/>

Brüning-Holding GmbH

Landstr. 30

28870 Fischerhude

04293-78 94-160

04293-78 94-40

0173-24 89 251

Amtsgericht Walsrode HRB202031

Geschäftsführer: Arnd Brüning

www.bruening-gruppe.de

<http://www.bruening-gruppe.de/blog/> <http://www.bruening-gruppe.de/index.php/de/newsletter-anmeldung> <http://www.facebook.com/BrueningIGruppe> <http://www.xing.com/company/bruening-gruppe>

<http://www.bruening-gruppe.de/newsletter/>

Die vollständigen Angaben (Registergericht, Registernummer, Umsatzsteuer-Identifizierungsnummer) der Tochterfirmen: Brüning-Logistik GmbH, Brüning-Euromulch GmbH, Brüning-Megawatt GmbH und Brüning-Specials GmbH; sowie der Brüning Verwaltungs GmbH & Co. KG finden Sie im Impressum auf der Homepage der Brüning I Gruppe.

Diese E-Mail enthält vertrauliche und/oder rechtlich geschützte Informationen. Wenn Sie nicht der richtige Adressat sind oder diese E-Mail irrtümlich erhalten haben, informieren Sie bitte sofort den Absender und löschen diese E-Mail. Das unerlaubte Kopieren sowie die unbefugte Weitergabe dieser E-Mail und der darin enthaltenen Informationen ist nicht gestattet.

This e-mail contains confidential and/or privileged information. If you are not the intended recipient (or have received this e-mail in error) please notify the sender immediately and delete this e-mail. Any unauthorized copying, disclosure or distribution of the material is strictly forbidden.

Von: Alessandro Saccone

Gesendet: Donnerstag, 15. Mai 2014 08:48

An: Wolfgang Mohr

Betreff: Re: - Latest Script Update

Qlik Community<http://community.qlik.com/>

Latest Script Update

reply from Alessandro Saccone<http://community.qlik.com/people/Alexandros17?et=watches.email.thread> in Layout & Visualizations - View the full discussion<http://community.qlik.com/message/528802?et=watches.email.thread#528802>

amit_saini
Master III
Master III

Hi Wolfgang,

Call this script in text box:

='[ Updated at ' & timestamp(reloadtime(), 'hh:mm on MMM DD, YYYY') &' ]'

Thanks,

AS

alexandros17
Partner - Champion III
Partner - Champion III

Hi Wolfgang

could you please mark my answer ?


Thankyou


Alexandros

Anonymous
Not applicable
Author

Huuuu,

as I will do it for the first time I will do my best!

But definitively you deserve it!

Mit freundlichen Grüßen

ppa. Wolfgang Mohr

Verwaltung/Administration

<http://www.bruening-gruppe.de/>

Brüning-Holding GmbH

Landstr. 30

28870 Fischerhude

04293-78 94-160

04293-78 94-40

0173-24 89 251

Amtsgericht Walsrode HRB202031

Geschäftsführer: Arnd Brüning

www.bruening-gruppe.de

<http://www.bruening-gruppe.de/blog/> <http://www.bruening-gruppe.de/index.php/de/newsletter-anmeldung> <http://www.facebook.com/BrueningIGruppe> <http://www.xing.com/company/bruening-gruppe>

<http://www.bruening-gruppe.de/newsletter/>

Die vollständigen Angaben (Registergericht, Registernummer, Umsatzsteuer-Identifizierungsnummer) der Tochterfirmen: Brüning-Logistik GmbH, Brüning-Euromulch GmbH, Brüning-Megawatt GmbH und Brüning-Specials GmbH; sowie der Brüning Verwaltungs GmbH & Co. KG finden Sie im Impressum auf der Homepage der Brüning I Gruppe.

Diese E-Mail enthält vertrauliche und/oder rechtlich geschützte Informationen. Wenn Sie nicht der richtige Adressat sind oder diese E-Mail irrtümlich erhalten haben, informieren Sie bitte sofort den Absender und löschen diese E-Mail. Das unerlaubte Kopieren sowie die unbefugte Weitergabe dieser E-Mail und der darin enthaltenen Informationen ist nicht gestattet.

This e-mail contains confidential and/or privileged information. If you are not the intended recipient (or have received this e-mail in error) please notify the sender immediately and delete this e-mail. Any unauthorized copying, disclosure or distribution of the material is strictly forbidden.

Von: Alessandro Saccone

Gesendet: Donnerstag, 15. Mai 2014 09:10

An: Wolfgang Mohr

Betreff: Re: - Latest Script Update

Qlik Community<http://community.qlik.com/>

Latest Script Update

reply from Alessandro Saccone<http://community.qlik.com/people/Alexandros17?et=watches.email.thread> in Layout & Visualizations - View the full discussion<http://community.qlik.com/message/528804?et=watches.email.thread#528804>

MK_QSL
MVP
MVP

You can use as below also in text box...

='Last Updated '&Date(ReloadTime())&CHR(10)

&Hour(NOW()-ReloadTime())&' Hour(s),'&CHR(10)

&Minute(NOW()-ReloadTime())& ' Minute(s) and'&CHR(10)

&Second(NOW()-ReloadTime())& ' Second(s) ago' & CHR(10)&

'By '&Capitalize(Replace(SUBFIELD(OSUser(),'\',2),'.',' '))