• k sfdc
  • NEWBIE
  • 9 Points
  • Member since 2014

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 26
    Questions
  • 36
    Replies
Hi,
 Click a button How to call  a new popup window  and in the popup browser window, how to disable the address bar ?

help me...
Hi,
       I have one  Cancel__c(checkbox) on  custom object.Whenever this checkbox gets checked, a trigger should fire and update the Discount percentage field to 70% How?

please help me.....
How to get System MAC Address Using Apex in salesforce?

please help me................
Hi,
       trigger Trg_onContact on Contact (before insert, before update) {

List<ID> accountIds=new List<ID>();

for(Contact con:Trigger.New)
{
  if(con.Email != null && con.AccountId !=null)
  {
   accountIds.add(con.AccountId);
  }
}
List<Contact> contactList=[SELECT Email FROM Contact WHERE Id IN : accountIds];
List<Account> accountList=[SELECT Name,Email__C FROM Account WHERE Id IN :accountIds];

for(Integer i=0; i < accountList.size(); i++)
{
  String Email = ''+ contactList[0].get('Email');
  accountList[i].Email__C=Email;
 
}

update accountlist;

System.debug('***accountlist****'+accountlist);

}

please help me...........
Hi,
          how to display account contact and opportunity records as hierarchy using apex in salesforce like below

Account
     ----> Opportunity
            ----- >Contact

 

 

Position Name    :         Senior Software Engineer - Salesforce.com

 

Experience           :         Must have 1 to 2 years of experience in Salesforce.com Projects.

                                           Must be well versed with Apex Programming/ Visual Force/  Apex Triggers.

                                           Must have experience in using webservices.

                                           Must have very good skills in jquery and PHP programming.

 

                                           Must have very good written and oral communication skills. 

 

Job Location         :        Chennai, India.

 

 

Apply with your latest resume.

 

Hello,

 

I have the following line of code in my VF page:

 

            <apex:commandButton value="Generate PDF" action="{!URLFOR($Page.AcctPlanPDF,null,[Id=Account_Plan__c.id])}" style="background:#99CCFF; font-weight=bold"/>

I would like this to open a pop-up window to the AcctPlanPDF page when the button is clicked.  Does anyone know how to accomplish this while maintaining the commandButton?  Thanks.