- or download this
#!/usr/bin/perl
use warnings;
...
my @tableattribute_ref=$sforce->describeGlobal()->result->{sobjects};
- or download this
[
{
...
}
];
- or download this
my $tableattribute_ref=$sforce->describeGlobal()->result->{sobjects}[#
+]{name};
- or download this
my $count;
$count = 0;
...
#This is where I can push names to an array
$count++;
}