-
ChatterFeed
-
0Best Answers
-
0Likes Received
-
0Likes Given
-
9Questions
-
4Replies
Send List Emails on Cases
Hi,
I have a requirememnt to send an email to multiple cases at a time from list views . is there a way to create a button under listviews and select multiple Cases and send an Email?
This functionality is available for Contacts and Leads, but i am unable to see "Send List Emails" button on Case Object.
Can anyone please help me on this functionality.
Thanks,
Achyuth.
I have a requirememnt to send an email to multiple cases at a time from list views . is there a way to create a button under listviews and select multiple Cases and send an Email?
This functionality is available for Contacts and Leads, but i am unable to see "Send List Emails" button on Case Object.
Can anyone please help me on this functionality.
Thanks,
Achyuth.
- Achyuth
- April 05, 2021
- Like
- 0
- Continue reading or reply
Create a Case in Salesforce when Out of Office is set in gmail
Hi All,
How to Create a Case when an outbound email is sent from Salesforce to User's gmail account, and if the User is set as 'Out of Office' in Gmail settings(Subject/description with Auto-reply message)!!
Do we have this functionality in Salesforce, Can anyone please help me in building this functionality?
Note: i already enabled Out of Office feature in Salesforce under chatter settings, but that is a different feature might be.
Thanks in Advance!!
How to Create a Case when an outbound email is sent from Salesforce to User's gmail account, and if the User is set as 'Out of Office' in Gmail settings(Subject/description with Auto-reply message)!!
Do we have this functionality in Salesforce, Can anyone please help me in building this functionality?
Note: i already enabled Out of Office feature in Salesforce under chatter settings, but that is a different feature might be.
Thanks in Advance!!
- Achyuth
- January 11, 2021
- Like
- 0
- Continue reading or reply
Report timeout issue in salesforce?
When running certain large reports, the report will often time out after a period of time, giving a "Time limit exceeded" error .
Few points about report as below:
1. fields used is around 140 in the reports
2. there is a Formula field used that is used in the reports Filter....is this the one which is making my report to "Timeout" ?
if yes, can any one please help me with the possible solution on how to make my report run fast .......
The functionality/business requirement we used in the Formula field which is used in the report filters is needed .... So, the functionality should not be disturbed and the report should run fast .
This action helps me alot...
Thanks in Advance!!
Regards,
Chinna
Few points about report as below:
1. fields used is around 140 in the reports
2. there is a Formula field used that is used in the reports Filter....is this the one which is making my report to "Timeout" ?
if yes, can any one please help me with the possible solution on how to make my report run fast .......
The functionality/business requirement we used in the Formula field which is used in the report filters is needed .... So, the functionality should not be disturbed and the report should run fast .
This action helps me alot...
Thanks in Advance!!
Regards,
Chinna
- Achyuth
- February 25, 2020
- Like
- 0
- Continue reading or reply
how to clear the input text field when i clicked on the X
Hi All,
I used ui:inputText tag in my lightning component,
How to place the 'x' and how to clear the input text when i clicked on the 'x' symbol,
can anyone help with the example one !!
Thanks,
Chinna..
I used ui:inputText tag in my lightning component,
How to place the 'x' and how to clear the input text when i clicked on the 'x' symbol,
can anyone help with the example one !!
Thanks,
Chinna..
- Achyuth
- September 07, 2018
- Like
- 0
- Continue reading or reply
Lightning tab is not working properly where as lightning application is working properly
Hi All,
Can anyone help me on this !!
When i am executing my lightning component from application level, it is working properly where as from tab level , It is not working ?
i have implemented the needed interfaces for it(
Can anyone help me on this !!
When i am executing my lightning component from application level, it is working properly where as from tab level , It is not working ?
i have implemented the needed interfaces for it(
implements="forceCommunity:searchInterface,force:appHostable,flexipage:availableForAllPageTypes,force:lightningQuickAction,force:hasRecordId,force:lightningQuickAction,lightning:isUrlAddressable" controller ="CustomSearchController")
Can anyone help me on this ?
Thanks,
Chinna.
Can anyone help me on this ?
Thanks,
Chinna.
- Achyuth
- September 05, 2018
- Like
- 0
- Continue reading or reply
How to assign the field value to a variable in salesforce lightning controller and assign to a variable?
Hi All,
Can anyone help me on the below requirement please!!
I have an apex controller(with an argument passed), lightning component, lightning controller where as I can able to fetch the records by passing the value from the ui using lightning component...and is working fine
I need is : i want to assign the field value to a variable in salesforce lightning controller and assign to a variable ABC.
Please find the code:-
@auraEnabled
public static List<Account> getAccount(Id searchKey ){
List <Account> acclist = new List <Account>();
if(searchKey!= Null){
acclist = [SELECT Id, Name, Description from Account WHERE ID =: searchKey];
}
return acclist;
======================================================
getAccountList : function(component, event, helper) {
var action = component.get("c.getAccount");
var search = component.get("v.searchKey");
action.setParams({
"searchKey": search
});
action.setCallback(this, function(response){
var state = response.getState();
if(state == 'SUCCESS') {
var acclist = response.getReturnValue();
component.set("v.Accountlist",acclist);
var fieldValue = component.get("v.Accountlist");
======================================================
the entire query result is in fieldValue now... I want to assign only the name to another value...
Can anyone Help me on this !!
Thanks in Adv.!!
Chinna.
Can anyone help me on the below requirement please!!
I have an apex controller(with an argument passed), lightning component, lightning controller where as I can able to fetch the records by passing the value from the ui using lightning component...and is working fine
I need is : i want to assign the field value to a variable in salesforce lightning controller and assign to a variable ABC.
Please find the code:-
@auraEnabled
public static List<Account> getAccount(Id searchKey ){
List <Account> acclist = new List <Account>();
if(searchKey!= Null){
acclist = [SELECT Id, Name, Description from Account WHERE ID =: searchKey];
}
return acclist;
======================================================
getAccountList : function(component, event, helper) {
var action = component.get("c.getAccount");
var search = component.get("v.searchKey");
action.setParams({
"searchKey": search
});
action.setCallback(this, function(response){
var state = response.getState();
if(state == 'SUCCESS') {
var acclist = response.getReturnValue();
component.set("v.Accountlist",acclist);
var fieldValue = component.get("v.Accountlist");
console.log(JSON.stringify(fieldValue )); // i am getting all the values based on the query.
console.log('Value ::::::: '+fieldValue );
console.log('Value ::::::: '+fieldValue );
======================================================
the entire query result is in fieldValue now... I want to assign only the name to another value...
Can anyone Help me on this !!
Thanks in Adv.!!
Chinna.
- Achyuth
- September 03, 2018
- Like
- 0
- Continue reading or reply
Input field is returning the records without entering the value on submit and that is not the case?
Hi All,
i have an apex controller on account object and passing one parameter there.
In salesforce lightning, i used ui:inputtext for input field and is working fine,
the issue is:- when i am not entering any value and pressing on enter, it is giving the records.. that is the issue i have,,
i tried to make that field mandatory by putting required=true, but not working
Can anyone pls help on this!!
Thanks,
Chinna.
i have an apex controller on account object and passing one parameter there.
In salesforce lightning, i used ui:inputtext for input field and is working fine,
the issue is:- when i am not entering any value and pressing on enter, it is giving the records.. that is the issue i have,,
i tried to make that field mandatory by putting required=true, but not working
Can anyone pls help on this!!
Thanks,
Chinna.
- Achyuth
- August 29, 2018
- Like
- 0
- Continue reading or reply
How to come back from flow to Lightning Component when clicking on a Button (back)
Hi All,
I have called a flow from lightning component , and again i want to go back to the same lightning component by clicking on Back button.
Can anyone please help on this !!
Thanks,
Chinna.
I have called a flow from lightning component , and again i want to go back to the same lightning component by clicking on Back button.
Can anyone please help on this !!
Thanks,
Chinna.
- Achyuth
- August 20, 2018
- Like
- 0
- Continue reading or reply
How to call an apex class from visual flows ?
Hi All,
Can anyone help !!
How to call an apex class from Visual flows (@invocable method) ...
Can anyone help !!
How to call an apex class from Visual flows (@invocable method) ...
- Achyuth
- July 11, 2018
- Like
- 0
- Continue reading or reply
how to clear the input text field when i clicked on the X
Hi All,
I used ui:inputText tag in my lightning component,
How to place the 'x' and how to clear the input text when i clicked on the 'x' symbol,
can anyone help with the example one !!
Thanks,
Chinna..
I used ui:inputText tag in my lightning component,
How to place the 'x' and how to clear the input text when i clicked on the 'x' symbol,
can anyone help with the example one !!
Thanks,
Chinna..
- Achyuth
- September 07, 2018
- Like
- 0
- Continue reading or reply
How to assign the field value to a variable in salesforce lightning controller and assign to a variable?
Hi All,
Can anyone help me on the below requirement please!!
I have an apex controller(with an argument passed), lightning component, lightning controller where as I can able to fetch the records by passing the value from the ui using lightning component...and is working fine
I need is : i want to assign the field value to a variable in salesforce lightning controller and assign to a variable ABC.
Please find the code:-
@auraEnabled
public static List<Account> getAccount(Id searchKey ){
List <Account> acclist = new List <Account>();
if(searchKey!= Null){
acclist = [SELECT Id, Name, Description from Account WHERE ID =: searchKey];
}
return acclist;
======================================================
getAccountList : function(component, event, helper) {
var action = component.get("c.getAccount");
var search = component.get("v.searchKey");
action.setParams({
"searchKey": search
});
action.setCallback(this, function(response){
var state = response.getState();
if(state == 'SUCCESS') {
var acclist = response.getReturnValue();
component.set("v.Accountlist",acclist);
var fieldValue = component.get("v.Accountlist");
======================================================
the entire query result is in fieldValue now... I want to assign only the name to another value...
Can anyone Help me on this !!
Thanks in Adv.!!
Chinna.
Can anyone help me on the below requirement please!!
I have an apex controller(with an argument passed), lightning component, lightning controller where as I can able to fetch the records by passing the value from the ui using lightning component...and is working fine
I need is : i want to assign the field value to a variable in salesforce lightning controller and assign to a variable ABC.
Please find the code:-
@auraEnabled
public static List<Account> getAccount(Id searchKey ){
List <Account> acclist = new List <Account>();
if(searchKey!= Null){
acclist = [SELECT Id, Name, Description from Account WHERE ID =: searchKey];
}
return acclist;
======================================================
getAccountList : function(component, event, helper) {
var action = component.get("c.getAccount");
var search = component.get("v.searchKey");
action.setParams({
"searchKey": search
});
action.setCallback(this, function(response){
var state = response.getState();
if(state == 'SUCCESS') {
var acclist = response.getReturnValue();
component.set("v.Accountlist",acclist);
var fieldValue = component.get("v.Accountlist");
console.log(JSON.stringify(fieldValue )); // i am getting all the values based on the query.
console.log('Value ::::::: '+fieldValue );
console.log('Value ::::::: '+fieldValue );
======================================================
the entire query result is in fieldValue now... I want to assign only the name to another value...
Can anyone Help me on this !!
Thanks in Adv.!!
Chinna.
- Achyuth
- September 03, 2018
- Like
- 0
- Continue reading or reply
Input field is returning the records without entering the value on submit and that is not the case?
Hi All,
i have an apex controller on account object and passing one parameter there.
In salesforce lightning, i used ui:inputtext for input field and is working fine,
the issue is:- when i am not entering any value and pressing on enter, it is giving the records.. that is the issue i have,,
i tried to make that field mandatory by putting required=true, but not working
Can anyone pls help on this!!
Thanks,
Chinna.
i have an apex controller on account object and passing one parameter there.
In salesforce lightning, i used ui:inputtext for input field and is working fine,
the issue is:- when i am not entering any value and pressing on enter, it is giving the records.. that is the issue i have,,
i tried to make that field mandatory by putting required=true, but not working
Can anyone pls help on this!!
Thanks,
Chinna.
- Achyuth
- August 29, 2018
- Like
- 0
- Continue reading or reply
How to call an apex class from visual flows ?
Hi All,
Can anyone help !!
How to call an apex class from Visual flows (@invocable method) ...
Can anyone help !!
How to call an apex class from Visual flows (@invocable method) ...
- Achyuth
- July 11, 2018
- Like
- 0
- Continue reading or reply