Run two different scripts on User Input Action

Run two different scripts on User Input Action

Hi,
Is it possible to run two different script on User input Action ?

Actually I have a stainless form to Update the data of another form.  Below I describer What I am looking for . please help me to fix it.






On User Input of TV Station below is script code :


if (input.Update_TVStation  !=  null)
{
    dat  =  TV_Station  [ID == input.Update_TVStation];
   
    input.Update_ST = dat.Add_ST1;
    input.Update_Market = dat.Add_Market;
    input.Update_BM = dat.Add_BM1;
    input.Update_RF = dat.Add_RF1;
    input.Update_1_channel = dat.Add_1_Channel;
   
   ...................
  .................


On User Input .1 Channel  : I am trying to run below code when user update the field to any value.


if (input.Update_1_channel  !=  null)
{
input.Update_Date_01 = zoho.currentdate;
}


note:  Update_Date_01 field is hidden.