• AmWe
  • NEWBIE
  • 10 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 9
    Questions
  • 10
    Replies
We have a object with 200,000 records in it and each contains a attached file.
We need to download attachements of 500 identified records.
What is the best approach for this ?
  • September 26, 2016
  • Like
  • 0
I'm getting a timout error while trying to clear code coverage results. results seems to be cleared. but when checked overal coverage (which should be zero) its same as before
  • December 29, 2016
  • Like
  • 0
Hi All,
Type 1 : for(Account ac : [SELECT Id FROM Account LIMIT 100])

Type 2 :List<Account> acs = [SELECT Id FROM Account LIMIT 100];
        for(Account ac : acs)
        
Type 3 :List<Account> acs = [SELECT Id FROM Account LIMIT 100];
        for(Integer i=0,j=acs.size();i<j;i++)    

From above 3 looping methods we identified that type 3 is bit more faster than type 2 and Type 1 is very much slower compared to 2 and 3.
But type 1 consumes very little heap size compared to 2 and 3.
What is the reccomended method to use? Salesforce recormends to use type 1 since it consumes less heap. if we didn't use that, will it be considered in salesforce code reviews
  • October 14, 2015
  • Like
  • 0
Hi All,
I have installed the force.com ide in eclipsed. But when opened force.com perspectint is not shown. cant create even a project.
But force.com ide and force.com debugger is shown as installed in installations details
Please help on this
  • July 28, 2015
  • Like
  • 0
Currenlty we have an app deployed in the production org. we want to install same app in the same org as a managed package. can we do that while keeping existing data
  • May 21, 2015
  • Like
  • 0
Is it possible to track user wise page access using google analytics. 
for example we need to track which users accessed how many times  in a given period to a specific page.
 
  • April 17, 2015
  • Like
  • 0
Hi All,

How to avoid  UNABLE_TO_LOCK_ROW excepion in an package upload.

Thanks
  • April 05, 2015
  • Like
  • 0
Developer console is not showing the code coverages properly. for a class in eclipse coverage is shown is 72%. but in developer console it show as 18%. but show only 2 test mthods out of 15. i can not find any way to figure out which line are not covered. please let me know there is any other 3rd party tool to view code coverage properly
  • March 27, 2015
  • Like
  • 0
Currenlty we have an app deployed in the production org. we want to install same app in the same org as a managed package. can we do that while keeping existing data
  • March 24, 2015
  • Like
  • 0
We have a object with 200,000 records in it and each contains a attached file.
We need to download attachements of 500 identified records.
What is the best approach for this ?
  • September 26, 2016
  • Like
  • 0
I'm getting a timout error while trying to clear code coverage results. results seems to be cleared. but when checked overal coverage (which should be zero) its same as before
  • December 29, 2016
  • Like
  • 0
Hi All,
I have installed the force.com ide in eclipsed. But when opened force.com perspectint is not shown. cant create even a project.
But force.com ide and force.com debugger is shown as installed in installations details
Please help on this
  • July 28, 2015
  • Like
  • 0
Currenlty we have an app deployed in the production org. we want to install same app in the same org as a managed package. can we do that while keeping existing data
  • May 21, 2015
  • Like
  • 0
Is it possible to track user wise page access using google analytics. 
for example we need to track which users accessed how many times  in a given period to a specific page.
 
  • April 17, 2015
  • Like
  • 0
Developer console is not showing the code coverages properly. for a class in eclipse coverage is shown is 72%. but in developer console it show as 18%. but show only 2 test mthods out of 15. i can not find any way to figure out which line are not covered. please let me know there is any other 3rd party tool to view code coverage properly
  • March 27, 2015
  • Like
  • 0
Currenlty we have an app deployed in the production org. we want to install same app in the same org as a managed package. can we do that while keeping existing data
  • March 24, 2015
  • Like
  • 0
Since last week our code coverage has decreased by 10%.  The only changes we made were a couple classes no longer are referenced anywhere in our org.  Is this a new Salesforce setting?  I cannot understand what has happened.