Schedule a custom Function and run it daily

Schedule a custom Function and run it daily

Hi,

I am trying to run the below function on a daily basis.It is possible by using Scheduler in Zoho Creator ?



  1. void MVPD.AddUpdateLink_SubchnnelMVPD()
    {
        for each rec in Not_1_MVPD sort by  Added_Time desc range from 1 to 500
        {
           
            link02 = rec.ID;
            link03 = ("' target='_blank' title='Click to Update Record'>Update Record</a>");
            rec.NM_UpdateRecord = link01 + link02 + link03;
            
        }
    }

Thanks

Arfater