• gregj777
  • NEWBIE
  • 105 Points
  • Member since 2008

  • Chatter
    Feed
  • 4
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 31
    Questions
  • 54
    Replies

Can anyone help me with this frustrating issue. I am developing an application where I want to relate a number of opportunities with a contract and have the abilitiy to total sum the opportunity amounts and count the opportunities against this contract. I can't believe this can't be done. Am I the first person that's tried to do something like this?

I am trying to setup a validation rule but when the picklist  field is populated with ---None--- it will allow to save. See below. What do you need to add to the formula so you can save it.

 

Rule NameError_message_on_SE_Pkg_typeActiveChecked
Error Condition FormulaOR(ISPICKVAL(Type, "KSYMP Pkg - Single Event"), 
ISPICKVAL( Type,"Road Show Pkg - Single Event"), 
ISPICKVAL(Event_Package__c, "2012 KSYMP Custom"), 
ISPICKVAL(Event_Package__c, "2012 KSYMP Gold 30"), 
ISPICKVAL(Event_Package__c,"2012 KSYMP Partner 70"), 
ISPICKVAL(Event_Package__c,"2012 KSYMP Platinum 50"), 
ISPICKVAL(Event_Package__c,"2012 KSYMP Silver 15"), 
ISPICKVAL(Event_Package__c,"2012 KSYMP Single"), 
ISPICKVAL(Event_Package__c,"2012 Road Show Custom"), 
ISPICKVAL(Event_Package__c,"2012 Road Show Gold 15"), 
ISPICKVAL(Event_Package__c,"2012 Road Show Partner 35"), 
ISPICKVAL(Event_Package__c,"2012 Road Show Platinum 25"), 
ISPICKVAL(Event_Package__c,"2012 Road Show Single"), 
NOT(ISPICKVAL(Event_Package__c,"")))
Error MessageNot required on Package Single Event type.Error LocationEvent Package
DescriptionThis validates that field is not required on Single Event Package types.
  

Can someone help me with a simple apex trigger on a custom object? I need to be able to sum up the Total price on a list of opportunity products in a opportunity. Here's a scenario:

 

Opportunity {Customer A} Package 10 Events(Products)

Opp Product - Event 1

Opp Product - Event 2...and so on

 

Opportunity {Customer B} Package 10 Events(Products)

Opp Product - Event 1

Opp Product - Event 2...and so on

 

Event (custom object)

Event Summary = Event 1 + Event 2

 

Ideally I would like to manage this under Campaign object but that doesn't seem to work.

 

 

 

I am trying to figure out a way to to populate the Quote Name automatically with the Opportunity Name. So when a user wants to create a Quote for a opportunity it will populate with the OppName. 

 

Is this possible?

I am trying to roll-up the amounts from a number of opportunities into a TOTAL_AMOUNT under the CONTRACT object. See below:

 

Scenario One:

OPP1 = $1

OPP2 = $2

OPP3 = $3

OPP4 = $4

OPP4 = $5

CREATE CONTRACT and sum Total_OPP_AMOUNT = $15 

 

Scenario Two:

Single Opportunity 

OPP1 = 1

No Contract required.

 

I am trying to create a detail button using a standard field. The one I created was called Create Opportunity under the Campaign object. Now I am trying to create one on the Opportunity object called Create Contract. I'm looking for the proper syntex for Contract. The code looks like this the one below, where &con = contract? I figured the ones out for opportunity (&opp) and cases (&cas). There some to be no list anywhere on the help site.

 

https://cs10.salesforce.com/800/e?retURL=%2F800%2Fo
&cas1=1

I am trying to create a custom detail page button called Create Opportunity on Campaign object. So when the user clicks it opens the opportunity object with the linked Campaign name. 

Both the related Opportunity and Campaign objects are in the related list. I know if the user scroll down in Campagns they could click on the NEW in the Oppportunity sections and that will work the same way. I just want to make it convenient for them to be able to have the button at the top.

This is what currently have but it doesn't seem to be pulling the Campaign Name.

 

https://cs10.salesforce.com/006/e?retURL=%2F006%2Fo
var records = {!GETRECORDIDS( $ObjectType.Campaign)}

 

Can some help me with this?

 

Is it possible to turn-off email notifications for leads assigned to a specifice user. I have done everything possible to deactivate email in their personal setting but it's not work.

 

I need help with how to create a formula to roll-up the total amounts from a group of opportunities and sum the amount into the Contract object. Currently, I have the contract referenced in the opportunity and a related list in the Contract layout. I thought this would be easy by just creating a custom field under Contract and used the Roll-up summary field type. But this does not allow me to do that because its not considered the master in the master-detail relationship.

I think my only option is Apex Code. Can anyone help me with that?

 

Any help asap would be greatly appreciated.