multiple OPTIONS when using Python connect SAP via RFC_READ_TABLE

1.5k Views Asked by At

I am trying to have multiple OPTIONS when I try to get data from python to SAP tables. As I showed below, the only option is LGNUM = '376'. How can I have more options here? Thank you!

table = 'LTAP'
**options = [{ 'TEXT': "LGNUM = '376'"}]**
fields = ['TANUM','VLTYP','VLPLA','NLTYP','NLPLA','QDATU','QNAME']
pp = PrettyPrinter(indent=4)
rowskips = 0

print("----Begin of Batch---")
result = conn.call("RFC_READ_TABLE",
QUERY_TABLE = table, 
DELIMITER='|',
FIELDS = fields,\
OPTIONS = options,
ROWSKIPS = rowskips, 
ROWCOUNT = 10, )
pp.pprint(result['DATA'])
1

There are 1 best solutions below

1
On

options = [{ 'TEXT': "LGNUM = '376'"}, {'TEXT':"BUDAT = '2022'}]