• force novice
  • NEWBIE
  • 135 Points
  • Member since 2013

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 27
    Questions
  • 5
    Replies
The batch apex limit is 50 million records..if i want to retrieve more than 50 million records what i have to do?
How can i restrict a Quote template to particular users or profiles ?
How to translate custom fields to other languages.
What is the use of Person Acccounts?
How to do this task

copy the primary contact email in contact role to corresponding Opportunity
How many email alerts can be created on a single workflow rule?
can anyone explain email services with a simple example?
What is the difference between Callouts & Outbound Messages?
In a Master Detail Relationship, when a parent record gets deleted the child record also gets deleted.The deleted parent record is seen in
Recycle Bin but the child record cannot be seen in Recycle Bin why?
How can we restrict a user to see a record?
If you write a apex class and call it in the trigger, will you be able to avoid the governor limits?
If a case is attached to the account, you are the case owner , will you be able to see the account?
Can a profile have multiple Record types?
When we will use before & after triggers?
I have an object where OWD is private, if i want to give access to the manager above me(software engineer) ,No roles are specified... other than sharing rule, how can we achieve?
I have an object & client must access that object then which OWD permission will you give on that particular object?
There are parent & child objects which have lookup relation b/w them ,if i want to get a field from parent by means of generating a report on child object, which report type i have to use?
what is a recursive trigger?Please explain me with an example...

Give me an example where we can make use of custom settings Instead of Custom Objects?

What is the difference between Custom Settings & Custom Objects?

In a Master Detail Relationship, when a parent record gets deleted the child record also gets deleted.The deleted parent record is seen in
Recycle Bin but the child record cannot be seen in Recycle Bin why?
In a Master Detail Relationship, when a parent record gets deleted the child record also gets deleted.The deleted parent record is seen in
Recycle Bin but the child record cannot be seen in Recycle Bin why?

Hi,

 

May I know the Top 10 useful Salesforce Sites/Blogs to follow  please?

 

 

Thanks in advance.

I have written the trigger like this..plz  correct me

 

trigger proddeltrg on Opportunity (after delete) {
    Set<Id> OppIds = new Set<Id>();
    List<Product2>  productsToDelete = new List<Product2>();
    for(Opportunity opp : trigger.Old) {
      oppIds.add(opp.Id);
    }
    productsToDelete = [SELECT Id,Name FROM product2 ];
    delete productsToDelete;
}

Hi Friends,

 

I am trying to do the following query but I am not able to save it and I am getting an error like System.Today() Is not available.

 

Stats__c[] Stats = [Select Id,Mode_of_Travel__c,School__c FROM Stats__c Where CreatedDate = System.Today() ];

 

Please help me to figure out the problem here.

 

Hi

 when i save the test class i got error name:java.lang.reflect.InvocationTargetException . already i file the case..how to overcome thi issue. please help me.

  • November 09, 2013
  • Like
  • 0