• moni sha
  • NEWBIE
  • 0 Points
  • Member since 2021

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 1
    Replies
Hi All,

Can you please help me in achieving the below requirement using Lightning web component.

To show a custom Label as Link and when clicked it has to show value from another custom Label 

Thanks,
Keerthana.
Hi Team,

I need to create a Link on my Salesforce Homepage which on clicking should show a Phone Number(+412255678) beside it .

Could you please let me know how can I acheive this in Salesforce Classic Homepage?

Thanks
hi team,

I have below line of code but receiving below error when saving

Expecting '}' but was: 'if' at line 13 column 6

Code

Set<String>CCset = new Set<String>();
Messaging.SingleEmailMessage mail = new Messaging.SingleEmailMessage();
 Enhancements__c AZMEE = Enhancements__c.getOrgDefaults();
    List<String> emailcc = new List <String>{AZMEE.Meeting_cc__c};
    
     if(emailcc.size() > 0)-----> error line 
     {
          CCset.add(emailcc);
               
               }
 
Could you please help on resolving the issue         
Hi All,

Can you please help me in achieving the below requirement using Lightning web component.

To show a custom Label as Link and when clicked it has to show value from another custom Label 

Thanks,
Keerthana.
hi team,

I have below line of code but receiving below error when saving

Expecting '}' but was: 'if' at line 13 column 6

Code

Set<String>CCset = new Set<String>();
Messaging.SingleEmailMessage mail = new Messaging.SingleEmailMessage();
 Enhancements__c AZMEE = Enhancements__c.getOrgDefaults();
    List<String> emailcc = new List <String>{AZMEE.Meeting_cc__c};
    
     if(emailcc.size() > 0)-----> error line 
     {
          CCset.add(emailcc);
               
               }
 
Could you please help on resolving the issue