Method Does Not Exist error message
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
My class subtracts the values of child account number fields from the current values of it's parent account number fields in a hierarchy. I need this class to run everytime a child account changes its parent (i.e the parent name field is edited to a new name). I'm attempting to have this trigger compare the old value and the new value of the parent field, when creating the logic for this trigger I keep recieving this error message:
Method does not exist or incorrect signature: void executeSub(Account)
from the type Parent_Subtract
Class:
public class Parent_Subtract {
public static void executeSub(List<Account> scope) {
Id CRecordType = Schema.SObjectType.Account.getRecordTypeInfosByName().get('Customer Account').getRecordTypeId();
Id DRecordType = Schema.SObjectType.Account.getRecordTypeInfosByName().get('Division Account').getRecordTypeId();
Id SRecordType = Schema.SObjectType.Account.getRecordTypeInfosByName().get('Site Account').getRecordTypeId();
Id ERecordType = Schema.SObjectType.Account.getRecordTypeInfosByName().get('Enterprise Account').getRecordTypeId();
Id DSAccounts = '01270000578681Y';
List<Id> listIds = new List<Id>();
Map<Id, Account> parentAccounts = new Map<Id, Account>([SELECT Id, RecordTypeId, Parent_Account__c, Total_CCF__c, Total_Revenue__c,
Total_Usage_kWh__c, Account_kw__c, AnnualRev FROM Account WHERE ID In :listIds]);
Map<Id, Account> newParent = new Map<Id, Account>();
Set<ID> setParentAcctID = new set<ID>();
List<Account> listforFinalUpdate = new List<Account>();
for(Account acc : scope){
setParentAcctID.add(acc.Parent_Account__c);
}
List<account> listParentAcctData = [Select id, Total_CCF__c, Total_Revenue__c,
Total_Usage_kWh__c, Account_kw__c, AnnualRevenue
FROM account
WHERE id =: setParentAcctID];
for(Account a : listParentAcctData)
{
newParent.put(a.id,a);
}
for(Account acc: scope)
{
Account acct = newParent.get(acc.Parent_Account__c);
system.debug('acc.Total_Usage_kWh__c:'+acc.Total_Usage_kWh__c);
system.debug('acc.Total_CCF__c:'+acc.Total_CCF__c);
system.debug('acc.AnnualRev:'+acc.AnnualRev);
system.debug('acc.Account_kw__c:'+acc.Account_kw__c);
acct.Total_Usage_kWh__c -= acc.Total_Usage_kWh__c;
acct.Total_CCF__c -= acc.Total_CCF__c;
acct.AnnualRev -= acc.AnnualRev;
acct.Account_kw__c -= acc.Account_kw__c;
listforFinalUpdate.add(acct);
}
if(listforFinalUpdate.size() > 0)
{
update listforFinalUpdate;
}
}
}
Trigger:
if(Trigger.isUpdate){
for(Account acc: Trigger.new){
Account oldName = Trigger.oldMap.get(acc.Parent_Account__c);
Account newName = Trigger.newMap.get(acc.Parent_Account__c);
if(newName != oldName){
acct.add(acc);
}
}
Parent_Subtract.executeSub(acct);
}
}
Am I on the right track with this functionality and does anyone know why I am recieving this message?
apex trigger soql account
add a comment |
My class subtracts the values of child account number fields from the current values of it's parent account number fields in a hierarchy. I need this class to run everytime a child account changes its parent (i.e the parent name field is edited to a new name). I'm attempting to have this trigger compare the old value and the new value of the parent field, when creating the logic for this trigger I keep recieving this error message:
Method does not exist or incorrect signature: void executeSub(Account)
from the type Parent_Subtract
Class:
public class Parent_Subtract {
public static void executeSub(List<Account> scope) {
Id CRecordType = Schema.SObjectType.Account.getRecordTypeInfosByName().get('Customer Account').getRecordTypeId();
Id DRecordType = Schema.SObjectType.Account.getRecordTypeInfosByName().get('Division Account').getRecordTypeId();
Id SRecordType = Schema.SObjectType.Account.getRecordTypeInfosByName().get('Site Account').getRecordTypeId();
Id ERecordType = Schema.SObjectType.Account.getRecordTypeInfosByName().get('Enterprise Account').getRecordTypeId();
Id DSAccounts = '01270000578681Y';
List<Id> listIds = new List<Id>();
Map<Id, Account> parentAccounts = new Map<Id, Account>([SELECT Id, RecordTypeId, Parent_Account__c, Total_CCF__c, Total_Revenue__c,
Total_Usage_kWh__c, Account_kw__c, AnnualRev FROM Account WHERE ID In :listIds]);
Map<Id, Account> newParent = new Map<Id, Account>();
Set<ID> setParentAcctID = new set<ID>();
List<Account> listforFinalUpdate = new List<Account>();
for(Account acc : scope){
setParentAcctID.add(acc.Parent_Account__c);
}
List<account> listParentAcctData = [Select id, Total_CCF__c, Total_Revenue__c,
Total_Usage_kWh__c, Account_kw__c, AnnualRevenue
FROM account
WHERE id =: setParentAcctID];
for(Account a : listParentAcctData)
{
newParent.put(a.id,a);
}
for(Account acc: scope)
{
Account acct = newParent.get(acc.Parent_Account__c);
system.debug('acc.Total_Usage_kWh__c:'+acc.Total_Usage_kWh__c);
system.debug('acc.Total_CCF__c:'+acc.Total_CCF__c);
system.debug('acc.AnnualRev:'+acc.AnnualRev);
system.debug('acc.Account_kw__c:'+acc.Account_kw__c);
acct.Total_Usage_kWh__c -= acc.Total_Usage_kWh__c;
acct.Total_CCF__c -= acc.Total_CCF__c;
acct.AnnualRev -= acc.AnnualRev;
acct.Account_kw__c -= acc.Account_kw__c;
listforFinalUpdate.add(acct);
}
if(listforFinalUpdate.size() > 0)
{
update listforFinalUpdate;
}
}
}
Trigger:
if(Trigger.isUpdate){
for(Account acc: Trigger.new){
Account oldName = Trigger.oldMap.get(acc.Parent_Account__c);
Account newName = Trigger.newMap.get(acc.Parent_Account__c);
if(newName != oldName){
acct.add(acc);
}
}
Parent_Subtract.executeSub(acct);
}
}
Am I on the right track with this functionality and does anyone know why I am recieving this message?
apex trigger soql account
add a comment |
My class subtracts the values of child account number fields from the current values of it's parent account number fields in a hierarchy. I need this class to run everytime a child account changes its parent (i.e the parent name field is edited to a new name). I'm attempting to have this trigger compare the old value and the new value of the parent field, when creating the logic for this trigger I keep recieving this error message:
Method does not exist or incorrect signature: void executeSub(Account)
from the type Parent_Subtract
Class:
public class Parent_Subtract {
public static void executeSub(List<Account> scope) {
Id CRecordType = Schema.SObjectType.Account.getRecordTypeInfosByName().get('Customer Account').getRecordTypeId();
Id DRecordType = Schema.SObjectType.Account.getRecordTypeInfosByName().get('Division Account').getRecordTypeId();
Id SRecordType = Schema.SObjectType.Account.getRecordTypeInfosByName().get('Site Account').getRecordTypeId();
Id ERecordType = Schema.SObjectType.Account.getRecordTypeInfosByName().get('Enterprise Account').getRecordTypeId();
Id DSAccounts = '01270000578681Y';
List<Id> listIds = new List<Id>();
Map<Id, Account> parentAccounts = new Map<Id, Account>([SELECT Id, RecordTypeId, Parent_Account__c, Total_CCF__c, Total_Revenue__c,
Total_Usage_kWh__c, Account_kw__c, AnnualRev FROM Account WHERE ID In :listIds]);
Map<Id, Account> newParent = new Map<Id, Account>();
Set<ID> setParentAcctID = new set<ID>();
List<Account> listforFinalUpdate = new List<Account>();
for(Account acc : scope){
setParentAcctID.add(acc.Parent_Account__c);
}
List<account> listParentAcctData = [Select id, Total_CCF__c, Total_Revenue__c,
Total_Usage_kWh__c, Account_kw__c, AnnualRevenue
FROM account
WHERE id =: setParentAcctID];
for(Account a : listParentAcctData)
{
newParent.put(a.id,a);
}
for(Account acc: scope)
{
Account acct = newParent.get(acc.Parent_Account__c);
system.debug('acc.Total_Usage_kWh__c:'+acc.Total_Usage_kWh__c);
system.debug('acc.Total_CCF__c:'+acc.Total_CCF__c);
system.debug('acc.AnnualRev:'+acc.AnnualRev);
system.debug('acc.Account_kw__c:'+acc.Account_kw__c);
acct.Total_Usage_kWh__c -= acc.Total_Usage_kWh__c;
acct.Total_CCF__c -= acc.Total_CCF__c;
acct.AnnualRev -= acc.AnnualRev;
acct.Account_kw__c -= acc.Account_kw__c;
listforFinalUpdate.add(acct);
}
if(listforFinalUpdate.size() > 0)
{
update listforFinalUpdate;
}
}
}
Trigger:
if(Trigger.isUpdate){
for(Account acc: Trigger.new){
Account oldName = Trigger.oldMap.get(acc.Parent_Account__c);
Account newName = Trigger.newMap.get(acc.Parent_Account__c);
if(newName != oldName){
acct.add(acc);
}
}
Parent_Subtract.executeSub(acct);
}
}
Am I on the right track with this functionality and does anyone know why I am recieving this message?
apex trigger soql account
My class subtracts the values of child account number fields from the current values of it's parent account number fields in a hierarchy. I need this class to run everytime a child account changes its parent (i.e the parent name field is edited to a new name). I'm attempting to have this trigger compare the old value and the new value of the parent field, when creating the logic for this trigger I keep recieving this error message:
Method does not exist or incorrect signature: void executeSub(Account)
from the type Parent_Subtract
Class:
public class Parent_Subtract {
public static void executeSub(List<Account> scope) {
Id CRecordType = Schema.SObjectType.Account.getRecordTypeInfosByName().get('Customer Account').getRecordTypeId();
Id DRecordType = Schema.SObjectType.Account.getRecordTypeInfosByName().get('Division Account').getRecordTypeId();
Id SRecordType = Schema.SObjectType.Account.getRecordTypeInfosByName().get('Site Account').getRecordTypeId();
Id ERecordType = Schema.SObjectType.Account.getRecordTypeInfosByName().get('Enterprise Account').getRecordTypeId();
Id DSAccounts = '01270000578681Y';
List<Id> listIds = new List<Id>();
Map<Id, Account> parentAccounts = new Map<Id, Account>([SELECT Id, RecordTypeId, Parent_Account__c, Total_CCF__c, Total_Revenue__c,
Total_Usage_kWh__c, Account_kw__c, AnnualRev FROM Account WHERE ID In :listIds]);
Map<Id, Account> newParent = new Map<Id, Account>();
Set<ID> setParentAcctID = new set<ID>();
List<Account> listforFinalUpdate = new List<Account>();
for(Account acc : scope){
setParentAcctID.add(acc.Parent_Account__c);
}
List<account> listParentAcctData = [Select id, Total_CCF__c, Total_Revenue__c,
Total_Usage_kWh__c, Account_kw__c, AnnualRevenue
FROM account
WHERE id =: setParentAcctID];
for(Account a : listParentAcctData)
{
newParent.put(a.id,a);
}
for(Account acc: scope)
{
Account acct = newParent.get(acc.Parent_Account__c);
system.debug('acc.Total_Usage_kWh__c:'+acc.Total_Usage_kWh__c);
system.debug('acc.Total_CCF__c:'+acc.Total_CCF__c);
system.debug('acc.AnnualRev:'+acc.AnnualRev);
system.debug('acc.Account_kw__c:'+acc.Account_kw__c);
acct.Total_Usage_kWh__c -= acc.Total_Usage_kWh__c;
acct.Total_CCF__c -= acc.Total_CCF__c;
acct.AnnualRev -= acc.AnnualRev;
acct.Account_kw__c -= acc.Account_kw__c;
listforFinalUpdate.add(acct);
}
if(listforFinalUpdate.size() > 0)
{
update listforFinalUpdate;
}
}
}
Trigger:
if(Trigger.isUpdate){
for(Account acc: Trigger.new){
Account oldName = Trigger.oldMap.get(acc.Parent_Account__c);
Account newName = Trigger.newMap.get(acc.Parent_Account__c);
if(newName != oldName){
acct.add(acc);
}
}
Parent_Subtract.executeSub(acct);
}
}
Am I on the right track with this functionality and does anyone know why I am recieving this message?
apex trigger soql account
apex trigger soql account
edited Apr 9 at 18:28
Mark Wilson
asked Apr 3 at 19:58
Mark WilsonMark Wilson
63
63
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You're calling a method with a single Account
parameter:
Parent_Subtract.executeSub(acct);
but this method is defined to take a List<Account>
as its parameter:
public static void executeSub(List<Account> scope)
This method is bulkified: it is defined to run exactly one DML operation:
update listforFinalUpdate;
regardless of how many Account
records it receives. For this reason you need to be calling it with a List<Account>
, not calling it repeatedly in a loop. Your trigger should accumulate a List<Account>
inside your for
loop, and then make a single call to executeSub()
outside the loop.
I've updated the trigger and don't receive the error message but values still do not decrement when the field is changed. I'm new to analyzing the debug logs but when I check I see that there is no soql execution for my class when its fired. Is there something else im doing wrong?
– Mark Wilson
Apr 9 at 18:41
@MarkWilson Your class is coded to only run when you change theParent_Account__c
field. Can you be more specific about the issue you are seeing? This may require a separate SFSE question.
– David Reed♦
Apr 9 at 20:12
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "459"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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%2f256456%2fmethod-does-not-exist-error-message%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You're calling a method with a single Account
parameter:
Parent_Subtract.executeSub(acct);
but this method is defined to take a List<Account>
as its parameter:
public static void executeSub(List<Account> scope)
This method is bulkified: it is defined to run exactly one DML operation:
update listforFinalUpdate;
regardless of how many Account
records it receives. For this reason you need to be calling it with a List<Account>
, not calling it repeatedly in a loop. Your trigger should accumulate a List<Account>
inside your for
loop, and then make a single call to executeSub()
outside the loop.
I've updated the trigger and don't receive the error message but values still do not decrement when the field is changed. I'm new to analyzing the debug logs but when I check I see that there is no soql execution for my class when its fired. Is there something else im doing wrong?
– Mark Wilson
Apr 9 at 18:41
@MarkWilson Your class is coded to only run when you change theParent_Account__c
field. Can you be more specific about the issue you are seeing? This may require a separate SFSE question.
– David Reed♦
Apr 9 at 20:12
add a comment |
You're calling a method with a single Account
parameter:
Parent_Subtract.executeSub(acct);
but this method is defined to take a List<Account>
as its parameter:
public static void executeSub(List<Account> scope)
This method is bulkified: it is defined to run exactly one DML operation:
update listforFinalUpdate;
regardless of how many Account
records it receives. For this reason you need to be calling it with a List<Account>
, not calling it repeatedly in a loop. Your trigger should accumulate a List<Account>
inside your for
loop, and then make a single call to executeSub()
outside the loop.
I've updated the trigger and don't receive the error message but values still do not decrement when the field is changed. I'm new to analyzing the debug logs but when I check I see that there is no soql execution for my class when its fired. Is there something else im doing wrong?
– Mark Wilson
Apr 9 at 18:41
@MarkWilson Your class is coded to only run when you change theParent_Account__c
field. Can you be more specific about the issue you are seeing? This may require a separate SFSE question.
– David Reed♦
Apr 9 at 20:12
add a comment |
You're calling a method with a single Account
parameter:
Parent_Subtract.executeSub(acct);
but this method is defined to take a List<Account>
as its parameter:
public static void executeSub(List<Account> scope)
This method is bulkified: it is defined to run exactly one DML operation:
update listforFinalUpdate;
regardless of how many Account
records it receives. For this reason you need to be calling it with a List<Account>
, not calling it repeatedly in a loop. Your trigger should accumulate a List<Account>
inside your for
loop, and then make a single call to executeSub()
outside the loop.
You're calling a method with a single Account
parameter:
Parent_Subtract.executeSub(acct);
but this method is defined to take a List<Account>
as its parameter:
public static void executeSub(List<Account> scope)
This method is bulkified: it is defined to run exactly one DML operation:
update listforFinalUpdate;
regardless of how many Account
records it receives. For this reason you need to be calling it with a List<Account>
, not calling it repeatedly in a loop. Your trigger should accumulate a List<Account>
inside your for
loop, and then make a single call to executeSub()
outside the loop.
answered Apr 3 at 20:05
David Reed♦David Reed
39.5k82357
39.5k82357
I've updated the trigger and don't receive the error message but values still do not decrement when the field is changed. I'm new to analyzing the debug logs but when I check I see that there is no soql execution for my class when its fired. Is there something else im doing wrong?
– Mark Wilson
Apr 9 at 18:41
@MarkWilson Your class is coded to only run when you change theParent_Account__c
field. Can you be more specific about the issue you are seeing? This may require a separate SFSE question.
– David Reed♦
Apr 9 at 20:12
add a comment |
I've updated the trigger and don't receive the error message but values still do not decrement when the field is changed. I'm new to analyzing the debug logs but when I check I see that there is no soql execution for my class when its fired. Is there something else im doing wrong?
– Mark Wilson
Apr 9 at 18:41
@MarkWilson Your class is coded to only run when you change theParent_Account__c
field. Can you be more specific about the issue you are seeing? This may require a separate SFSE question.
– David Reed♦
Apr 9 at 20:12
I've updated the trigger and don't receive the error message but values still do not decrement when the field is changed. I'm new to analyzing the debug logs but when I check I see that there is no soql execution for my class when its fired. Is there something else im doing wrong?
– Mark Wilson
Apr 9 at 18:41
I've updated the trigger and don't receive the error message but values still do not decrement when the field is changed. I'm new to analyzing the debug logs but when I check I see that there is no soql execution for my class when its fired. Is there something else im doing wrong?
– Mark Wilson
Apr 9 at 18:41
@MarkWilson Your class is coded to only run when you change the
Parent_Account__c
field. Can you be more specific about the issue you are seeing? This may require a separate SFSE question.– David Reed♦
Apr 9 at 20:12
@MarkWilson Your class is coded to only run when you change the
Parent_Account__c
field. Can you be more specific about the issue you are seeing? This may require a separate SFSE question.– David Reed♦
Apr 9 at 20:12
add a comment |
Thanks for contributing an answer to Salesforce Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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%2f256456%2fmethod-does-not-exist-error-message%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