Entering content frame

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

Example of calling the Loader with Python Script

Build a Python module with reference to the SAP DB Python Libraries
Parse the call arguments

 

# Reference to the Python Libraries
# ---------------------------------

import sys
import loader

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

user_name = sys.argv [1]
password = sys.argv [2]
database_name = sys.argv [3]
data_path = sys.argv[4]
server_node = ''

 

Leaving content frame