Entering content frame

This graphic is explained in the accompanying text Perl: Example 1 Locate the document in its SAP Library structure

Example of Calling the Loader with Perl Script

Build a Perl module with reference to the SAP DB Perl Libraries,
parse the call arguments:

 

# Reference to the SAP DB Perl Library
# ------------------------------------

use SAP::DBTECH::loader;

# Parse the call arguments
# ------------------------

$user_name = $ARGV[0];
$password = $ARGV[1];
$database_name = $ARGV[2];
$data_path = $ARGV[3];
$server_node = "localhost";

 

Leaving content frame