Apex Syntax Error?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty{ margin-bottom:0;
}
up vote
2
down vote
favorite
This code works in Execute Anonymous, but when I try to make an Apex class I get this error on line: Expecting '}' but was: 'insert'. Any thoughts? Thanks.
public class InvoiceAccounts {
// Create a list of InvoiceAccounts
List<InvoiceAccount__c> InvA_List = new List<InvoiceAccount__c> {
new InvoiceAccount__c(Name='Joe',Account_Owner_Name__c='Smith',Account_Owner_Title__c='Sir'),
new InvoiceAccount__c(Name='Kathy',Account_Owner_Name__c='Smith',Account_Owner_Title__c='Sir'),
new InvoiceAccount__c(Name='Caroline',Account_Owner_Name__c='Roth',Account_Owner_Title__c='Sir'),
new InvoiceAccount__c(Name='Kim',Account_Owner_Name__c='Shain',Account_Owner_Title__c='Sir')};
// Bulk insert all InvoiceAccount__cs with one DML call
insert InvA_List;
}
apex
add a comment |
up vote
2
down vote
favorite
This code works in Execute Anonymous, but when I try to make an Apex class I get this error on line: Expecting '}' but was: 'insert'. Any thoughts? Thanks.
public class InvoiceAccounts {
// Create a list of InvoiceAccounts
List<InvoiceAccount__c> InvA_List = new List<InvoiceAccount__c> {
new InvoiceAccount__c(Name='Joe',Account_Owner_Name__c='Smith',Account_Owner_Title__c='Sir'),
new InvoiceAccount__c(Name='Kathy',Account_Owner_Name__c='Smith',Account_Owner_Title__c='Sir'),
new InvoiceAccount__c(Name='Caroline',Account_Owner_Name__c='Roth',Account_Owner_Title__c='Sir'),
new InvoiceAccount__c(Name='Kim',Account_Owner_Name__c='Shain',Account_Owner_Title__c='Sir')};
// Bulk insert all InvoiceAccount__cs with one DML call
insert InvA_List;
}
apex
add a comment |
up vote
2
down vote
favorite
up vote
2
down vote
favorite
This code works in Execute Anonymous, but when I try to make an Apex class I get this error on line: Expecting '}' but was: 'insert'. Any thoughts? Thanks.
public class InvoiceAccounts {
// Create a list of InvoiceAccounts
List<InvoiceAccount__c> InvA_List = new List<InvoiceAccount__c> {
new InvoiceAccount__c(Name='Joe',Account_Owner_Name__c='Smith',Account_Owner_Title__c='Sir'),
new InvoiceAccount__c(Name='Kathy',Account_Owner_Name__c='Smith',Account_Owner_Title__c='Sir'),
new InvoiceAccount__c(Name='Caroline',Account_Owner_Name__c='Roth',Account_Owner_Title__c='Sir'),
new InvoiceAccount__c(Name='Kim',Account_Owner_Name__c='Shain',Account_Owner_Title__c='Sir')};
// Bulk insert all InvoiceAccount__cs with one DML call
insert InvA_List;
}
apex
This code works in Execute Anonymous, but when I try to make an Apex class I get this error on line: Expecting '}' but was: 'insert'. Any thoughts? Thanks.
public class InvoiceAccounts {
// Create a list of InvoiceAccounts
List<InvoiceAccount__c> InvA_List = new List<InvoiceAccount__c> {
new InvoiceAccount__c(Name='Joe',Account_Owner_Name__c='Smith',Account_Owner_Title__c='Sir'),
new InvoiceAccount__c(Name='Kathy',Account_Owner_Name__c='Smith',Account_Owner_Title__c='Sir'),
new InvoiceAccount__c(Name='Caroline',Account_Owner_Name__c='Roth',Account_Owner_Title__c='Sir'),
new InvoiceAccount__c(Name='Kim',Account_Owner_Name__c='Shain',Account_Owner_Title__c='Sir')};
// Bulk insert all InvoiceAccount__cs with one DML call
insert InvA_List;
}
apex
apex
edited 2 hours ago
sfdcfox
240k10182403
240k10182403
asked 2 hours ago
Boots
659
659
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
2
down vote
Within a class, executable code must be inside of a method. Typically, this means you simply add a line for the method signature, and another closing curly bracket.
public class InvoiceAccounts {
public static void createInvoiceAccounts() {
// Create a list of InvoiceAccounts
List<InvoiceAccount__c> InvA_List = new List<InvoiceAccount__c> {
new InvoiceAccount__c(Name='Joe',Account_Owner_Name__c='Smith',Account_Owner_Title__c='Sir'),
new InvoiceAccount__c(Name='Kathy',Account_Owner_Name__c='Smith',Account_Owner_Title__c='Sir'),
new InvoiceAccount__c(Name='Caroline',Account_Owner_Name__c='Roth',Account_Owner_Title__c='Sir'),
new InvoiceAccount__c(Name='Kim',Account_Owner_Name__c='Shain',Account_Owner_Title__c='Sir')};
// Bulk insert all InvoiceAccount__cs with one DML call
insert InvA_List;
}
}
Which you then call as a static method:
InvoiceAccounts.createInvoiceAccounts();
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
Within a class, executable code must be inside of a method. Typically, this means you simply add a line for the method signature, and another closing curly bracket.
public class InvoiceAccounts {
public static void createInvoiceAccounts() {
// Create a list of InvoiceAccounts
List<InvoiceAccount__c> InvA_List = new List<InvoiceAccount__c> {
new InvoiceAccount__c(Name='Joe',Account_Owner_Name__c='Smith',Account_Owner_Title__c='Sir'),
new InvoiceAccount__c(Name='Kathy',Account_Owner_Name__c='Smith',Account_Owner_Title__c='Sir'),
new InvoiceAccount__c(Name='Caroline',Account_Owner_Name__c='Roth',Account_Owner_Title__c='Sir'),
new InvoiceAccount__c(Name='Kim',Account_Owner_Name__c='Shain',Account_Owner_Title__c='Sir')};
// Bulk insert all InvoiceAccount__cs with one DML call
insert InvA_List;
}
}
Which you then call as a static method:
InvoiceAccounts.createInvoiceAccounts();
add a comment |
up vote
2
down vote
Within a class, executable code must be inside of a method. Typically, this means you simply add a line for the method signature, and another closing curly bracket.
public class InvoiceAccounts {
public static void createInvoiceAccounts() {
// Create a list of InvoiceAccounts
List<InvoiceAccount__c> InvA_List = new List<InvoiceAccount__c> {
new InvoiceAccount__c(Name='Joe',Account_Owner_Name__c='Smith',Account_Owner_Title__c='Sir'),
new InvoiceAccount__c(Name='Kathy',Account_Owner_Name__c='Smith',Account_Owner_Title__c='Sir'),
new InvoiceAccount__c(Name='Caroline',Account_Owner_Name__c='Roth',Account_Owner_Title__c='Sir'),
new InvoiceAccount__c(Name='Kim',Account_Owner_Name__c='Shain',Account_Owner_Title__c='Sir')};
// Bulk insert all InvoiceAccount__cs with one DML call
insert InvA_List;
}
}
Which you then call as a static method:
InvoiceAccounts.createInvoiceAccounts();
add a comment |
up vote
2
down vote
up vote
2
down vote
Within a class, executable code must be inside of a method. Typically, this means you simply add a line for the method signature, and another closing curly bracket.
public class InvoiceAccounts {
public static void createInvoiceAccounts() {
// Create a list of InvoiceAccounts
List<InvoiceAccount__c> InvA_List = new List<InvoiceAccount__c> {
new InvoiceAccount__c(Name='Joe',Account_Owner_Name__c='Smith',Account_Owner_Title__c='Sir'),
new InvoiceAccount__c(Name='Kathy',Account_Owner_Name__c='Smith',Account_Owner_Title__c='Sir'),
new InvoiceAccount__c(Name='Caroline',Account_Owner_Name__c='Roth',Account_Owner_Title__c='Sir'),
new InvoiceAccount__c(Name='Kim',Account_Owner_Name__c='Shain',Account_Owner_Title__c='Sir')};
// Bulk insert all InvoiceAccount__cs with one DML call
insert InvA_List;
}
}
Which you then call as a static method:
InvoiceAccounts.createInvoiceAccounts();
Within a class, executable code must be inside of a method. Typically, this means you simply add a line for the method signature, and another closing curly bracket.
public class InvoiceAccounts {
public static void createInvoiceAccounts() {
// Create a list of InvoiceAccounts
List<InvoiceAccount__c> InvA_List = new List<InvoiceAccount__c> {
new InvoiceAccount__c(Name='Joe',Account_Owner_Name__c='Smith',Account_Owner_Title__c='Sir'),
new InvoiceAccount__c(Name='Kathy',Account_Owner_Name__c='Smith',Account_Owner_Title__c='Sir'),
new InvoiceAccount__c(Name='Caroline',Account_Owner_Name__c='Roth',Account_Owner_Title__c='Sir'),
new InvoiceAccount__c(Name='Kim',Account_Owner_Name__c='Shain',Account_Owner_Title__c='Sir')};
// Bulk insert all InvoiceAccount__cs with one DML call
insert InvA_List;
}
}
Which you then call as a static method:
InvoiceAccounts.createInvoiceAccounts();
answered 2 hours ago
sfdcfox
240k10182403
240k10182403
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsalesforce.stackexchange.com%2fquestions%2f240384%2fapex-syntax-error%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown