Modify table without event

Hi folks, i’m new in ignition and i have a question.
I’m trying to modify a table (update it) without using any button or event in general.
I have already find a possible way using timer scipt, but if in a buttun script (actioperformed) i use the command:
“table = event.source.parent.getComponent(“Table”)” for initialize the object table; what i have to do in timer script for bring “Table” to the attention of the process?

Thank you for your time, regards!!!

Generally, you wouldn’t use a table object at all. You’d simply run your own query (if you need one) in the script, process as needed, then run your update. If you want this to run unconditionally from one place, you need to do it in the gateway, and the gateway has no gui objects, anyways.