Don't have an account?
Search for an answer or ask a question of the zone or Customer Support.
You need to sign in to do that
Sign in to start searching questions
Signup for a Developer Edition
Sign in to start a discussion
This is sample trigger for update the field.
trigger fieldUpdate on New_Leads__c (before insert,before update) {
for(New_Leads__c newl:trigger.new){
newl.Text__c='I4infotech';
}
}
--Thulasi