cancel
Showing results for 
Search instead for 
Did you mean: 

How to call an action automatically?

Former Member
0 Kudos

Hi to all;

I am getting data from backend and showing it to UI-Table. There is a command button on click of which i am calling an action which transport all the table values to a html file in proper format.

now i want this action to be called automatically on some event say every midnight the function should be called automatically without clicking the button. How could i do like this??

If anybody knows please help me.

Thanks & Regards

Pankaj Kumar.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

hi pankaj,

in doModifyView method()

check for the condition ur hoping for.. and

if(true)

{

call the action here...

}

as per u said...get the time of the system and check that..

hope this helps u