• Rayachoti Raghavendra
  • NEWBIE
  • 0 Points
  • Member since 2022

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 2
    Replies
for(Account acc : acclist)
{
    for(Opportunity opp1 : opplist)
    {
        if(acc.id == opp1.AccountId)
        {
            maptest.put(acc.id,opp1.Opportunity);
        }
    }
}

We plan to implementapplication with force.com. Current System was implememted by Visula Basic6.

Current system is about 700,000char (350KS,1Step=20char) .So, we worry the limit of class charters.

Can you teach me best practice of calculation method  for Apex class characters.