• Wilder
  • NEWBIE
  • 0 Points
  • Member since 2011

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 0
    Replies

How could I get the XML file with the description for a Custom object from PERL? It would be really nice to get matadata, in particular - deploymentStatus

 

Thanks !

  • February 09, 2011
  • Like
  • 0

 

I need to get a integer value with leading zero in apex code
decimal Suff=20.0;
list <string> ListS = new String[2];
ListS[0]='{###}';
ListS[1]='{000}';
system.debug(' -- DEBUG '+string.format(string.valueof(Suff),ListS));

 

printed in system console  "20.0"  

 

  • January 26, 2011
  • Like
  • 0