• self learning 8
  • NEWBIE
  • 10 Points
  • Member since 2019

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 4
    Questions
  • 5
    Replies
On Edit of my "Home Custom Link" i am trying to diplay one VF page like shown below.
/apex/V_Eligible
V_Eligile page contains one picklist field.
If I click on the like, from my picklist I dont want to display one pick list value.
How to achieve this requirement, Please help me on this 
Custom clone button should copy only few opportunity field values with all products in salesforce classic , please help on this 
now following code displaying like a,b,c,d
But I want to display like a,b,c and d

Code is : 

String dear = 'Hello';
        
        boolean first = true;
        
        for(Account a : accs)
        {
            if(first)
            {
                dear += a.Salutation+ ' ' + a.lastname;
                first = false;
                continue;
            }
        
           // dear += ' and ' +  a.Salutation+ ' ' + a.lastname;
            dear += ' , ' +  a.Salutation+ ' ' + a.lastname;
        }
        dear += ',';
        
        Opp.customer__c = dear; 
        update opp;        
I have three vf pages , 3rd page i want to display some fields from vf1 and some from vf2.
If i do any modification in vf3 relatedto vf1 and 2 the changes should appear in both vf1 and vf2, i am using custom controller for all pages, please let me know if any one know the answer
On Edit of my "Home Custom Link" i am trying to diplay one VF page like shown below.
/apex/V_Eligible
V_Eligile page contains one picklist field.
If I click on the like, from my picklist I dont want to display one pick list value.
How to achieve this requirement, Please help me on this 
now following code displaying like a,b,c,d
But I want to display like a,b,c and d

Code is : 

String dear = 'Hello';
        
        boolean first = true;
        
        for(Account a : accs)
        {
            if(first)
            {
                dear += a.Salutation+ ' ' + a.lastname;
                first = false;
                continue;
            }
        
           // dear += ' and ' +  a.Salutation+ ' ' + a.lastname;
            dear += ' , ' +  a.Salutation+ ' ' + a.lastname;
        }
        dear += ',';
        
        Opp.customer__c = dear; 
        update opp;