• Achyuth
  • NEWBIE
  • 20 Points
  • Member since 2018

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 9
    Questions
  • 4
    Replies
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.
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!!

 
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
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..
 
  • September 07, 2018
  • Like
  • 0
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(
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.
  • September 05, 2018
  • Like
  • 0
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");                 
       console.log(JSON.stringify(fieldValue ));  // i am getting all the values based on the query.
               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.
  • September 03, 2018
  • Like
  • 0
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.
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.
Hi All,
Can anyone help !!
How to call an apex class from Visual flows (@invocable method) ... 
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..
 
  • September 07, 2018
  • Like
  • 0
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");                 
       console.log(JSON.stringify(fieldValue ));  // i am getting all the values based on the query.
               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.
  • September 03, 2018
  • Like
  • 0
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.
Hi All,
Can anyone help !!
How to call an apex class from Visual flows (@invocable method) ...