Entering content frameThis graphic is explained in the accompanying text Python: Example No. 1 Locate the document in its SAP Library structure

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

 

# Reference to Python Libraries

# ----------------------------

import sys

import repman

 

# Parse the call arguments

# --------------------------

user = sys.argv [1]

pwd = sys.argv [2]

dbname = sys.argv [3]

data_path = sys.argv[4]

host = ''

 

 

Leaving content frame