The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

R3.pm - Perl object oriented client interface to SAP R/3 using RFCSDK

SYNOPSIS

  use R3;
  $conn = new R3::conn (host=>$host, sysnr=>$sysnr, client=>$client,
  user=>$usr, passwd=>$passwd);
  $itab = new R3::itab ($conn, $table_name);
  $func = new R3::func ($conn, $func_name);
  ...

DESCRIPTION

R3.pm provides an object oriented interface to SAP's RFCSDK for connection to an R/3 system. R3::conn is the object interface to R/3 connections. R3::itab is the object interface to ABAP internal tables. R3::func is the object interface to ABAP RFC enabled functions.

AUTHOR

Johan Schoen, johan.schon@capgemini.se

SEE ALSO

perl(1), R3::conn(3), R3::func(3), R3::itab(3) and R3::rfcapi(3).