Subject: | incomplete return of module function |
Hello,
I have an issue with incomplete return of tab calling a function module
(used to extract st03 values):
this is an extract of my code:
<perl>
my $it = $rfc->discover("SWNC_COLLECTOR_GET_AGGREGATES");
$it->COMPONENT('TOTAL');
$it->ASSIGNDSYS('E02');
$it->PERIODTYPE('M');
$it->PERIODSTRT('20111101');
#$it->SUMMARY_ONLY('X');
$rfc->callrfc( $it );
for my $row ( $it->tab('TASKTIMES')->hashRows ){
print "ROW: ".Dumper($row)."\n";
}
</perl>
it's returning tab correctly, but some values are truncated (missing at
least the first char)
for example:
'RESPTI' => '6014480c00000000000000000',
real value is 76014480. It's occuring for all values which contain more
than 7 digits.
another example :
TIME' => '1--24 '
real value is 21--24
Thanks a lot in advance for help provided
Regards
A.B.
Running on Linux CentOs 5.7, with perl 5.8.8