• Surabhi Agrawal
  • NEWBIE
  • 25 Points
  • Member since 2014
  • Cloudaction

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 7
    Replies
Hi,

I have written a trigger in which fields are updated based on previous record.  In the test class thus i need to insert 2 records with a delay in between them. So that the 1st record is created and based on that the next record should be updated.

Thanks in advance!
Hi Developers,

I need to give sequence number to queue mebers when queue is created on particular object or whenever memeber are added/deleted. I am trying to create assignement based on thoese numbers.
 I want the queue related list on user object to show the this number along with queue name.

Please help in this matter. Thank you. 



Hi,

I have written a trigger in which fields are updated based on previous record.  In the test class thus i need to insert 2 records with a delay in between them. So that the 1st record is created and based on that the next record should be updated.

Thanks in advance!

Brief Background to situation:
This is my first post...hopefully this is the correct place for this question. Long story aside, our group (small) created a Contact Custom text field for email "Preferred_Email__c" After installing MailChimp we realized that the Contact Standard text field of "Email" is the default for field mapping to create mailing lists.  Therefore, we now have over 1000 volunteers that we can't access immediately as their "Email" field is blank and everyone's emails are under "Preferred_Email__c"

I tried to create a workflow that essentially stated:
If "Email" is null and "Preferred_Email_c" is not null, then the text from "Preferred_Email_c" will autopopulate into the "Email" field.  

Note:
I don't want to override any text that is in the "Email." (we have a few...)
And we need to be able to override the Workflow Rule if we wish to enter different text into the "Email" field at a later date.

I have some very basic formula knowledge but couldn't figure out a formula that in my mind seems it should be rather simple...

Any help is appreciated.

Hi,
 

How can I make a custom field only required for U.S. user creating campaigns using a validation rule? The custom field is textarea (string - max 255 characters) field. I need to make it required for U.S. users creating campaigns and NOT required for NON-US users creating campaign.

The following pieces of code both below fail

 

AND(
    ISPICKVAL(Type, "Webinar"),
    ISBLANK(CustomField__c),
    ISPICKVAL($User.Country__c, "United States")
)

AND(
    ISPICKVAL(Type, "Webinar"),
    ISNULL(CustomField__c),
    ISPICKVAL($User.Country__c, "United States")
)
Hi Developers,

I need to give sequence number to queue mebers when queue is created on particular object or whenever memeber are added/deleted. I am trying to create assignement based on thoese numbers.
 I want the queue related list on user object to show the this number along with queue name.

Please help in this matter. Thank you.