Posts

Showing posts from 2019

SFDC Code Snippets

List Map Preperation: List<Account> Acclist =new List<Account>(); Acclist =[SELECT Id,name FROM Account where name like '%TEST%']; Map<Id,String> AccountMap=new Map<Id,String>(); Set<String> AccName =new Set<String>(); for (Account accfor :Acclist) {     AccName.add(accfor.Name); AccountMap.put(accfor.Id,accfor.Name); } Map <String,Boolean> Firutornot =new Map<String, Boolean>{'Apple'=>true,'Bread'=>false,'orange'=> true,'meat'=>false}; System.debug('here MAC'+Firutornot); Firutornot.put('Apple',false); System.debug('After update'+Firutornot); -------------- public class NewWrapperClass1 {   public  String Name;   public  double Salary; } ---------------------- Calling Wrapper class: NewWrapperClass1 f1=new NewWrapperClass1(); f1.Name='ABC'; f1.Salary=1000; NewWrapperClass1 f2=new NewWrapperClass1(); f2.Name=...

Human's : Master's of Misuse

We humans misuse everything ..Plastic, Mobile Phone, Atomic Energy ,Internet,Environment. Mobiles: The latest of them all. Look around you, if you are in a Bus Stand ,Park ,any where, every where...people are busy with  their smart phone's (god know's what they are up to). You might be reading this on a smart phone. Smart phones are supposed to save our time, but i guess more time is wasted on smart phone screens these days. Plastic:  A miracle material has been misused ,its every where, there no place on earth where you can't find plastic. Internet: This was most powerful medium to connect humans , but it's miss used as well, the biggest traffic on internet is , can guess it ?? Nuclear Energy: Could have solved the world's energy problems but we have amased enough nuclear bombs to distroy earth 3 times over. All these things are invented to make life better ,have been misused to the maxim extent . It's human tendency to misuse.