-
ChatterFeed
-
0Best Answers
-
0Likes Received
-
0Likes Given
-
13Questions
-
4Replies
Need help in one Scenario
There is a campaign c1 under that campaign there are 4 campaign members
Campaign Member 1 - Lead1 - There are 3 activities under this lead
Campaign Member 2 - Lead2 - There are 2 activities under this lead
Campaign Member 3 - Contact1 - There are 3 activities under this contact
Campaign Member 4 - Contact 2 - There are 2 activities under this lead
With this data iam pushing into one custom object :
That object will contains campaign name ,lead id,contact id,subject,activity id,activity created date
Out of 3 activities from Lead L1 i need to display only one activity which satisfies the below condition
List<Task> = [select id,subject,createddate from task where whoid in (select leadid from campaignmember ) and task.createddate > camp.start date]
How to achieve this for all the campaigns .please adivse
Campaign Member 1 - Lead1 - There are 3 activities under this lead
Campaign Member 2 - Lead2 - There are 2 activities under this lead
Campaign Member 3 - Contact1 - There are 3 activities under this contact
Campaign Member 4 - Contact 2 - There are 2 activities under this lead
With this data iam pushing into one custom object :
That object will contains campaign name ,lead id,contact id,subject,activity id,activity created date
Out of 3 activities from Lead L1 i need to display only one activity which satisfies the below condition
List<Task> = [select id,subject,createddate from task where whoid in (select leadid from campaignmember ) and task.createddate > camp.start date]
How to achieve this for all the campaigns .please adivse
-
- lokesh reddy 7
- October 15, 2016
- Like
- 0
- Continue reading or reply
Need help with save button
Hi,
I need help on save button ,I am having opportunity splits under opportunity when i have clicked on edit split then a page will open where i can enter split percentage and .. .After entering values and clicking on Save&Close button is giving me correct results .But if i click save button first and then if i click on save&close then it is giving incorrect results.How to solve this any help?
Thanks,
Kiran
I need help on save button ,I am having opportunity splits under opportunity when i have clicked on edit split then a page will open where i can enter split percentage and .. .After entering values and clicking on Save&Close button is giving me correct results .But if i click save button first and then if i click on save&close then it is giving incorrect results.How to solve this any help?
Thanks,
Kiran
-
- lokesh reddy 7
- October 05, 2016
- Like
- 0
- Continue reading or reply
Help in apex scheduler
Hi ,
I have one requirement where i need to pull the data from campaign to one custom object depending upon the some conditions .
Those conditions are:
Select id,subject ,createddate from task where whoid in (select leadid from campaignmember ) and createddate > campaign.startdate
this is my condition .Depending upon the condition i need to pull the records to custom object .
This is to be done for all the leads which are under a campaign.Any help on this please adivise.
Thanks
lokesh
I have one requirement where i need to pull the data from campaign to one custom object depending upon the some conditions .
Those conditions are:
Select id,subject ,createddate from task where whoid in (select leadid from campaignmember ) and createddate > campaign.startdate
this is my condition .Depending upon the condition i need to pull the records to custom object .
This is to be done for all the leads which are under a campaign.Any help on this please adivise.
Thanks
lokesh
-
- lokesh reddy 7
- September 30, 2016
- Like
- 0
- Continue reading or reply
Help in SOQL Query
Hi,
I need a help in SOQL ,
Select id,subject,CreatedDate__c from task where whoid in (select leadId from CampaignMember where Campaign.id = '70128000000BAgd') and task.CreatedDate__c > (select startdate from campaign where id = '70128000000BAgd')
Iam trying retrieve the records with whoid in campaignmember and createddate of activity greater than camapaign StartDate but iam getting error .can some one advise what is the error here in this query.
Thanks
Kiran
I need a help in SOQL ,
Select id,subject,CreatedDate__c from task where whoid in (select leadId from CampaignMember where Campaign.id = '70128000000BAgd') and task.CreatedDate__c > (select startdate from campaign where id = '70128000000BAgd')
Iam trying retrieve the records with whoid in campaignmember and createddate of activity greater than camapaign StartDate but iam getting error .can some one advise what is the error here in this query.
Thanks
Kiran
-
- lokesh reddy 7
- September 30, 2016
- Like
- 0
- Continue reading or reply
can we add more fields in opportunity split standard page
Hi,
Can we add more fields in edit opportunity split page.please advise .
Can we add more fields in edit opportunity split page.please advise .
-
- lokesh reddy 7
- September 15, 2016
- Like
- 0
- Continue reading or reply
can we query opportunity team members from opportunity trigger
Hi ,
I Have one trigger on opportunity on before insert ,before update .In that trigger iam changing owner id on update.Here i need to query the old opportunity team members related to the old owner.But iam not getting opportunity team members.Can any one advise on this.
Regards,
lokesh
I Have one trigger on opportunity on before insert ,before update .In that trigger iam changing owner id on update.Here i need to query the old opportunity team members related to the old owner.But iam not getting opportunity team members.Can any one advise on this.
Regards,
lokesh
-
- lokesh reddy 7
- August 31, 2016
- Like
- 0
- Continue reading or reply
Internal Server Error has occured
Hi I am getting the below error while changing the account owner.
An internal server error has occurred
An error has occurred while processing your request. The salesforce.com support team has been notified of the problem. If you believe you have additional information that may be of help in reproducing or correcting the error, please contact Salesforce Support. Please indicate the URL of the page you were requesting, any error id shown on this page as well as any other related information. We apologize for the inconvenience.
Thank you again for your patience and assistance. And thanks for using salesforce.com!
Error ID: 2103881413-73679 (1588352796)
Please advise.
Thanks,
Lokesh
An internal server error has occurred
An error has occurred while processing your request. The salesforce.com support team has been notified of the problem. If you believe you have additional information that may be of help in reproducing or correcting the error, please contact Salesforce Support. Please indicate the URL of the page you were requesting, any error id shown on this page as well as any other related information. We apologize for the inconvenience.
Thank you again for your patience and assistance. And thanks for using salesforce.com!
Error ID: 2103881413-73679 (1588352796)
Please advise.
Thanks,
Lokesh
-
- lokesh reddy 7
- August 30, 2016
- Like
- 0
- Continue reading or reply
Need help in select query
Hi ,
Iam trying query all the engagement products except except one product with name contains 'Exclude Producr'
lstEngageProduct = [Select Id, CurrencyIsoCode, Name, FTE__c,Available_FTE_s__c, Product__r.Name, Quantity__c, Total_Price__c, Engagement__c from Engagement_Product__c where Engagement__c =: ApexPages.currentPage().getParameters().get('Id') AND NOT((Product__r.Name).contains('Exclude Producr')) ];
But iam getting error ,Can some one help me on this to exclude the product.
Thanks
Lokesh
Iam trying query all the engagement products except except one product with name contains 'Exclude Producr'
lstEngageProduct = [Select Id, CurrencyIsoCode, Name, FTE__c,Available_FTE_s__c, Product__r.Name, Quantity__c, Total_Price__c, Engagement__c from Engagement_Product__c where Engagement__c =: ApexPages.currentPage().getParameters().get('Id') AND NOT((Product__r.Name).contains('Exclude Producr')) ];
But iam getting error ,Can some one help me on this to exclude the product.
Thanks
Lokesh
-
- lokesh reddy 7
- August 11, 2016
- Like
- 0
- Continue reading or reply
Error :execution of after update :converted date in future
Hi ,
I am getting the error while updating the contact : it is giving an error execution of after update causing exception :converted date in future .can some one advise on this it will be helpful.
Regards,
lokesh
I am getting the error while updating the contact : it is giving an error execution of after update causing exception :converted date in future .can some one advise on this it will be helpful.
Regards,
lokesh
-
- lokesh reddy 7
- August 08, 2016
- Like
- 0
- Continue reading or reply
how to get the user details from lead object
Hi ,
How to get the user field details from the lead object .
Thanks
lokesh
-
- lokesh reddy 7
- July 21, 2016
- Like
- 0
- Continue reading or reply
compare users in on button click
Hi,
I am Creating custom button in salesforce when i click on the button it will execute java script here i need to check the current logged user .and need to add users to one list and compare the user with users in the list if the logged in user is present in the list then redirect to page1 .else give an error message.
Can someone tell me how to write javascript code to achieve this?
thanks
lokesh
I am Creating custom button in salesforce when i click on the button it will execute java script here i need to check the current logged user .and need to add users to one list and compare the user with users in the list if the logged in user is present in the list then redirect to page1 .else give an error message.
Can someone tell me how to write javascript code to achieve this?
thanks
lokesh
-
- lokesh reddy 7
- July 18, 2016
- Like
- 0
- Continue reading or reply
How to start with visualforce learning
Hi ,
Can someone suggest the best way to learn visualforce pages development with examples.
thanks,
kiran
Can someone suggest the best way to learn visualforce pages development with examples.
thanks,
kiran
-
- lokesh reddy 7
- July 18, 2016
- Like
- 0
- Continue reading or reply
Can we achevie this in salesforce
I have one requirement like this:
When we are creating an opportunity by clicking new button :i
1:It should redirect to a new page which will have the two fields one is for selecting the record type X or Y or Z and another is for selecting type of process : A or B or C.
2:Now if select record type X and process A and click on continue it should redirect to page layout as per record type and in that page layout it should 3 fields depending on process selection A or B or C.
Can we acheive this ?please advise
Thanks
lokesh
When we are creating an opportunity by clicking new button :i
1:It should redirect to a new page which will have the two fields one is for selecting the record type X or Y or Z and another is for selecting type of process : A or B or C.
2:Now if select record type X and process A and click on continue it should redirect to page layout as per record type and in that page layout it should 3 fields depending on process selection A or B or C.
Can we acheive this ?please advise
Thanks
lokesh
-
- lokesh reddy 7
- July 15, 2016
- Like
- 0
- Continue reading or reply
Help in SOQL Query
Hi,
I need a help in SOQL ,
Select id,subject,CreatedDate__c from task where whoid in (select leadId from CampaignMember where Campaign.id = '70128000000BAgd') and task.CreatedDate__c > (select startdate from campaign where id = '70128000000BAgd')
Iam trying retrieve the records with whoid in campaignmember and createddate of activity greater than camapaign StartDate but iam getting error .can some one advise what is the error here in this query.
Thanks
Kiran
I need a help in SOQL ,
Select id,subject,CreatedDate__c from task where whoid in (select leadId from CampaignMember where Campaign.id = '70128000000BAgd') and task.CreatedDate__c > (select startdate from campaign where id = '70128000000BAgd')
Iam trying retrieve the records with whoid in campaignmember and createddate of activity greater than camapaign StartDate but iam getting error .can some one advise what is the error here in this query.
Thanks
Kiran
- lokesh reddy 7
- September 30, 2016
- Like
- 0
- Continue reading or reply
can we query opportunity team members from opportunity trigger
Hi ,
I Have one trigger on opportunity on before insert ,before update .In that trigger iam changing owner id on update.Here i need to query the old opportunity team members related to the old owner.But iam not getting opportunity team members.Can any one advise on this.
Regards,
lokesh
I Have one trigger on opportunity on before insert ,before update .In that trigger iam changing owner id on update.Here i need to query the old opportunity team members related to the old owner.But iam not getting opportunity team members.Can any one advise on this.
Regards,
lokesh
- lokesh reddy 7
- August 31, 2016
- Like
- 0
- Continue reading or reply
how to get the user details from lead object
Hi ,
How to get the user field details from the lead object .
Thanks
lokesh
- lokesh reddy 7
- July 21, 2016
- Like
- 0
- Continue reading or reply