Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

Insert a custom object

Visitor__c newVisitor = new Visitor__c ();
newVisitor.Name = 'John Smith';
newVisitor.Identifier__c = 'john@somewhere.com';
insert newVisitor;
Source by salesforce.stackexchange.com #
 
PREVIOUS NEXT
Tagged: #Insert #custom #object
ADD COMMENT
Topic
Name
2+2 =