updating field in form(Accounts), when a field in another form (Quotation) is updated.
i tried this code to update 1 Account status when a quotation created for this account is updated...but what happens is that all accounts are updated!!
A = Quotations[Account_Name == input.Account_Name];
khstatus = Accounts[Status == A.Status];
if(Phase == "Project Started")
{
khstatus.update(0,"Customer");
}