• KULWANT SINGH
  • NEWBIE
  • 20 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 8
    Questions
  • 5
    Replies
public with sharing class MtachedAccountV1Controller {


    public lead LD {get;set;}
    public account acc {get;set;}
    public list<account> alist {get;set;}
    public String currentRecordId {get;set;}
    public list<account> dupelist {get;set;}
    public ApexPages.StandardController controller {get;set;}
    
    
    
    public MtachedAccountV1Controller(ApexPages.StandardController controller) {
    
  try
  {
      ld= new lead();
      dupelist = new list<account> ();
      this.controller = controller;
      this.acc = (Account)controller.getRecord();
      currentRecordId = controller.getId();
     
                                                  System.debug('id is..'+currentRecordId );
     alist = [select id,name from account where name =: ld.name];
          
   }
              Catch (exception e)
                     {
                                SYstem.debug(e);
                     }
 }

}
hi,,i want to append picklist value to the name field of custom object....like custom obj name "abcdef" and picklist value is '10' and i want  to show it like as below using workflow rule
'abcdef 10'.....how it can be done??????
how i can set global ip range for my org....
i want to create a trigger which works as below...
.if i select an opportunitycontactrole == Business User ,,then value of three custom fields phone,con name, con email on opportunity is automatically mapped to contact name,email,phone whose opportunitycontactrole is Business User after updating the role to businesws user........
i want to create a visualforce page which shows record acc to the letter type in search box, like as we saw in google search records related to letter typed are shown as a list below it. how it can be done 
hi, i want to create a trigger on quotes that when i add new product to opportunity then it automatically added to the quote lineitem list......how it can be possible
public with sharing class MtachedAccountV1Controller {


    public lead LD {get;set;}
    public account acc {get;set;}
    public list<account> alist {get;set;}
    public String currentRecordId {get;set;}
    public list<account> dupelist {get;set;}
    public ApexPages.StandardController controller {get;set;}
    
    
    
    public MtachedAccountV1Controller(ApexPages.StandardController controller) {
    
  try
  {
      ld= new lead();
      dupelist = new list<account> ();
      this.controller = controller;
      this.acc = (Account)controller.getRecord();
      currentRecordId = controller.getId();
     
                                                  System.debug('id is..'+currentRecordId );
     alist = [select id,name from account where name =: ld.name];
          
   }
              Catch (exception e)
                     {
                                SYstem.debug(e);
                     }
 }

}
hi,,i want to append picklist value to the name field of custom object....like custom obj name "abcdef" and picklist value is '10' and i want  to show it like as below using workflow rule
'abcdef 10'.....how it can be done??????