• SeaTec
  • NEWBIE
  • 0 Points
  • Member since 2009

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 11
    Questions
  • 36
    Replies

HI, I have the below formula field in the opportunity object.  It takes the closed date value from opportunity and runs the calc. It should result in either Phase1,2,3 or overdue dpeending on the date. However, as of right no i get #error# as the field value while the closed date value is 5/31/2012.

 

What am i doing wrong here?

 

THanks

IF(AND(MONTH(CloseDate) = MONTH(Today()), Year(CloseDate)=Year(Today())), "Phase3", IF(AND(CloseDate >=  DATEVALUE("2012-05-01"), CloseDate  <=  DATEVALUE("2012-06-31")) , "Phase2", IF( CloseDate-Today() > 120, "Phase1", "OVERDUE")))

Here is the scenario.  We have a field called Lease Number in the contract object.  I also have a custom object called buyout which i populate with apex data loader with fresh data on a monthly basis. The Buyout object also has a lease number field.  What needs to happen is that either by clicking on the lease number field in the contract object or by clicking a custom button or link on the contract object the corresponding record in the buyout object needs to open. Whats the easiest way of accomplishing this.  Not versed in developing s-controls.

 

Thank you

 

Anthony

I have a new native app on the app exchange and a professional edition customer tried to install it. They got a bunch of errors like this:

 

Missing feature

Apex Classes

Installing this package requires the following feature and its associated permissions: Apex Classes

 

 

My app uses a few custom classes, objects, and a visualforce page. I was told that even a pro edition can install an app that uses custom apex classes. 

 

Does anyone have ideas of how to dig into this further?

 

Thanks!