Forum Post: RE: Change the value of Record Name

  • Thread starter Thread starter matman
  • Start date Start date
Status
Not open for further replies.
M

matman

Guest
Create a trigger by going to the object's setup page, in the 'Triggers' section, click 'New Trigger'. Now select 'Object Script'. Now u will be redirected to the trigger setup page. In this page, select an occassion to let the trigger run in the 'Trigger Timing' section. In the 'General Properties' section, give the trigger a name, and post your code in the Formula field. Make sure that your code is correct by using 'Debug Formula' and 'Validate Formula'. If you'd like to, you can also set the trigger to run after a while, we call this a 'delayed trigger'. Please tell me if you'd like to set a delayed trigger so I can help you further. Your code: By using rbv_api.setFieldValue(objName, objID, fieldName, newValue); you can get a record to change the value of it's field. objName is the integration name of the object whose record u would like to change. objID is the ID of the record which you'd like to edit. fieldName is the name of the field whose value you'd like to change. newValue is the new value of the field.

Continue reading...
 
Status
Not open for further replies.
Back
Top