• fsiddiq3
  • NEWBIE
  • 25 Points
  • Member since 2008

  • Chatter
    Feed
  • 1
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 17
    Questions
  • 15
    Replies

Does anyone know how to delete apex classes and triggers out of production? I logged into the sandbox, deleted the apex classes and triggers and then tried to use IDE to delete the same classes and triggers but I only see the option to add or overwrite, not delete. Can anyone assist me with this? Any help would be greatly appreciated, thanks!

 

Fahad

Hello everyone,

 

  I am trying to add a simple date picker to my existing visualforce page and/or apex code. Our resource set up a nice grid using apex code and visualforce page, and unfortunately he is no longer around. I am not too familiar with using the code/page so any help would be appreciated! He created a apex code, page, and mycontroller extension. I want to simply add a datepicker so when you click into date field a datepicker pops up. Please let me know how this is done and whether you need the code or the page. I can copy and paste into here. Thanks very much!!

 

Fahd

Hello,

 

   I have just downloaded Eclipse 3.5 SDK. Can someone please guide me to how to connect this to my sandbox? I am having difficulty finding any instructions on this, any help would be greatly appreciated, thanks!

 

 

 

 

Fahad

Hello,

 

   I am trying to create a workflow with a field update that basically combines the month of the current date and the year of the current date. I have the field set up as a number, and this is the formula I am using. For some reason I am getting an error message. Below is the formula, what am I doing wrong? Any help is appreciated, thanks!

 

MONTH(TODAY()) & "" & YEAR(TODAY())

I have created a workflow that checks to see whether a date is less than today, if it is then an email is generated to the owner. I also have set up a time based workflow in addition to the other workflow that sends an email to the owner 24 hours prior to that date.

 

I created a dummy record and made the date equal to tommorow, thinking I would get an email saying this was 24 hour prior to that date, but I haven't received any email yet. What could possibly be causing this error?

 

Any thoughts please help! Thanks

I have a custom object, named obj,

and it has 10000 reocrds in it.

when I go to Data Management - Mass Delete Records

Mass Delete Obj is not there. I checked the profile settings, I have permission to delete Obj record.

 

can anyone give a hint?

Hello,

 

  I am trying to create a field update for 2 fields in an object. One field is called status and is a picklist and the other field is called probability which is simply a percent field. I am trying to create a field update that says when status is changed to "completed", then make the probability equal to 100. Here is the formula I created below:

 

IF (ISPICKVAL( Status__c ,"Completed") , Probability__c = 100)

 

I am getting this error message: Error: Incorrect number of parameters for function IF(). Expected 3, received 2

 

Can somebody help me?