Skip Menu |

This queue is for tickets about the SAP-Rfc CPAN distribution.

Report information
The Basics
Id: 72722
Status: new
Priority: 0/
Queue: SAP-Rfc

People
Owner: Nobody in particular
Requestors: bitcard.org [...] bonnefoy.eu
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 1.56
Fixed in: (no value)



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