package sapnwrfc; use strict; use vars qw($VERSION $AUTOLOAD $DEBUG); $VERSION = '0.06'; use SAPNW::Base; $SAPNW::Base::DEBUG = 0; use SAPNW::Rfc; use SAPNW::Connection; use SAPNW::RFC::FunctionDescriptor; use SAPNW::RFC::FunctionCall; use SAPNW::RFC::Parameter; =head1 NAME sapnwrfc - SAP Netweaver RFC support for Perl =head1 SYNOPSIS SAPNW::Rfc->load_config; my $conn = SAPNW::Rfc->rfc_connect; my $rd = $conn->function_lookup("RPY_PROGRAM_READ"); my $rc = $rd->create_function_call; $rc->PROGRAM_NAME("SAPLGRFC"); eval { $rc->invoke; }; if ($@) { die "RFC Error: $@\n"; } print "Program name: ".$rc->PROG_INF->{'PROGNAME'}."\n"; my $cnt_lines_with_text = scalar grep(/LGRFCUXX/, map { $_->{LINE} } @{$rc->SOURCE_EXTENDED}); $conn->disconnect; =head1 DESCRIPTION sapnwrfc is an RFC based connector to SAP specifically designed for use with the next generation RFC SDK supplied by SAP for NW2004+ . The next generation RFCSDK from SAP provides a number of interesting new features. The two most important are: =over 4 =item * UNICODE support =item * deep/nested structures =back The UNICODE support is built fundamentally into the core of the new SDK, and as a result this is reflected in sapnwrfc. sapnwrfc takes UTF-8 as its only input character set, and handles the translation of this to UTF-16 as required by the RFCSDK. Deep and complex structures are now supported fully. Please see the test_deep.rb example in tests/ for an idea as to how it works. sapnwrfc is a departure to the way the original SAP::Rfc (http://search.cpan.org/search?module=SAP::Rfc) works. It aims to simplify the exchange of native Perl data types between the user application and the connector. This means that the following general rules should be observered, when passing values to and from RFC interface parameters and tables: =over 4 =item * Tables expect Arrays of Hashes. =item * Parameters with structures expect Hashes. =item * CHAR, DATE, TIME, STRING, XSTRING, and BYTE type parameters expect String values. =item * BCD, and FLOAT expect a string representing the number. =item * all INT types must be Perl ints. =back There are a lot of examples of passing data in and out of the connector in the test suite - please refer to these to gain a better understanding of how to make it work. =head1 Connection Parameters Connection parameters can be either passed into SAPNW::Rfc->rfc_connect() as a hash of permited values, or more conveniently they can be stored in a YAML based config file. Refer to the the file "sap.yml" that comes with this distribution for an example like this: ashost: ubuntu.local.net sysnr: "01" client: "001" user: developer passwd: developer lang: EN trace: 2 debug: 1 Note: if you supply your config via the YAML based file, you can override any or all of those parameters at the time a call is made to SAPNW::Rfc->rfc_connect(). =head1 AUTHOR Piers Harding, piers@cpan.org. Many thanks to: =over 4 =item * Craig Cmehil - for making the connnections =item * Ulrich Schmidt - for tireless help in development =item * Olivier Boudry - the build and test meister =back =head1 SEE ALSO perl(1), ABAP(101). =cut 1;